From 3488e577d96322ef58a1675c062531090ef76720 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Mon, 2 Oct 2023 01:17:50 +0100 Subject: [PATCH 01/17] Electric grill (#20661) --------- Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Components/EntityHeaterComponent.cs | 24 ++++ .../Temperature/Systems/EntityHeaterSystem.cs | 111 ++++++++++++++++++ .../Temperature/SharedEntityHeater.cs | 21 ++++ .../en-US/temperature/entity-heater.ftl | 3 + .../Circuitboards/Machine/production.yml | 14 +++ .../Entities/Structures/Machines/grill.yml | 35 ++++++ .../Entities/Structures/Machines/hotplate.yml | 34 +++--- .../Entities/Structures/Machines/lathe.yml | 1 + .../Prototypes/Recipes/Lathes/electronics.yml | 8 ++ .../Prototypes/Research/civilianservices.yml | 1 + .../Machines/electric_grill.rsi/high.png | Bin 0 -> 650 bytes .../Machines/electric_grill.rsi/icon.png | Bin 0 -> 806 bytes .../Machines/electric_grill.rsi/low.png | Bin 0 -> 583 bytes .../Machines/electric_grill.rsi/medium.png | Bin 0 -> 645 bytes .../Machines/electric_grill.rsi/meta.json | 23 ++++ 15 files changed, 258 insertions(+), 17 deletions(-) create mode 100644 Content.Server/Temperature/Components/EntityHeaterComponent.cs create mode 100644 Content.Server/Temperature/Systems/EntityHeaterSystem.cs create mode 100644 Content.Shared/Temperature/SharedEntityHeater.cs create mode 100644 Resources/Locale/en-US/temperature/entity-heater.ftl create mode 100644 Resources/Prototypes/Entities/Structures/Machines/grill.yml create mode 100644 Resources/Textures/Structures/Machines/electric_grill.rsi/high.png create mode 100644 Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png create mode 100644 Resources/Textures/Structures/Machines/electric_grill.rsi/low.png create mode 100644 Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png create mode 100644 Resources/Textures/Structures/Machines/electric_grill.rsi/meta.json diff --git a/Content.Server/Temperature/Components/EntityHeaterComponent.cs b/Content.Server/Temperature/Components/EntityHeaterComponent.cs new file mode 100644 index 00000000000000..3a162c20e3253a --- /dev/null +++ b/Content.Server/Temperature/Components/EntityHeaterComponent.cs @@ -0,0 +1,24 @@ +using Content.Server.Temperature.Systems; +using Content.Shared.Temperature; + +namespace Content.Server.Temperature.Components; + +/// +/// Adds thermal energy to entities with placed on it. +/// +[RegisterComponent, Access(typeof(EntityHeaterSystem))] +public sealed partial class EntityHeaterComponent : Component +{ + /// + /// Power used when heating at the high setting. + /// Low and medium are 33% and 66% respectively. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Power = 2400f; + + /// + /// Current setting of the heater. If it is off or unpowered it won't heat anything. + /// + [DataField] + public EntityHeaterSetting Setting = EntityHeaterSetting.Off; +} diff --git a/Content.Server/Temperature/Systems/EntityHeaterSystem.cs b/Content.Server/Temperature/Systems/EntityHeaterSystem.cs new file mode 100644 index 00000000000000..6da774ba076edf --- /dev/null +++ b/Content.Server/Temperature/Systems/EntityHeaterSystem.cs @@ -0,0 +1,111 @@ +using Content.Server.Power.Components; +using Content.Server.Temperature.Components; +using Content.Shared.Examine; +using Content.Shared.Placeable; +using Content.Shared.Popups; +using Content.Shared.Temperature; +using Content.Shared.Verbs; + +namespace Content.Server.Temperature.Systems; + +/// +/// Handles updating and events. +/// +public sealed class EntityHeaterSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly TemperatureSystem _temperature = default!; + + private readonly int SettingCount = Enum.GetValues(typeof(EntityHeaterSetting)).Length; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamined); + SubscribeLocalEvent>(OnGetVerbs); + SubscribeLocalEvent(OnPowerChanged); + } + + public override void Update(float deltaTime) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var comp, out var placer, out var power)) + { + if (!power.Powered) + continue; + + // don't divide by total entities since its a big grill + // excess would just be wasted in the air but that's not worth simulating + // if you want a heater thermomachine just use that... + var energy = power.PowerReceived * deltaTime; + foreach (var ent in placer.PlacedEntities) + { + _temperature.ChangeHeat(ent, energy); + } + } + } + + private void OnExamined(EntityUid uid, EntityHeaterComponent comp, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + args.PushMarkup(Loc.GetString("entity-heater-examined", ("setting", comp.Setting))); + } + + private void OnGetVerbs(EntityUid uid, EntityHeaterComponent comp, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var setting = (int) comp.Setting; + setting++; + setting %= SettingCount; + var nextSetting = (EntityHeaterSetting) setting; + + args.Verbs.Add(new AlternativeVerb() + { + Text = Loc.GetString("entity-heater-switch-setting", ("setting", nextSetting)), + Act = () => + { + ChangeSetting(uid, nextSetting, comp); + _popup.PopupEntity(Loc.GetString("entity-heater-switched-setting", ("setting", nextSetting)), uid, args.User); + } + }); + } + + private void OnPowerChanged(EntityUid uid, EntityHeaterComponent comp, ref PowerChangedEvent args) + { + // disable heating element glowing layer if theres no power + // doesn't actually turn it off since that would be annoying + var setting = args.Powered ? comp.Setting : EntityHeaterSetting.Off; + _appearance.SetData(uid, EntityHeaterVisuals.Setting, setting); + } + + private void ChangeSetting(EntityUid uid, EntityHeaterSetting setting, EntityHeaterComponent? comp = null, ApcPowerReceiverComponent? power = null) + { + if (!Resolve(uid, ref comp, ref power)) + return; + + comp.Setting = setting; + power.Load = SettingPower(setting, comp.Power); + _appearance.SetData(uid, EntityHeaterVisuals.Setting, setting); + } + + private float SettingPower(EntityHeaterSetting setting, float max) + { + switch (setting) + { + case EntityHeaterSetting.Low: + return max / 3f; + case EntityHeaterSetting.Medium: + return max * 2f / 3f; + case EntityHeaterSetting.High: + return max; + default: + return 0f; + } + } +} diff --git a/Content.Shared/Temperature/SharedEntityHeater.cs b/Content.Shared/Temperature/SharedEntityHeater.cs new file mode 100644 index 00000000000000..597104e1ba155b --- /dev/null +++ b/Content.Shared/Temperature/SharedEntityHeater.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.Temperature; + +[Serializable, NetSerializable] +public enum EntityHeaterVisuals +{ + Setting +} + +/// +/// What heat the heater is set to, if on at all. +/// +[Serializable, NetSerializable] +public enum EntityHeaterSetting +{ + Off, + Low, + Medium, + High +} diff --git a/Resources/Locale/en-US/temperature/entity-heater.ftl b/Resources/Locale/en-US/temperature/entity-heater.ftl new file mode 100644 index 00000000000000..a809d508e7c664 --- /dev/null +++ b/Resources/Locale/en-US/temperature/entity-heater.ftl @@ -0,0 +1,3 @@ +entity-heater-examined = It is set to [color=gray]{$setting}[/color] +entity-heater-switch-setting = Switch to {$setting} +entity-heater-switched-setting = Switched to {$setting} diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index 9ecd8c36f12204..9c60e725350452 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -710,6 +710,20 @@ materialRequirements: Glass: 1 +- type: entity + parent: BaseMachineCircuitboard + id: ElectricGrillMachineCircuitboard + name: electric grill machine board + description: A machine printed circuit board for an electric grill. + components: + - type: MachineBoard + prototype: KitchenElectricGrill + requirements: + Capacitor: 4 + materialRequirements: + Glass: 2 + Cable: 5 + - type: entity id: StasisBedMachineCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/grill.yml b/Resources/Prototypes/Entities/Structures/Machines/grill.yml new file mode 100644 index 00000000000000..dbd31b3eae26f1 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Machines/grill.yml @@ -0,0 +1,35 @@ +- type: entity + parent: BaseHeaterMachine + id: KitchenElectricGrill + name: electric grill + description: A microwave? No, a real man cooks steaks on a grill! + components: + - type: Sprite + # TODO: draw a sprite + sprite: Structures/Machines/electric_grill.rsi + drawdepth: SmallObjects + snapCardinals: true + layers: + - state: icon + - map: ["enum.EntityHeaterVisuals.Setting"] + shader: unshaded + visible: false + - type: ApcPowerReceiver + powerLoad: 0 # off by default + - type: EntityHeater + - type: ItemPlacer + maxEntities: 4 # big grill, many steaks + whitelist: + components: + - Temperature + - type: PlaceableSurface + - type: Machine + board: ElectricGrillMachineCircuitboard + - type: GenericVisualizer + visuals: + enum.EntityHeaterVisuals.Setting: + enum.EntityHeaterVisuals.Setting: + Off: { visible: false } + Low: { visible: true, state: low } + Medium: { visible: true, state: medium } + High: { visible: true, state: high } diff --git a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml index c5ed1de80cebf1..3f2dc05a3062b2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/hotplate.yml @@ -1,8 +1,8 @@ +# heats an entity or solution placed on it - type: entity - id: ChemistryHotplate + abstract: true parent: [ BaseMachinePowered, ConstructibleMachine ] - name: hotplate - description: "The descendent of the microwaves, our newest invention in beaker heating technology: the hotplate!" + id: BaseHeaterMachine components: - type: Transform anchored: true @@ -19,6 +19,20 @@ - MidImpassable - LowImpassable hard: false + - type: ApcPowerReceiver + powerLoad: 300 + - type: Appearance + - type: ContainerContainer + containers: + machine_board: !type:Container + machine_parts: !type:Container + +- type: entity + parent: BaseHeaterMachine + id: ChemistryHotplate + name: hotplate + description: "The descendent of the microwaves, our newest invention in beaker heating technology: the hotplate!" + components: - type: Sprite sprite: Structures/Machines/hotplate.rsi drawdepth: SmallObjects @@ -28,15 +42,6 @@ - state: on map: ["enum.SolutionHeaterVisuals.IsOn"] shader: unshaded - - type: ApcPowerReceiver - powerLoad: 300 - - type: ItemMapper - sprite: Structures/Machines/hotplate.rsi - mapLayers: - beaker: - whitelist: - components: - - FitsInDispenser - type: SolutionHeater - type: ItemPlacer whitelist: @@ -47,11 +52,6 @@ positionOffset: 0, 0.25 - type: Machine board: HotplateMachineCircuitboard - - type: Appearance - - type: ContainerContainer - containers: - machine_board: !type:Container - machine_parts: !type:Container - type: GenericVisualizer visuals: enum.SolutionHeaterVisuals.IsOn: diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index f0d774c1fd4bf0..45cdc33a10bae1 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -324,6 +324,7 @@ - ReagentGrinderMachineCircuitboard - HotplateMachineCircuitboard - MicrowaveMachineCircuitboard + - ElectricGrillMachineCircuitboard - FatExtractorMachineCircuitboard - SheetifierMachineCircuitboard - UniformPrinterMachineCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index ebb187121b8a31..bc54c78ca1e38a 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -517,6 +517,14 @@ Steel: 100 Glass: 900 +- type: latheRecipe + id: ElectricGrillMachineCircuitboard + result: ElectricGrillMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + - type: latheRecipe id: FatExtractorMachineCircuitboard result: FatExtractorMachineCircuitboard diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index b0de5d319b9f05..92087750944707 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -75,6 +75,7 @@ recipeUnlocks: #remove all of these once we have more kitchen equipment - MicrowaveMachineCircuitboard - ReagentGrinderMachineCircuitboard + - ElectricGrillMachineCircuitboard - BoozeDispenserMachineCircuitboard - SodaDispenserMachineCircuitboard diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/high.png new file mode 100644 index 0000000000000000000000000000000000000000..b1fe72eb4ffd00765ca37e0c16d6e6643b90557e GIT binary patch literal 650 zcmV;50(Jd~P)EzLt>Nxhg23=knh3@O#hiaPGNa4ds-)-ZKyRLP?7R1D@5`n#cZ* z0}F2Y8Hp>px)2VB=o&wdQY-P`H+yxj>lg#cl&*lKPk2^QwUV$*Lujj{n!G1Gq-5hs z;S*t>CIbrJntGzaZzg9N{AIEhjVyxI?CHt0aiWcttdz&rCPEI|I=BY8ap6VBd#Y)i8cf4Wo7jwimcAwERWc)7-b{)t2Tx2G{s6uvXX}Fv zktP5D010qNS#tmY3labT3lag+-G2N4006>CL_t(o!|hYS4Z|=9G*)-$0-mc~qaVNg z=^E)=EYK|~B)dXL#$YMRhm#@`J7+F%q!hRqFgy6Z%7ee(-}v!dJoqafDC9$IKdmA> z{H&0P0Q68yd$KBvRljk`^Jmk0VCsm_!-O+bQSy4$6sUcknA0sLZ&sj)7L?sefb~OWMBaub k;^Z-4AP@)y0)YVG2Tm+i%`5!ly8r+H07*qoM6N<$f~ZC;x&QzG literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d085b5b4c89e1dbad364646f060e5bffb78c2d87 GIT binary patch literal 806 zcmV+>1KIqEP)EzLt>Nxhg23=knh3@O#hiaPGNa4ds-)-ZKyRLP?7R1D@5`n#cZ* z0}F2Y8Hp>px)2VB=o&wdQY-P`H+yxj>lg#cl&*lKPk2^QwUV$*Lujj{n!G1Gq-5hs z;S*t>CIbrJntGzaZzg9N{AIEhjVyxI?CHt0aiWcttdz&rCPEI|I=BY8ap6VBd#Y)i8cf4Wo7jwimcAwERWc)7-b{)t2Tx2G{s6uvXX}Fv zktP5D010qNS#tmY3labT3lag+-G2N400CY}L_t(o!((6=>3|WLqokztpB|RpyLS(6 zFAKUP8yg!{Ez8Tx1Jh<^W?(ujEDS}S1(!xsxqm49(~p=)vKXfS_=X8!deS5&xMT1} z0Vo7OnqPfpWO(=6Q205ORR8GsTRNS@T(!bEQ3f>{Wn z$xWyvhX8Vxf(1Fq5gEzLt>Nxhg23=knh3@O#hiaPGNa4d<1D-Zu}0Vp)rZg5K5mn%Dl0 z0}CEpOePdvU5G@&^o*ZJsg-yLn7w+}b&bJPT35g_AUvz6T3J}8A-q*qP2Lk8QgVru z@QJWrlL3WqO+DGS~8iqe|L{1RunxUwvH zM9wHWQ9=aqlBB{WdCCMN7iDMNeNzqJ5+(5{@>Z#$i6cu+ynazD(lsqPBYIk%JXLe= z|M#h9W~Q6nok8e-HH^H+2Zu*6F7@t>KlWH?1^Gq~ zJ^%m!32;bRa{vGf5&!@T5&_cPe*6Fc0DwtEK~z}7V_+BsqhJ(_bihcehQ-GEHMrzr z&t7bysRN*vH{(%KOR6In$*{Z@-M2`g(oCu&n8=AYkOd%1f%rd&CMW1&fQ1Y_%|J_G z(NK%Vr;7v7gSdsr^g-1SU_g#@BsK#*asjeswPMQ^N002ovPDHLkV1k-j0Ez$r literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png b/Resources/Textures/Structures/Machines/electric_grill.rsi/medium.png new file mode 100644 index 0000000000000000000000000000000000000000..ed5d431e8d4905d5d5072077014eae21321445e8 GIT binary patch literal 645 zcmV;00($+4P)EzLt>Nxhg23=knh3@O#hiaPGNa4ds-)-ZKyRLP?7R1D@5`n#cZ* z0}F2Y8Hp>px)2VB=o&wdQY-P`H+yxj>lg#cl&*lKPk2^QwUV$*Lujj{n!G1Gq-5hs z;S*t>CIbrJntGzaZzg9N{AIEhjVyxI?CHt0aiWcttdz&rCPEI|I=BY8ap6VBd#Y)i8cf4Wo7jwimcAwERWc)7-b{)t2Tx2G{s6uvXX}Fv zktP5D010qNS#tmY3labT3lag+-G2N4006y7L_t(o!((6=1;Z7bbd~o6VM6K{X=OQ( z+J+|VWxo62c67B&G_<@HXdxpAgV-Q3Y$3u#!&o?rgN*`MXy^ctkG)`Qs-*#-q0?~5 z0fRe>)HJ|IhUJ-fluSo+1hV6{QxpP7mQM#_JD`C&SVAQe*%8D5vJxT4a*(A!{2xS< zVj(pWVJ6U0STsyWz({5mM2P| Date: Sun, 1 Oct 2023 20:18:54 -0400 Subject: [PATCH 02/17] Automatic changelog update --- Resources/Changelog/Changelog.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8f599f3f5d6d06..52d5666482ec07 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Phill101 - changes: - - {message: The crew manifest is now a PDA cartridge program., type: Tweak} - id: 4444 - time: '2023-08-05T08:37:08.0000000+00:00' - author: Slava0135 changes: - {message: Splash spill now has a visual effect., type: Add} @@ -2959,3 +2954,9 @@ Entries: - {message: Small firearms now fit in boots., type: Tweak} id: 4943 time: '2023-10-01T21:23:41.0000000+00:00' +- author: deltanedas + changes: + - {message: 'Added the Electric Grill for cooking steaks quickly, research food + service to make it.', type: Add} + id: 4944 + time: '2023-10-02T00:17:50.0000000+00:00' From 716fea9df04bade398424b6dd176e3a2ca111f58 Mon Sep 17 00:00:00 2001 From: JustCone <141039037+JustCone14@users.noreply.github.com> Date: Mon, 2 Oct 2023 06:25:01 +0100 Subject: [PATCH 03/17] Packed records computer changes (#20667) --- Resources/Maps/packed.yml | 4128 +------------------------------------ 1 file changed, 96 insertions(+), 4032 deletions(-) diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index dcb50ff468cd4a..43698bf44fd286 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -4,33 +4,33 @@ meta: tilemap: 0: Space 3: FloorArcadeRed - 11: FloorBar - 13: FloorBlue - 14: FloorBlueCircuit - 18: FloorCarpetOffice - 22: FloorDark - 27: FloorDarkMono - 34: FloorEighties - 37: FloorFreezer - 40: FloorGrass - 44: FloorGreenCircuit - 48: FloorHydro - 50: FloorLaundry - 51: FloorLino - 59: FloorRGlass - 60: FloorReinforced - 62: FloorRockVault - 63: FloorShowroom - 71: FloorSteel - 76: FloorSteelDirty - 78: FloorSteelMini - 83: FloorTechMaint - 84: FloorTechMaint2 - 87: FloorWhite - 91: FloorWhiteMini - 97: FloorWood - 99: Lattice - 100: Plating + 12: FloorBar + 14: FloorBlue + 15: FloorBlueCircuit + 19: FloorCarpetOffice + 26: FloorDark + 31: FloorDarkMono + 38: FloorEighties + 41: FloorFreezer + 44: FloorGrass + 51: FloorGreenCircuit + 55: FloorHydro + 58: FloorLaundry + 59: FloorLino + 70: FloorRGlass + 71: FloorReinforced + 73: FloorRockVault + 74: FloorShowroom + 83: FloorSteel + 88: FloorSteelDirty + 90: FloorSteelMini + 95: FloorTechMaint + 96: FloorTechMaint2 + 99: FloorWhite + 103: FloorWhiteMini + 109: FloorWood + 111: Lattice + 112: Plating entities: - proto: "" entities: @@ -43,227 +43,227 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAACYQAAAAADYQAAAAABYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAAC + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAC version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAADAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAADZAAAAAAAGwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAADAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADcAAAAAAAHwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 0,0: ind: 0,0 - tiles: RwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADZAAAAAAAYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAABYQAAAAABYQAAAAADVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAZAAAAAAAYQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAJQAAAAAAPwAAAAAAJQAAAAAAJQAAAAAAPwAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAYQAAAAADYQAAAAAA + tiles: UwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAKQAAAAAASgAAAAAAKQAAAAAASgAAAAAAKQAAAAAAcAAAAAAAbQAAAAADbQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAKQAAAAAASgAAAAAAKQAAAAAAKQAAAAAASgAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbQAAAAADbQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: ZAAAAAAAZAAAAAAAVAAAAAAAPAAAAAAAPAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAADZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAFgAAAAACFgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAAFgAAAAABFgAAAAADZAAAAAAARwAAAAADRwAAAAABFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAB + tiles: cAAAAAAAcAAAAAAAYAAAAAAARwAAAAAARwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAGgAAAAACGgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAUwAAAAADUwAAAAABGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAB version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAARgAAAAAAbwAAAAAARgAAAAADAAAAAAAARgAAAAADbwAAAAAARgAAAAABbwAAAAAARgAAAAADbwAAAAAARgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARgAAAAACbwAAAAAARgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAA version: 6 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAAVAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAA version: 6 1,0: ind: 1,0 - tiles: RwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAABZAAAAAAAMgAAAAAAVwAAAAADVwAAAAABMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAMgAAAAAAVwAAAAACVwAAAAACMgAAAAAAVAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMgAAAAAAVwAAAAADVwAAAAADMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMgAAAAAAVwAAAAADVwAAAAABMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAFgAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABYQAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAAAYQAAAAADYQAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAB + tiles: UwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAOgAAAAAAYwAAAAADYwAAAAABOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAOgAAAAAAYwAAAAACYwAAAAACOgAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAOgAAAAAAYwAAAAADYwAAAAADOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAOgAAAAAAYwAAAAADYwAAAAABOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACDAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAADAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABbQAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAbQAAAAADbQAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAB version: 6 1,-1: ind: 1,-1 - tiles: ZAAAAAAAZAAAAAAAVAAAAAAAVwAAAAABRwAAAAADRwAAAAACRwAAAAAAFgAAAAADZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADFgAAAAACFgAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADFgAAAAAAFgAAAAADFgAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAABFgAAAAADFgAAAAADFgAAAAAARwAAAAAARwAAAAADRwAAAAABFgAAAAABJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAADFgAAAAABFgAAAAACZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAMwAAAAAAMwAAAAAACwAAAAACFgAAAAADFgAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAACwAAAAAAFgAAAAACFgAAAAAAYQAAAAAAYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAACwAAAAAACwAAAAAACwAAAAAAFgAAAAACFgAAAAABYQAAAAABYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAACwAAAAACCwAAAAADCwAAAAADRwAAAAABZAAAAAAAYQAAAAABYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAACwAAAAABCwAAAAADCwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAB + tiles: cAAAAAAAcAAAAAAAYAAAAAAAYwAAAAABUwAAAAADUwAAAAACUwAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADGgAAAAACGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADGgAAAAAAGgAAAAADGgAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAABGgAAAAADGgAAAAADGgAAAAAAUwAAAAAAUwAAAAADUwAAAAABGgAAAAABKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADGgAAAAABGgAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAOwAAAAAAOwAAAAAADAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAOwAAAAAAOwAAAAAADAAAAAACGgAAAAADGgAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAADAAAAAAAGgAAAAACGgAAAAAAbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAADAAAAAAADAAAAAAADAAAAAAAGgAAAAACGgAAAAABbQAAAAABbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAADAAAAAACDAAAAAADDAAAAAADUwAAAAABcAAAAAAAbQAAAAABbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAADAAAAAABDAAAAAADDAAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: ZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAACRwAAAAACRwAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAFgAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAALAAAAAAAVAAAAAAAFgAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAACFgAAAAACFgAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADLAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACFgAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAA + tiles: cAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAACUwAAAAACUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAYAAAAAAAGgAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACGgAAAAACGgAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADMwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAADgAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: YwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAABFgAAAAAAZAAAAAAAFgAAAAADRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAFgAAAAADFgAAAAABZAAAAAAAFgAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAACFgAAAAABZAAAAAAAFgAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADFgAAAAABZAAAAAAAFgAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAAA + tiles: bwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABGgAAAAAAcAAAAAAAGgAAAAADUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAGgAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACGgAAAAABcAAAAAAAGgAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADGgAAAAABcAAAAAAAGgAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: RwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAFgAAAAADFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAA + tiles: UwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: ZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAFgAAAAACZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAFgAAAAACZAAAAAAAPgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAZAAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAADZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: cAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAASQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAACcAAAAAAASQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAACcAAAAAAASQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,1: ind: 1,1 - tiles: YQAAAAAAZAAAAAAATgAAAAADZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAADFgAAAAACFgAAAAADFgAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAAAZAAAAAAAYQAAAAABYQAAAAADRwAAAAAARwAAAAACRwAAAAABZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACYQAAAAACYQAAAAAAZAAAAAAAYQAAAAAAYQAAAAABRwAAAAADRwAAAAADRwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACYQAAAAABYQAAAAABYQAAAAACYQAAAAADYQAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: bQAAAAAAcAAAAAAAWgAAAAADcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAAAcAAAAAAAbQAAAAABbQAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAABUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAADbQAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,0: ind: 2,0 - tiles: RwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAMwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAACFgAAAAAAZAAAAAAAFgAAAAACRwAAAAAAFgAAAAACZAAAAAAAMwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAADFgAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAADFgAAAAADRwAAAAABRwAAAAACRwAAAAADVAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAADLAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAALAAAAAAALAAAAAAALAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAADLAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAVwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAAB + tiles: UwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAACGgAAAAAAcAAAAAAAGgAAAAACUwAAAAAAGgAAAAACcAAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAADUwAAAAABUwAAAAACUwAAAAADYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAADMwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAADMwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAYwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAB version: 6 2,-1: ind: 2,-1 - tiles: RwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACYQAAAAAAYQAAAAACYQAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAAYQAAAAAAYQAAAAABYQAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABYQAAAAAAYQAAAAACYQAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAAYQAAAAACYQAAAAACYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAKAAAAAAAKAAAAAAACwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAADFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAADCwAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAAARwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACCwAAAAABCwAAAAADCwAAAAABCwAAAAADCwAAAAACFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAARwAAAAADMAAAAAAARwAAAAAARwAAAAACRwAAAAAAMAAAAAAARwAAAAAACwAAAAACCwAAAAAACwAAAAADCwAAAAAACwAAAAACFgAAAAAAFgAAAAADFgAAAAABZAAAAAAARwAAAAAAMAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAMAAAAAAARwAAAAABCwAAAAADCwAAAAABCwAAAAADCwAAAAADCwAAAAABFgAAAAAAFgAAAAADFgAAAAADFgAAAAADRwAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAA + tiles: UwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACbQAAAAAAbQAAAAACbQAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAbQAAAAAAbQAAAAABbQAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAALAAAAAAALAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALAAAAAAALAAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAACDAAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAADDAAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAAAUwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACDAAAAAABDAAAAAADDAAAAAABDAAAAAADDAAAAAACGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAADNwAAAAAAUwAAAAAAUwAAAAACUwAAAAAANwAAAAAAUwAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAACGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAUwAAAAAANwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAANwAAAAAAUwAAAAABDAAAAAADDAAAAAABDAAAAAADDAAAAAADDAAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAADUwAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAACYwAAAAAAOwAAAAADAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADAAAAAAAAOwAAAAABYwAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAOwAAAAADYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAABAAAAAAAAOwAAAAACYwAAAAAAOwAAAAADAAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARgAAAAABbwAAAAAARgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACbwAAAAAARgAAAAADAAAAAAAARgAAAAABbwAAAAAARgAAAAADAAAAAAAARgAAAAABbwAAAAAARgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABbwAAAAAARgAAAAABbwAAAAAARgAAAAAAbwAAAAAARgAAAAADAAAAAAAARgAAAAAAbwAAAAAARgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAARgAAAAADbwAAAAAARgAAAAABbwAAAAAARgAAAAAAbwAAAAAARgAAAAADbwAAAAAARgAAAAAAbwAAAAAARgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAARgAAAAABbwAAAAAARgAAAAACbwAAAAAARgAAAAADbwAAAAAARgAAAAACbwAAAAAARgAAAAAAbwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAAAbwAAAAAARgAAAAABbwAAAAAARgAAAAABAAAAAAAARgAAAAACbwAAAAAARgAAAAADAAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: ZAAAAAAAAwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAACYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAACZAAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAABPwAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAABZAAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAVwAAAAACVwAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAACZAAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAABVwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABVwAAAAABZAAAAAAAVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABVwAAAAACZAAAAAAA + tiles: cAAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAACcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAABSgAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAYwAAAAACYwAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAACcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAABYwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABYwAAAAABcAAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABYwAAAAACcAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: ZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAADZAAAAAAAYQAAAAAA + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAbQAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 1,2: ind: 1,2 - tiles: ZAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAACYQAAAAACZAAAAAAAYQAAAAAAYQAAAAABRwAAAAACRwAAAAACRwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAABYQAAAAADZAAAAAAAYQAAAAADYQAAAAACRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAADZAAAAAAALAAAAAAALAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACFgAAAAACFgAAAAACFgAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAFgAAAAABYQAAAAACZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAFgAAAAAAYQAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAADZAAAAAAAFgAAAAABYQAAAAACZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADYQAAAAABAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAACFgAAAAADFgAAAAACAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAADYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAC + tiles: cAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAACcAAAAAAAbQAAAAAAbQAAAAABUwAAAAACUwAAAAACUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAADcAAAAAAAbQAAAAADbQAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADcAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACGgAAAAACGgAAAAACGgAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAABbQAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAGgAAAAAAbQAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAADcAAAAAAAGgAAAAABbQAAAAACcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADbQAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAACAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAADbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAC version: 6 2,1: ind: 2,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAABZAAAAAAAVAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAADFgAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAFgAAAAADFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAFgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAFgAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAAPAAAAAAAFgAAAAACFgAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABZAAAAAAAPAAAAAAAFgAAAAAAFgAAAAADPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAATAAAAAAARwAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAYAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAGgAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAARwAAAAAAGgAAAAACGgAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABcAAAAAAARwAAAAAAGgAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAA version: 6 2,2: ind: 2,2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAARwAAAAABRwAAAAABTAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAADTAAAAAAARwAAAAABTAAAAAAATAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAARwAAAAABRwAAAAADTAAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABYQAAAAABYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAAYQAAAAACYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYQAAAAACYQAAAAADYQAAAAADZAAAAAAAFgAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAADFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAABWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADWAAAAAAAUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAADWAAAAAAASgAAAAAASgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbQAAAAACbQAAAAADbQAAAAADcAAAAAAAGgAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: FgAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: ZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAACVwAAAAACVwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAAAVwAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAVwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAVwAAAAABUwAAAAAAZAAAAAAA + tiles: cAAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAYwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAYwAAAAABXwAAAAAAcAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAA version: 6 3,0: ind: 3,0 - tiles: VwAAAAABVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAAVwAAAAABVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACVwAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATAAAAAAATAAAAAAATAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAATAAAAAAATAAAAAAATAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABZAAAAAAAVwAAAAACVwAAAAABZAAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAABVwAAAAADFgAAAAAAFgAAAAAAFgAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADZAAAAAAAVwAAAAACRwAAAAABZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAABRwAAAAADZAAAAAAAVwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAACVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAAAVwAAAAADRwAAAAADVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAABVwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAD + tiles: YwAAAAABYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAYwAAAAABYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAABYwAAAAADGgAAAAAAGgAAAAAAGgAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAYwAAAAACUwAAAAABcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAABUwAAAAADcAAAAAAAYwAAAAACUwAAAAADcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAABcAAAAAAAYwAAAAACUwAAAAADcAAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAAAYwAAAAADUwAAAAADYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAD version: 6 4,0: ind: 4,0 - tiles: VwAAAAACVwAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABVwAAAAABZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACZAAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAACRwAAAAACTgAAAAADTgAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABVwAAAAADVwAAAAAAZAAAAAAATgAAAAACTgAAAAACRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAATgAAAAACTgAAAAACRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWwAAAAADWwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAVwAAAAAAVwAAAAAAFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAA + tiles: YwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAABcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAACUwAAAAACWgAAAAADWgAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAABYwAAAAADYwAAAAAAcAAAAAAAWgAAAAACWgAAAAACUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAWgAAAAACWgAAAAACUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAADZwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAYwAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAYQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAADZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAbQAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbQAAAAADcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABZAAAAAAAVwAAAAABVwAAAAADDgAAAAAAFgAAAAADDgAAAAAAVwAAAAAAVwAAAAADVwAAAAADZAAAAAAAVwAAAAABVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABVwAAAAACVwAAAAAADgAAAAAAFgAAAAAADgAAAAAAVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAABVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAVwAAAAABVwAAAAACVwAAAAAADgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAZAAAAAAAVwAAAAADVwAAAAACZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAACZAAAAAAAFgAAAAADFgAAAAADFgAAAAAAFgAAAAADVwAAAAACVwAAAAACVwAAAAACVwAAAAABVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAADZAAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAVwAAAAABZAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAFgAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAABFgAAAAACFgAAAAABFgAAAAACFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAYwAAAAABYwAAAAADDwAAAAAAGgAAAAADDwAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAYwAAAAABYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABYwAAAAACYwAAAAAADwAAAAAAGgAAAAAADwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYwAAAAABYwAAAAACYwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAADYwAAAAACcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAABYwAAAAADYwAAAAACYwAAAAACYwAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADYwAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAADcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAACGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAADFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABDgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAABZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABDwAAAAAAGgAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 4,1: ind: 4,1 - tiles: VwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAADFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAADGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbQAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAADZAAAAAAAYQAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAACAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAAA + tiles: AAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABbwAAAAAARgAAAAACAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAbwAAAAAARgAAAAACAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAACAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAbwAAAAAARgAAAAAA version: 6 4,3: ind: 4,3 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAYwAAAAAAOwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABbwAAAAAARgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAbwAAAAAARgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAABVwAAAAABZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAABVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAABVwAAAAADVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAABYwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAACYwAAAAAAOwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAACAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAACYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAOwAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAADYwAAAAAAOwAAAAABAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACbwAAAAAARgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAACAAAAAAAARgAAAAABbwAAAAAARgAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABbwAAAAAARgAAAAADbwAAAAAARgAAAAACbwAAAAAARgAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAABbwAAAAAARgAAAAADbwAAAAAARgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAADbwAAAAAARgAAAAABAAAAAAAARgAAAAABbwAAAAAARgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 - tiles: YwAAAAAAOwAAAAABYwAAAAAAOwAAAAACYwAAAAAAOwAAAAADYwAAAAAAOwAAAAADAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAOwAAAAAAYwAAAAAAOwAAAAABAAAAAAAAOwAAAAABYwAAAAAAOwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAOwAAAAABYwAAAAAAOwAAAAADYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAAARgAAAAABbwAAAAAARgAAAAACbwAAAAAARgAAAAADbwAAAAAARgAAAAADAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARgAAAAAAbwAAAAAARgAAAAABAAAAAAAARgAAAAABbwAAAAAARgAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARgAAAAABbwAAAAAARgAAAAADbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: PAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: RwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAOwAAAAABOwAAAAACOwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAOwAAAAABOwAAAAAAOwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARgAAAAABRgAAAAACRgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAARgAAAAABRgAAAAAARgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAA version: 6 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAACVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAARwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASgAAAAAASgAAAAAAUwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-1: ind: 7,-1 - tiles: ZAAAAAAAFgAAAAADFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,1: ind: 5,1 - tiles: YwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -9173,8 +9173,6 @@ entities: - pos: 37.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -9387,8 +9385,6 @@ entities: - pos: 66.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 type: PowerNetworkBattery @@ -10862,29 +10858,21 @@ entities: - pos: 11.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 51 components: - pos: 6.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 59 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 60 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 92 components: - pos: 19.5,-14.5 @@ -10910,8 +10898,6 @@ entities: - pos: 37.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 878 components: - pos: 37.5,-42.5 @@ -10922,85 +10908,61 @@ entities: - pos: 19.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1194 components: - pos: -15.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1307 components: - pos: -7.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1323 components: - pos: -11.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1327 components: - pos: -12.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1328 components: - pos: -13.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1329 components: - pos: -14.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2135 components: - pos: 12.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2146 components: - pos: 13.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2403 components: - pos: 52.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3404 components: - pos: 22.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3461 components: - pos: -17.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3684 components: - pos: 61.5,-7.5 @@ -11016,22 +10978,16 @@ entities: - pos: 22.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4001 components: - pos: -9.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4026 components: - pos: -8.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4204 components: - pos: 56.5,-3.5 @@ -11042,8 +10998,6 @@ entities: - pos: 29.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4678 components: - pos: 29.5,-38.5 @@ -11084,8 +11038,6 @@ entities: - pos: 30.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4687 components: - pos: 31.5,-39.5 @@ -11101,8 +11053,6 @@ entities: - pos: 30.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4690 components: - pos: 31.5,-43.5 @@ -11118,22 +11068,16 @@ entities: - pos: 33.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4706 components: - pos: 33.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4707 components: - pos: 33.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4708 components: - pos: 31.5,-44.5 @@ -11144,22 +11088,16 @@ entities: - pos: 31.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4710 components: - pos: 32.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4711 components: - pos: 26.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4712 components: - pos: 26.5,-36.5 @@ -11275,8 +11213,6 @@ entities: - pos: 9.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4736 components: - pos: 10.5,-35.5 @@ -11322,8 +11258,6 @@ entities: - pos: 22.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4747 components: - pos: 22.5,-23.5 @@ -11429,148 +11363,106 @@ entities: - pos: -16.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4827 components: - pos: -17.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4882 components: - pos: 3.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4884 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4887 components: - pos: 3.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4888 components: - pos: 3.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4889 components: - pos: 3.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4890 components: - pos: 2.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4891 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4892 components: - pos: 0.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4893 components: - pos: -0.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4894 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4895 components: - pos: 0.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4896 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4897 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4898 components: - pos: 4.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4899 components: - pos: 3.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4900 components: - pos: 2.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4901 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4902 components: - pos: 0.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4929 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4930 components: - pos: 41.5,-39.5 @@ -11626,323 +11518,231 @@ entities: - pos: 36.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4941 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4942 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4943 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4944 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4945 components: - pos: 35.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4946 components: - pos: 34.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4947 components: - pos: 33.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4948 components: - pos: 37.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4949 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4950 components: - pos: 38.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4951 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4952 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4953 components: - pos: 38.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4954 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4955 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4956 components: - pos: 38.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4957 components: - pos: 38.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4958 components: - pos: 38.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4959 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4960 components: - pos: 39.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4961 components: - pos: 32.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4962 components: - pos: 31.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4963 components: - pos: 31.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4964 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4965 components: - pos: 31.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4966 components: - pos: 30.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4967 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4968 components: - pos: 38.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4969 components: - pos: 39.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5014 components: - pos: 40.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5028 components: - pos: 41.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5029 components: - pos: 42.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5043 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5044 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5065 components: - pos: 43.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5066 components: - pos: 43.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5092 components: - pos: 43.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5093 components: - pos: 43.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5105 components: - pos: 43.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5106 components: - pos: 43.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5116 components: - pos: 43.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5117 components: - pos: 43.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5123 components: - pos: 43.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5124 components: - pos: 43.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5125 components: - pos: 43.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5205 components: - pos: 61.5,-5.5 @@ -11978,43 +11778,31 @@ entities: - pos: -17.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5286 components: - pos: -6.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5296 components: - pos: -10.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5315 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5316 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5345 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5346 components: - pos: 35.5,-42.5 @@ -12035,43 +11823,31 @@ entities: - pos: 36.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5360 components: - pos: 37.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5367 components: - pos: 53.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5371 components: - pos: 38.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5372 components: - pos: 40.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5373 components: - pos: 39.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5374 components: - pos: 35.5,-45.5 @@ -12082,15 +11858,11 @@ entities: - pos: 40.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5577 components: - pos: 17.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5578 components: - pos: 17.5,-38.5 @@ -12121,29 +11893,21 @@ entities: - pos: 15.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5584 components: - pos: 14.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5585 components: - pos: 13.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5586 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5587 components: - pos: 18.5,-39.5 @@ -12164,8 +11928,6 @@ entities: - pos: 21.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5591 components: - pos: 22.5,-39.5 @@ -12246,71 +12008,51 @@ entities: - pos: 4.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5890 components: - pos: 4.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5891 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5892 components: - pos: 4.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5893 components: - pos: 4.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5894 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5895 components: - pos: 5.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5896 components: - pos: 6.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5897 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5898 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6460 components: - pos: 18.5,-15.5 @@ -12381,8 +12123,6 @@ entities: - pos: 32.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6688 components: - pos: 33.5,-11.5 @@ -12453,8 +12193,6 @@ entities: - pos: 37.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6703 components: - pos: 37.5,-3.5 @@ -12570,8 +12308,6 @@ entities: - pos: 45.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6732 components: - pos: 45.5,-7.5 @@ -12657,50 +12393,36 @@ entities: - pos: -4.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6830 components: - pos: 3.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6831 components: - pos: -2.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6836 components: - pos: -0.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6837 components: - pos: -1.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6853 components: - pos: -3.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6855 components: - pos: -5.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6861 components: - pos: 8.5,17.5 @@ -12716,8 +12438,6 @@ entities: - pos: 10.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6870 components: - pos: 9.5,18.5 @@ -12728,50 +12448,36 @@ entities: - pos: 10.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6921 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6922 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6923 components: - pos: 10.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6924 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6925 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6926 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7040 components: - pos: 11.5,3.5 @@ -12837,8 +12543,6 @@ entities: - pos: 10.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7053 components: - pos: 10.5,12.5 @@ -12909,8 +12613,6 @@ entities: - pos: 21.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7067 components: - pos: 20.5,5.5 @@ -12951,78 +12653,56 @@ entities: - pos: 22.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7078 components: - pos: 22.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7079 components: - pos: 21.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7080 components: - pos: 20.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7081 components: - pos: 19.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7082 components: - pos: 18.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7083 components: - pos: 17.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7084 components: - pos: 22.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7085 components: - pos: 22.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7086 components: - pos: 22.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7087 components: - pos: 22.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7088 components: - pos: 22.5,12.5 @@ -13138,8 +12818,6 @@ entities: - pos: 28.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7111 components: - pos: 27.5,7.5 @@ -13170,99 +12848,71 @@ entities: - pos: 28.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7117 components: - pos: 28.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7118 components: - pos: 27.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7119 components: - pos: 29.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7120 components: - pos: 29.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7121 components: - pos: 30.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7122 components: - pos: 31.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7123 components: - pos: 32.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7124 components: - pos: 33.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7125 components: - pos: 34.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7126 components: - pos: 35.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7127 components: - pos: 36.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7128 components: - pos: 37.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7129 components: - pos: 33.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7130 components: - pos: 32.5,7.5 @@ -13388,8 +13038,6 @@ entities: - pos: 25.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7281 components: - pos: 27.5,-28.5 @@ -13405,15 +13053,11 @@ entities: - pos: 27.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7284 components: - pos: 24.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7346 components: - pos: 8.5,18.5 @@ -13424,29 +13068,21 @@ entities: - pos: 13.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7453 components: - pos: 12.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7454 components: - pos: 12.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7588 components: - pos: -15.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7589 components: - pos: -15.5,-14.5 @@ -13547,8 +13183,6 @@ entities: - pos: -5.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7613 components: - pos: -12.5,-12.5 @@ -13579,8 +13213,6 @@ entities: - pos: -0.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7621 components: - pos: -1.5,-11.5 @@ -13616,113 +13248,81 @@ entities: - pos: 0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7628 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7629 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7630 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7631 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7632 components: - pos: 4.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7633 components: - pos: 5.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7634 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7635 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7636 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7637 components: - pos: 1.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7638 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7639 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7640 components: - pos: 1.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7641 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7642 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7643 components: - pos: 3.5,-4.5 @@ -13748,8 +13348,6 @@ entities: - pos: 0.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7648 components: - pos: -0.5,-3.5 @@ -13775,8 +13373,6 @@ entities: - pos: -4.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7653 components: - pos: -5.5,-2.5 @@ -13822,22 +13418,16 @@ entities: - pos: 2.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7665 components: - pos: 0.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7673 components: - pos: 5.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7677 components: - pos: 8.5,16.5 @@ -13848,8 +13438,6 @@ entities: - pos: 1.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7682 components: - pos: -5.5,-0.5 @@ -13895,8 +13483,6 @@ entities: - pos: 6.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7694 components: - pos: 6.5,-11.5 @@ -13967,8 +13553,6 @@ entities: - pos: 4.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7964 components: - pos: 7.5,17.5 @@ -13979,57 +13563,41 @@ entities: - pos: 6.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7966 components: - pos: 5.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7967 components: - pos: 5.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8024 components: - pos: 14.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8025 components: - pos: 15.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8026 components: - pos: 16.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8027 components: - pos: 17.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8028 components: - pos: 16.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8029 components: - pos: 17.5,23.5 @@ -14110,8 +13678,6 @@ entities: - pos: 16.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8045 components: - pos: 15.5,25.5 @@ -14167,15 +13733,11 @@ entities: - pos: 6.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8056 components: - pos: 5.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8057 components: - pos: 7.5,26.5 @@ -14186,15 +13748,11 @@ entities: - pos: 6.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8059 components: - pos: 5.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8060 components: - pos: 8.5,24.5 @@ -14330,162 +13888,116 @@ entities: - pos: 15.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8087 components: - pos: 15.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8088 components: - pos: 15.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8089 components: - pos: 15.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8090 components: - pos: 15.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8091 components: - pos: 15.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8092 components: - pos: 15.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8093 components: - pos: 15.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8094 components: - pos: 16.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8095 components: - pos: 17.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8096 components: - pos: 18.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8097 components: - pos: 19.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8098 components: - pos: 20.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8099 components: - pos: 21.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8100 components: - pos: 22.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8101 components: - pos: 14.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8102 components: - pos: 13.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8103 components: - pos: 12.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8104 components: - pos: 11.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8105 components: - pos: 11.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8106 components: - pos: 11.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8107 components: - pos: 11.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8108 components: - pos: 13.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8109 components: - pos: 13.5,36.5 @@ -14521,8 +14033,6 @@ entities: - pos: 7.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8122 components: - pos: 6.5,3.5 @@ -14683,8 +14193,6 @@ entities: - pos: 41.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8305 components: - pos: 52.5,-8.5 @@ -14695,15 +14203,11 @@ entities: - pos: 63.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8389 components: - pos: 36.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8391 components: - pos: 36.5,30.5 @@ -14789,22 +14293,16 @@ entities: - pos: 42.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8408 components: - pos: 42.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8409 components: - pos: 42.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8448 components: - pos: 41.5,20.5 @@ -14830,8 +14328,6 @@ entities: - pos: 41.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8453 components: - pos: 42.5,17.5 @@ -14847,15 +14343,11 @@ entities: - pos: 43.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8472 components: - pos: 37.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8473 components: - pos: 36.5,25.5 @@ -15081,8 +14573,6 @@ entities: - pos: 43.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8518 components: - pos: 43.5,25.5 @@ -15153,169 +14643,121 @@ entities: - pos: 47.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8704 components: - pos: 47.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8705 components: - pos: 47.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8706 components: - pos: 47.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8707 components: - pos: 47.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8710 components: - pos: 47.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8712 components: - pos: 47.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8713 components: - pos: 46.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8714 components: - pos: 46.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8715 components: - pos: 46.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8716 components: - pos: 46.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8717 components: - pos: 46.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8718 components: - pos: 46.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8730 components: - pos: 46.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8731 components: - pos: 46.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8759 components: - pos: 46.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8766 components: - pos: 46.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8779 components: - pos: 46.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8791 components: - pos: 46.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8795 components: - pos: 46.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8796 components: - pos: 45.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8797 components: - pos: 45.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8798 components: - pos: 45.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9131 components: - pos: 20.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9132 components: - pos: 20.5,33.5 @@ -15391,8 +14833,6 @@ entities: - pos: 20.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9150 components: - pos: 19.5,40.5 @@ -15418,8 +14858,6 @@ entities: - pos: 28.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9155 components: - pos: 27.5,33.5 @@ -15525,8 +14963,6 @@ entities: - pos: 30.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9176 components: - pos: 30.5,37.5 @@ -15552,8 +14988,6 @@ entities: - pos: 25.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9181 components: - pos: 25.5,44.5 @@ -15669,8 +15103,6 @@ entities: - pos: 33.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9204 components: - pos: 33.5,43.5 @@ -15791,190 +15223,136 @@ entities: - pos: 29.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9235 components: - pos: 30.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9236 components: - pos: 31.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9237 components: - pos: 32.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9238 components: - pos: 33.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9239 components: - pos: 34.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9240 components: - pos: 34.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9241 components: - pos: 34.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9242 components: - pos: 34.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9243 components: - pos: 34.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9244 components: - pos: 34.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9245 components: - pos: 35.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9246 components: - pos: 35.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9247 components: - pos: 36.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9248 components: - pos: 37.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9249 components: - pos: 38.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9250 components: - pos: 39.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9251 components: - pos: 39.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9252 components: - pos: 39.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9267 components: - pos: 69.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9268 components: - pos: 69.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9269 components: - pos: 69.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9270 components: - pos: 70.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9271 components: - pos: 71.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9272 components: - pos: 72.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9273 components: - pos: 73.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9274 components: - pos: 66.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9275 components: - pos: 66.5,46.5 @@ -15990,148 +15368,106 @@ entities: - pos: 67.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9278 components: - pos: 65.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9279 components: - pos: 64.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9280 components: - pos: 63.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9281 components: - pos: 63.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9282 components: - pos: 62.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9283 components: - pos: 61.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9284 components: - pos: 60.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9285 components: - pos: 59.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9286 components: - pos: 58.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9287 components: - pos: 57.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9288 components: - pos: 56.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9289 components: - pos: 55.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9290 components: - pos: 54.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9291 components: - pos: 53.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9292 components: - pos: 52.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9293 components: - pos: 51.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9294 components: - pos: 50.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9295 components: - pos: 49.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9296 components: - pos: 56.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9297 components: - pos: 56.5,50.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9298 components: - pos: 44.5,45.5 @@ -16142,29 +15478,21 @@ entities: - pos: 49.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9300 components: - pos: 48.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9301 components: - pos: 47.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9302 components: - pos: 46.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9303 components: - pos: 46.5,46.5 @@ -16185,22 +15513,16 @@ entities: - pos: 68.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9311 components: - pos: 68.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9312 components: - pos: 67.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9313 components: - pos: 66.5,42.5 @@ -16266,57 +15588,41 @@ entities: - pos: 66.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9326 components: - pos: 66.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9327 components: - pos: 66.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9328 components: - pos: 66.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9329 components: - pos: 66.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9330 components: - pos: 67.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9331 components: - pos: 68.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9332 components: - pos: 69.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9333 components: - pos: 69.5,29.5 @@ -16332,8 +15638,6 @@ entities: - pos: 69.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9336 components: - pos: 69.5,32.5 @@ -16349,57 +15653,41 @@ entities: - pos: 68.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9339 components: - pos: 67.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9340 components: - pos: 67.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9341 components: - pos: 68.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9342 components: - pos: 69.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9343 components: - pos: 70.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9344 components: - pos: 67.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9345 components: - pos: 68.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9346 components: - pos: 69.5,39.5 @@ -16460,92 +15748,66 @@ entities: - pos: 50.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9704 components: - pos: 50.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9705 components: - pos: 50.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9706 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9707 components: - pos: 51.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9708 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9709 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9710 components: - pos: 48.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9711 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9712 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9713 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9715 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9778 components: - pos: 23.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9779 components: - pos: 23.5,1.5 @@ -16676,8 +15938,6 @@ entities: - pos: 21.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9805 components: - pos: 21.5,-9.5 @@ -16763,8 +16023,6 @@ entities: - pos: 28.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9906 components: - pos: 27.5,-19.5 @@ -16830,8 +16088,6 @@ entities: - pos: 34.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9919 components: - pos: 33.5,-15.5 @@ -16872,8 +16128,6 @@ entities: - pos: 39.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9929 components: - pos: 40.5,-15.5 @@ -16884,225 +16138,161 @@ entities: - pos: 35.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9931 components: - pos: 36.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9932 components: - pos: 37.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9933 components: - pos: 39.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9934 components: - pos: 39.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9935 components: - pos: 38.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9936 components: - pos: 37.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9937 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9938 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9939 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9940 components: - pos: 33.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9941 components: - pos: 32.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9942 components: - pos: 31.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9943 components: - pos: 30.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9944 components: - pos: 40.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9945 components: - pos: 41.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9946 components: - pos: 41.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9947 components: - pos: 42.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9948 components: - pos: 43.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9949 components: - pos: 44.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9950 components: - pos: 45.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9951 components: - pos: 46.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9952 components: - pos: 47.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9953 components: - pos: 48.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9954 components: - pos: 49.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9955 components: - pos: 50.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9956 components: - pos: 51.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9957 components: - pos: 52.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9958 components: - pos: 53.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9959 components: - pos: 47.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9960 components: - pos: 47.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9961 components: - pos: 47.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9962 components: - pos: 25.5,-21.5 @@ -17118,15 +16308,11 @@ entities: - pos: 23.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9965 components: - pos: 13.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9966 components: - pos: 12.5,-7.5 @@ -17182,8 +16368,6 @@ entities: - pos: 16.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9977 components: - pos: 16.5,-5.5 @@ -17239,64 +16423,46 @@ entities: - pos: 14.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9988 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9989 components: - pos: 21.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9990 components: - pos: 22.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9991 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9992 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9993 components: - pos: 22.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9994 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9995 components: - pos: 22.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9996 components: - pos: 16.5,-7.5 @@ -17307,211 +16473,151 @@ entities: - pos: 17.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9998 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9999 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10000 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10001 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10002 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10003 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10004 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10005 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10006 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10007 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10008 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10009 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10010 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10011 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10012 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10013 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10014 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10015 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10016 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10017 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10018 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10019 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10020 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10021 components: - pos: 10.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10022 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10023 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10024 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10025 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10030 components: - pos: 22.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10031 components: - pos: 22.5,-30.5 @@ -17587,8 +16693,6 @@ entities: - pos: 58.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10082 components: - pos: 61.5,-2.5 @@ -17614,8 +16718,6 @@ entities: - pos: 63.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10132 components: - pos: 61.5,-8.5 @@ -17666,8 +16768,6 @@ entities: - pos: 48.5,19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10462 components: - pos: 49.5,18.5 @@ -17683,8 +16783,6 @@ entities: - pos: 48.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10465 components: - pos: 54.5,18.5 @@ -17700,15 +16798,11 @@ entities: - pos: 51.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10468 components: - pos: 56.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10469 components: - pos: 51.5,23.5 @@ -17799,8 +16893,6 @@ entities: - pos: 43.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10488 components: - pos: 44.5,3.5 @@ -17826,8 +16918,6 @@ entities: - pos: 43.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10493 components: - pos: 43.5,13.5 @@ -17968,8 +17058,6 @@ entities: - pos: 65.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10521 components: - pos: 64.5,23.5 @@ -18015,8 +17103,6 @@ entities: - pos: 66.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10530 components: - pos: 66.5,16.5 @@ -18062,8 +17148,6 @@ entities: - pos: 64.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10539 components: - pos: 63.5,11.5 @@ -18099,8 +17183,6 @@ entities: - pos: 61.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10547 components: - pos: 60.5,18.5 @@ -18296,8 +17378,6 @@ entities: - pos: 43.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10926 components: - pos: 42.5,6.5 @@ -18373,71 +17453,51 @@ entities: - pos: 44.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10945 components: - pos: 45.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10946 components: - pos: 46.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10947 components: - pos: 47.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10948 components: - pos: 48.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10949 components: - pos: 49.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10953 components: - pos: 50.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10954 components: - pos: 51.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10955 components: - pos: 52.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10957 components: - pos: 54.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11008 components: - pos: 54.5,3.5 @@ -18498,8 +17558,6 @@ entities: - pos: 53.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11031 components: - pos: 52.5,-0.5 @@ -18550,8 +17608,6 @@ entities: - pos: 58.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11044 components: - pos: 58.5,-9.5 @@ -18582,8 +17638,6 @@ entities: - pos: 66.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11050 components: - pos: 66.5,-1.5 @@ -18594,8 +17648,6 @@ entities: - pos: 66.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11052 components: - pos: 66.5,-3.5 @@ -18631,8 +17683,6 @@ entities: - pos: 75.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11059 components: - pos: 76.5,-4.5 @@ -18738,50 +17788,36 @@ entities: - pos: 73.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11083 components: - pos: 72.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11084 components: - pos: 71.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11085 components: - pos: 70.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11086 components: - pos: 69.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11087 components: - pos: 71.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11088 components: - pos: 71.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11090 components: - pos: 71.5,-4.5 @@ -18797,8 +17833,6 @@ entities: - pos: 75.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11096 components: - pos: 74.5,-2.5 @@ -18834,50 +17868,36 @@ entities: - pos: 71.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11108 components: - pos: 71.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11110 components: - pos: 71.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11111 components: - pos: 71.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11112 components: - pos: 71.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11113 components: - pos: 71.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11114 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11115 components: - pos: 67.5,-15.5 @@ -18903,29 +17923,21 @@ entities: - pos: 65.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11135 components: - pos: 64.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11136 components: - pos: 63.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11137 components: - pos: 62.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11138 components: - pos: 61.5,-17.5 @@ -18936,15 +17948,11 @@ entities: - pos: 60.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11140 components: - pos: 59.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11141 components: - pos: 66.5,-7.5 @@ -19125,8 +18133,6 @@ entities: - pos: 74.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11996 components: - pos: 74.5,8.5 @@ -19262,141 +18268,101 @@ entities: - pos: 69.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12023 components: - pos: 69.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12024 components: - pos: 68.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12025 components: - pos: 67.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12026 components: - pos: 67.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12027 components: - pos: 67.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12028 components: - pos: 66.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12029 components: - pos: 65.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12030 components: - pos: 65.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12031 components: - pos: 65.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12032 components: - pos: 64.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12033 components: - pos: 63.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12034 components: - pos: 62.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12035 components: - pos: 61.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12036 components: - pos: 60.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12037 components: - pos: 59.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12038 components: - pos: 70.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12039 components: - pos: 71.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12040 components: - pos: 72.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12041 components: - pos: 73.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12042 components: - pos: 73.5,11.5 @@ -19407,309 +18373,221 @@ entities: - pos: 73.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12044 components: - pos: 73.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12045 components: - pos: 73.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12046 components: - pos: 73.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12047 components: - pos: 73.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12048 components: - pos: 73.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12049 components: - pos: 73.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12050 components: - pos: 74.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12051 components: - pos: 75.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12052 components: - pos: 76.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12053 components: - pos: 77.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12054 components: - pos: 78.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12055 components: - pos: 79.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12056 components: - pos: 78.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12057 components: - pos: 78.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12058 components: - pos: 79.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12059 components: - pos: 80.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12060 components: - pos: 81.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12061 components: - pos: 82.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12062 components: - pos: 83.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12063 components: - pos: 84.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12064 components: - pos: 85.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12065 components: - pos: 86.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12066 components: - pos: 86.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12067 components: - pos: 86.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12068 components: - pos: 86.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12069 components: - pos: 86.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12070 components: - pos: 86.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12071 components: - pos: 86.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12072 components: - pos: 86.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12073 components: - pos: 86.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12074 components: - pos: 86.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12079 components: - pos: 86.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12084 components: - pos: 85.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12096 components: - pos: 84.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12113 components: - pos: 84.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12114 components: - pos: 84.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12115 components: - pos: 84.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12117 components: - pos: 84.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12118 components: - pos: 84.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12119 components: - pos: 84.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12120 components: - pos: 84.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12121 components: - pos: 84.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12122 components: - pos: 84.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12123 components: - pos: 85.5,8.5 @@ -19720,8 +18598,6 @@ entities: - pos: 85.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12125 components: - pos: 85.5,10.5 @@ -19732,8 +18608,6 @@ entities: - pos: 85.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12127 components: - pos: 84.5,11.5 @@ -19744,190 +18618,136 @@ entities: - pos: 83.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12129 components: - pos: 84.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12130 components: - pos: 84.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12131 components: - pos: 83.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12132 components: - pos: 82.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12133 components: - pos: 81.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12134 components: - pos: 80.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12135 components: - pos: 69.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12136 components: - pos: 70.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12137 components: - pos: 70.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12138 components: - pos: 70.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12500 components: - pos: 87.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12501 components: - pos: 88.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12505 components: - pos: 88.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12507 components: - pos: 88.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12508 components: - pos: 88.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12509 components: - pos: 88.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12510 components: - pos: 88.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12511 components: - pos: 87.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12512 components: - pos: 86.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12513 components: - pos: 89.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12514 components: - pos: 90.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12523 components: - pos: 91.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12524 components: - pos: 92.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12525 components: - pos: 93.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12526 components: - pos: 100.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12527 components: - pos: 101.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12533 components: - pos: 102.5,-19.5 @@ -19983,29 +18803,21 @@ entities: - pos: 110.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12555 components: - pos: 110.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12558 components: - pos: 110.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12560 components: - pos: 110.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12561 components: - pos: 107.5,-16.5 @@ -20106,29 +18918,21 @@ entities: - pos: 110.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12588 components: - pos: 111.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12589 components: - pos: 112.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12590 components: - pos: 112.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12591 components: - pos: 113.5,-19.5 @@ -20159,36 +18963,26 @@ entities: - pos: 41.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12950 components: - pos: 42.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12951 components: - pos: 43.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12952 components: - pos: 44.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12953 components: - pos: 45.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12954 components: - pos: 46.5,-44.5 @@ -20249,22 +19043,16 @@ entities: - pos: 33.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12966 components: - pos: 32.5,-47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12967 components: - pos: 32.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12968 components: - pos: 35.5,-48.5 @@ -20275,57 +19063,41 @@ entities: - pos: 36.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12970 components: - pos: 37.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12971 components: - pos: 38.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12972 components: - pos: 39.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12973 components: - pos: 40.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12974 components: - pos: 41.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12975 components: - pos: 42.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12976 components: - pos: 43.5,-48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 5386 @@ -20362,64 +19134,46 @@ entities: - pos: 13.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 29 components: - pos: 12.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 61 components: - pos: 15.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 63 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 64 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 65 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 66 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 603 components: - pos: 42.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 803 components: - pos: 23.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 828 components: - pos: 24.5,-36.5 @@ -20445,8 +19199,6 @@ entities: - pos: 25.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1027 components: - pos: 25.5,-41.5 @@ -20467,8 +19219,6 @@ entities: - pos: 43.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2387 components: - pos: 25.5,-28.5 @@ -20479,8 +19229,6 @@ entities: - pos: 117.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2832 components: - pos: 23.5,-28.5 @@ -20491,22 +19239,16 @@ entities: - pos: 22.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2989 components: - pos: 22.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3012 components: - pos: 22.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3980 components: - pos: 23.5,-41.5 @@ -20517,29 +19259,21 @@ entities: - pos: 26.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4213 components: - pos: 22.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4218 components: - pos: 22.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4227 components: - pos: 22.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4307 components: - pos: 17.5,-40.5 @@ -20635,15 +19369,11 @@ entities: - pos: 17.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4519 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4520 components: - pos: 26.5,-36.5 @@ -20694,36 +19424,26 @@ entities: - pos: 30.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4530 components: - pos: 30.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4531 components: - pos: 30.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4532 components: - pos: 30.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4533 components: - pos: 30.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4534 components: - pos: 30.5,-44.5 @@ -20779,22 +19499,16 @@ entities: - pos: 25.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4547 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4548 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4549 components: - pos: 26.5,-29.5 @@ -20890,36 +19604,26 @@ entities: - pos: 11.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4603 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4604 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4781 components: - pos: 21.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4783 components: - pos: 21.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4784 components: - pos: 21.5,-38.5 @@ -21030,36 +19734,26 @@ entities: - pos: -12.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4808 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4809 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4810 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4816 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4817 components: - pos: -11.5,-37.5 @@ -21235,169 +19929,121 @@ entities: - pos: -8.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4854 components: - pos: -8.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4855 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4856 components: - pos: -4.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4857 components: - pos: -4.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4858 components: - pos: -4.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4859 components: - pos: -4.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4860 components: - pos: -15.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4861 components: - pos: -14.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4862 components: - pos: -1.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4863 components: - pos: -0.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4864 components: - pos: 0.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4865 components: - pos: 1.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4866 components: - pos: 2.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4867 components: - pos: 2.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4868 components: - pos: 3.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4869 components: - pos: 4.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4870 components: - pos: 4.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4871 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4908 components: - pos: 22.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5146 components: - pos: 41.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5421 components: - pos: 14.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5743 components: - pos: 12.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5873 components: - pos: 63.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5903 components: - pos: 4.5,-33.5 @@ -21408,211 +20054,151 @@ entities: - pos: 4.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5905 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5906 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5907 components: - pos: 4.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5908 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5909 components: - pos: 4.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5910 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5911 components: - pos: 4.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5912 components: - pos: 4.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5913 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5922 components: - pos: 5.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5923 components: - pos: 6.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5924 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5925 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5926 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5927 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5928 components: - pos: 11.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5929 components: - pos: 11.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5930 components: - pos: 11.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5931 components: - pos: 11.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5932 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5933 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5934 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5935 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5936 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5937 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5938 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5939 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5940 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5941 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5942 components: - pos: 5.5,-15.5 @@ -21638,225 +20224,161 @@ entities: - pos: 1.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5947 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5948 components: - pos: 1.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5949 components: - pos: 1.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5950 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5951 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5952 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5953 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5954 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5955 components: - pos: 4.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5956 components: - pos: 5.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5957 components: - pos: 6.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5958 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5959 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5960 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5961 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5962 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5963 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5970 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5971 components: - pos: 16.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5972 components: - pos: 12.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5973 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5974 components: - pos: 14.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5975 components: - pos: 15.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5976 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5977 components: - pos: 17.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5978 components: - pos: 18.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5979 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5980 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5981 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5982 components: - pos: 22.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5983 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5984 components: - pos: 24.5,-21.5 @@ -21887,1086 +20409,776 @@ entities: - pos: 29.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5990 components: - pos: 30.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5991 components: - pos: 30.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5992 components: - pos: 30.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5993 components: - pos: 31.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5994 components: - pos: 32.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5995 components: - pos: 33.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5996 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5997 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5998 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5999 components: - pos: 37.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6000 components: - pos: 38.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6001 components: - pos: 39.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6002 components: - pos: 40.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6003 components: - pos: 41.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6004 components: - pos: 41.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6016 components: - pos: 42.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6017 components: - pos: 43.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6018 components: - pos: 44.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6019 components: - pos: 45.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6020 components: - pos: 46.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6021 components: - pos: 47.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6022 components: - pos: 48.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6023 components: - pos: 49.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6024 components: - pos: 50.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6028 components: - pos: 51.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6029 components: - pos: 52.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6030 components: - pos: 52.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6031 components: - pos: 52.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6032 components: - pos: 52.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6033 components: - pos: 52.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6034 components: - pos: 52.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6035 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6036 components: - pos: 52.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6037 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6038 components: - pos: 53.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6039 components: - pos: 54.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6040 components: - pos: 55.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6041 components: - pos: 56.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6042 components: - pos: 57.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6044 components: - pos: 57.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6045 components: - pos: 58.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6046 components: - pos: 59.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6048 components: - pos: 60.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6049 components: - pos: 61.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6050 components: - pos: 62.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6051 components: - pos: 63.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6052 components: - pos: 64.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6053 components: - pos: 65.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6054 components: - pos: 66.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6055 components: - pos: 67.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6056 components: - pos: 68.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6057 components: - pos: 69.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6058 components: - pos: 69.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6059 components: - pos: 69.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6060 components: - pos: 69.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6061 components: - pos: 70.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6062 components: - pos: 71.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6063 components: - pos: 71.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6064 components: - pos: 71.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6065 components: - pos: 71.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6066 components: - pos: 70.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6067 components: - pos: 69.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6070 components: - pos: 72.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6071 components: - pos: 73.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6072 components: - pos: 74.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6073 components: - pos: 75.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6074 components: - pos: 76.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6075 components: - pos: 77.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6076 components: - pos: 78.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6077 components: - pos: 79.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6078 components: - pos: 80.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6079 components: - pos: 81.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6080 components: - pos: 82.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6081 components: - pos: 83.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6082 components: - pos: 84.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6083 components: - pos: 85.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6084 components: - pos: 86.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6087 components: - pos: 86.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6088 components: - pos: 86.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6089 components: - pos: 86.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6090 components: - pos: 86.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6091 components: - pos: 86.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6092 components: - pos: 86.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6093 components: - pos: 86.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6094 components: - pos: 86.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6096 components: - pos: 86.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6097 components: - pos: 86.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6098 components: - pos: 86.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6100 components: - pos: 86.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6101 components: - pos: 86.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6102 components: - pos: 85.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6103 components: - pos: 84.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6104 components: - pos: 84.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6105 components: - pos: 84.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6106 components: - pos: 84.5,0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6107 components: - pos: 84.5,1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6108 components: - pos: 84.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6109 components: - pos: 84.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6110 components: - pos: 84.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6111 components: - pos: 83.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6112 components: - pos: 82.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6141 components: - pos: 81.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6142 components: - pos: 81.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6143 components: - pos: 81.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6144 components: - pos: 81.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6145 components: - pos: 81.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6146 components: - pos: 81.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6147 components: - pos: 81.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6148 components: - pos: 81.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6149 components: - pos: 81.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6150 components: - pos: 80.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6151 components: - pos: 79.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6152 components: - pos: 78.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6153 components: - pos: 77.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6154 components: - pos: 76.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6155 components: - pos: 75.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6156 components: - pos: 74.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6157 components: - pos: 74.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6159 components: - pos: 74.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6160 components: - pos: 73.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6161 components: - pos: 72.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6162 components: - pos: 71.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6163 components: - pos: 70.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6164 components: - pos: 69.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6165 components: - pos: 68.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6166 components: - pos: 67.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6167 components: - pos: 67.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6168 components: - pos: 67.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6169 components: - pos: 74.5,13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6170 components: - pos: 74.5,14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6171 components: - pos: 74.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6173 components: - pos: 74.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6174 components: - pos: 74.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6175 components: - pos: 74.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6176 components: - pos: 73.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6177 components: - pos: 72.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6178 components: - pos: 71.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6179 components: - pos: 70.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6181 components: - pos: 69.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6182 components: - pos: 68.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6183 components: - pos: 67.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6184 components: - pos: 67.5,19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6185 components: - pos: 67.5,20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6186 components: - pos: 67.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6187 components: - pos: 67.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6188 components: - pos: 67.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6189 components: - pos: 67.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6190 components: - pos: 66.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6191 components: - pos: 66.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6192 components: - pos: 66.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6193 components: - pos: 66.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6194 components: - pos: 66.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6195 components: - pos: 66.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6200 components: - pos: 66.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6201 components: - pos: 66.5,31.5 @@ -23032,85 +21244,61 @@ entities: - pos: 67.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6218 components: - pos: 68.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6219 components: - pos: 69.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6220 components: - pos: 69.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6221 components: - pos: 69.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6222 components: - pos: 70.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6223 components: - pos: 71.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6224 components: - pos: 71.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6225 components: - pos: 72.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6226 components: - pos: 73.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6227 components: - pos: 74.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6228 components: - pos: 75.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6229 components: - pos: 77.5,47.5 @@ -23176,29 +21364,21 @@ entities: - pos: 78.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6243 components: - pos: 78.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6244 components: - pos: 78.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6245 components: - pos: 78.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6246 components: - pos: 81.5,47.5 @@ -23244,15 +21424,11 @@ entities: - pos: 82.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6255 components: - pos: 82.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6256 components: - pos: 81.5,40.5 @@ -23298,15 +21474,11 @@ entities: - pos: 82.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6265 components: - pos: 82.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6266 components: - pos: 85.5,47.5 @@ -23327,15 +21499,11 @@ entities: - pos: 86.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6270 components: - pos: 86.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6271 components: - pos: 87.5,47.5 @@ -23386,57 +21554,41 @@ entities: - pos: 86.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6281 components: - pos: 86.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6282 components: - pos: 89.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6283 components: - pos: 88.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6285 components: - pos: 67.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6286 components: - pos: 67.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6287 components: - pos: 67.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6288 components: - pos: 67.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6289 components: - pos: 66.5,46.5 @@ -23447,155 +21599,111 @@ entities: - pos: 65.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6291 components: - pos: 64.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6292 components: - pos: 63.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6293 components: - pos: 63.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6294 components: - pos: 62.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6295 components: - pos: 61.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6296 components: - pos: 60.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6297 components: - pos: 59.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6298 components: - pos: 58.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6299 components: - pos: 57.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6300 components: - pos: 56.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6301 components: - pos: 55.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6302 components: - pos: 54.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6303 components: - pos: 53.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6304 components: - pos: 52.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6305 components: - pos: 51.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6306 components: - pos: 50.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6307 components: - pos: 49.5,48.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6310 components: - pos: 49.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6311 components: - pos: 48.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6312 components: - pos: 47.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6313 components: - pos: 46.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6314 components: - pos: 46.5,46.5 @@ -23611,8 +21719,6 @@ entities: - pos: 47.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6318 components: - pos: 44.5,46.5 @@ -23638,8 +21744,6 @@ entities: - pos: 44.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6323 components: - pos: 44.5,41.5 @@ -23660,8 +21764,6 @@ entities: - pos: 45.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6327 components: - pos: 45.5,38.5 @@ -23722,92 +21824,66 @@ entities: - pos: 44.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6339 components: - pos: 43.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6340 components: - pos: 46.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6341 components: - pos: 46.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6343 components: - pos: 47.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6344 components: - pos: 48.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6345 components: - pos: 49.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6346 components: - pos: 50.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6347 components: - pos: 47.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6348 components: - pos: 47.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6349 components: - pos: 47.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6350 components: - pos: 47.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6351 components: - pos: 47.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6352 components: - pos: 47.5,20.5 @@ -23923,78 +21999,56 @@ entities: - pos: 44.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6376 components: - pos: 44.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6377 components: - pos: 45.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6378 components: - pos: 46.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6380 components: - pos: 47.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6381 components: - pos: 48.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6382 components: - pos: 49.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6383 components: - pos: 50.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6384 components: - pos: 51.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6385 components: - pos: 52.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6386 components: - pos: 53.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6387 components: - pos: 54.5,6.5 @@ -24025,71 +22079,51 @@ entities: - pos: 59.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6393 components: - pos: 60.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6394 components: - pos: 61.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6395 components: - pos: 62.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6396 components: - pos: 63.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6397 components: - pos: 64.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6398 components: - pos: 65.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6399 components: - pos: 65.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6400 components: - pos: 65.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6401 components: - pos: 66.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6402 components: - pos: 40.5,11.5 @@ -24105,211 +22139,151 @@ entities: - pos: 38.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6405 components: - pos: 37.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6406 components: - pos: 36.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6407 components: - pos: 35.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6408 components: - pos: 34.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6409 components: - pos: 33.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6410 components: - pos: 32.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6411 components: - pos: 31.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6412 components: - pos: 30.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6413 components: - pos: 29.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6414 components: - pos: 29.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6415 components: - pos: 28.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6416 components: - pos: 27.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6417 components: - pos: 26.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6418 components: - pos: 25.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6419 components: - pos: 24.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6420 components: - pos: 23.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6429 components: - pos: 22.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6430 components: - pos: 21.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6431 components: - pos: 20.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6432 components: - pos: 19.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6433 components: - pos: 18.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6434 components: - pos: 17.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6435 components: - pos: 16.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6436 components: - pos: 15.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6437 components: - pos: 15.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6438 components: - pos: 15.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6439 components: - pos: 15.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6440 components: - pos: 15.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6441 components: - pos: 14.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6443 components: - pos: 26.5,-20.5 @@ -24365,29 +22339,21 @@ entities: - pos: 23.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6454 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6767 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6897 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7148 components: - pos: 14.5,5.5 @@ -24463,148 +22429,106 @@ entities: - pos: 12.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7163 components: - pos: 11.5,15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7164 components: - pos: 11.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7165 components: - pos: 11.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7166 components: - pos: 11.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7167 components: - pos: 13.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7168 components: - pos: 15.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7169 components: - pos: 15.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7170 components: - pos: 15.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7171 components: - pos: 15.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7172 components: - pos: 15.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7173 components: - pos: 15.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7174 components: - pos: 15.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7175 components: - pos: 16.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7176 components: - pos: 17.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7177 components: - pos: 18.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7178 components: - pos: 19.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7179 components: - pos: 20.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7180 components: - pos: 21.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7181 components: - pos: 22.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7182 components: - pos: 23.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7183 components: - pos: 24.5,27.5 @@ -24705,22 +22629,16 @@ entities: - pos: 12.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7203 components: - pos: 13.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7204 components: - pos: 14.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7205 components: - pos: 14.5,19.5 @@ -24786,29 +22704,21 @@ entities: - pos: 43.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8818 components: - pos: 118.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8822 components: - pos: 119.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9060 components: - pos: 120.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9370 components: - pos: 19.5,45.5 @@ -24864,8 +22774,6 @@ entities: - pos: 27.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9381 components: - pos: 27.5,42.5 @@ -24891,8 +22799,6 @@ entities: - pos: 27.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9386 components: - pos: 27.5,37.5 @@ -24953,148 +22859,106 @@ entities: - pos: 40.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9440 components: - pos: 39.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9441 components: - pos: 39.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9442 components: - pos: 39.5,39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9443 components: - pos: 39.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9444 components: - pos: 38.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9445 components: - pos: 37.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9446 components: - pos: 36.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9447 components: - pos: 35.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9448 components: - pos: 35.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9449 components: - pos: 34.5,37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9450 components: - pos: 34.5,36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9451 components: - pos: 34.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9452 components: - pos: 34.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9453 components: - pos: 34.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9454 components: - pos: 34.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9455 components: - pos: 33.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9456 components: - pos: 32.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9457 components: - pos: 31.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9458 components: - pos: 30.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9459 components: - pos: 29.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9460 components: - pos: 28.5,32.5 @@ -25215,113 +23079,81 @@ entities: - pos: 22.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9489 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9490 components: - pos: 22.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9491 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9492 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9493 components: - pos: 22.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9494 components: - pos: 21.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9495 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9496 components: - pos: 19.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9497 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9498 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9499 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9500 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9501 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9502 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9503 components: - pos: 75.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9504 components: - pos: 75.5,9.5 @@ -25432,57 +23264,41 @@ entities: - pos: 71.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9526 components: - pos: 71.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9527 components: - pos: 71.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9528 components: - pos: 71.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9529 components: - pos: 71.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9530 components: - pos: 71.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9531 components: - pos: 71.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9532 components: - pos: 71.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9583 components: - pos: 14.5,35.5 @@ -25493,22 +23309,16 @@ entities: - pos: 35.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9822 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9823 components: - pos: 35.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9824 components: - pos: 34.5,-16.5 @@ -25609,260 +23419,186 @@ entities: - pos: 111.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12597 components: - pos: 111.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12598 components: - pos: 111.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12599 components: - pos: 111.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12600 components: - pos: 113.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12601 components: - pos: 113.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12602 components: - pos: 113.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12603 components: - pos: 113.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12604 components: - pos: 115.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12605 components: - pos: 115.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12606 components: - pos: 115.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12608 components: - pos: 115.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12609 components: - pos: 120.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12610 components: - pos: 112.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12611 components: - pos: 114.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12612 components: - pos: 119.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12613 components: - pos: 118.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12614 components: - pos: 117.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12615 components: - pos: 120.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12616 components: - pos: 119.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12617 components: - pos: 118.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12618 components: - pos: 117.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12619 components: - pos: 115.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12620 components: - pos: 115.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12621 components: - pos: 115.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12622 components: - pos: 115.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12623 components: - pos: 113.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12624 components: - pos: 113.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12625 components: - pos: 113.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12626 components: - pos: 113.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12627 components: - pos: 111.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12628 components: - pos: 111.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12629 components: - pos: 111.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12630 components: - pos: 111.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12631 components: - pos: 114.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12632 components: - pos: 115.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12633 components: - pos: 116.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12634 components: - pos: 115.5,-19.5 @@ -25873,8 +23609,6 @@ entities: - pos: 115.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12636 components: - pos: 115.5,-15.5 @@ -25910,36 +23644,26 @@ entities: - pos: 112.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12643 components: - pos: 112.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12644 components: - pos: 112.5,-17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12645 components: - pos: 112.5,-16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12646 components: - pos: 112.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12807 components: - pos: 25.5,-27.5 @@ -25950,8 +23674,6 @@ entities: - pos: 25.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12809 components: - pos: 25.5,-25.5 @@ -26012,29 +23734,21 @@ entities: - pos: 34.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13050 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13051 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13052 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13053 components: - pos: 35.5,-42.5 @@ -26065,36 +23779,26 @@ entities: - pos: 36.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13059 components: - pos: 37.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13060 components: - pos: 38.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13061 components: - pos: 39.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13062 components: - pos: 40.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableHVStack entities: - uid: 5629 @@ -26125,36 +23829,26 @@ entities: - pos: 9.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 58 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 769 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1028 components: - pos: 4.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1029 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1030 components: - pos: 4.5,-33.5 @@ -26165,15 +23859,11 @@ entities: - pos: 4.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1032 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1555 components: - pos: 41.5,-0.5 @@ -26184,36 +23874,26 @@ entities: - pos: 22.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2954 components: - pos: 22.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3013 components: - pos: 22.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3014 components: - pos: 22.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3403 components: - pos: 22.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3486 components: - pos: 51.5,21.5 @@ -26239,15 +23919,11 @@ entities: - pos: 22.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4308 components: - pos: 17.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4312 components: - pos: 17.5,-36.5 @@ -26258,22 +23934,16 @@ entities: - pos: 10.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4606 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4607 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4608 components: - pos: 12.5,-26.5 @@ -26349,8 +24019,6 @@ entities: - pos: 22.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4625 components: - pos: 21.5,-27.5 @@ -26416,15 +24084,11 @@ entities: - pos: 17.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4638 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4639 components: - pos: 23.5,-39.5 @@ -26455,8 +24119,6 @@ entities: - pos: 26.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4645 components: - pos: 26.5,-36.5 @@ -26532,8 +24194,6 @@ entities: - pos: 9.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4660 components: - pos: 26.5,-34.5 @@ -26574,8 +24234,6 @@ entities: - pos: 22.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4671 components: - pos: 27.5,-36.5 @@ -26596,50 +24254,36 @@ entities: - pos: 29.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4875 components: - pos: 4.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4876 components: - pos: 4.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4878 components: - pos: 3.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4879 components: - pos: 3.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4880 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4881 components: - pos: 3.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5185 components: - pos: 62.5,-7.5 @@ -26660,8 +24304,6 @@ entities: - pos: 22.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6456 components: - pos: 21.5,-14.5 @@ -26682,92 +24324,66 @@ entities: - pos: 19.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6768 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6769 components: - pos: 14.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6770 components: - pos: 13.5,-42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6771 components: - pos: 13.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6772 components: - pos: 13.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6773 components: - pos: 13.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6780 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6955 components: - pos: 14.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6956 components: - pos: 14.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6957 components: - pos: 15.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6958 components: - pos: 15.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6959 components: - pos: 15.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6961 components: - pos: 14.5,5.5 @@ -26823,8 +24439,6 @@ entities: - pos: 11.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6972 components: - pos: 8.5,3.5 @@ -26835,8 +24449,6 @@ entities: - pos: 7.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6974 components: - pos: 9.5,6.5 @@ -26872,8 +24484,6 @@ entities: - pos: 10.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6981 components: - pos: 11.5,10.5 @@ -26954,141 +24564,101 @@ entities: - pos: 21.5,5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6997 components: - pos: 15.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6998 components: - pos: 15.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 6999 components: - pos: 16.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7000 components: - pos: 17.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7001 components: - pos: 18.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7002 components: - pos: 19.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7003 components: - pos: 20.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7004 components: - pos: 21.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7005 components: - pos: 22.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7016 components: - pos: 23.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7017 components: - pos: 22.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7018 components: - pos: 22.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7019 components: - pos: 24.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7020 components: - pos: 25.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7021 components: - pos: 26.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7022 components: - pos: 27.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7023 components: - pos: 28.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7024 components: - pos: 28.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7025 components: - pos: 28.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7026 components: - pos: 27.5,7.5 @@ -27114,8 +24684,6 @@ entities: - pos: 33.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7031 components: - pos: 32.5,7.5 @@ -27151,50 +24719,36 @@ entities: - pos: 29.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7217 components: - pos: 12.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7218 components: - pos: 12.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7219 components: - pos: 13.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7220 components: - pos: 14.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7221 components: - pos: 15.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7222 components: - pos: 15.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7223 components: - pos: 14.5,35.5 @@ -27205,43 +24759,31 @@ entities: - pos: 13.5,35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7225 components: - pos: 15.5,32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7226 components: - pos: 15.5,31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7227 components: - pos: 15.5,30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7228 components: - pos: 15.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7229 components: - pos: 15.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7230 components: - pos: 14.5,28.5 @@ -27292,8 +24834,6 @@ entities: - pos: 16.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7240 components: - pos: 14.5,25.5 @@ -27309,15 +24849,11 @@ entities: - pos: 16.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7243 components: - pos: 10.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7244 components: - pos: 9.5,18.5 @@ -27378,57 +24914,41 @@ entities: - pos: 13.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7256 components: - pos: 12.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7257 components: - pos: 11.5,16.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7258 components: - pos: 11.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7259 components: - pos: 11.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7260 components: - pos: 13.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7261 components: - pos: 12.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7262 components: - pos: 14.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7263 components: - pos: 14.5,19.5 @@ -27454,127 +24974,91 @@ entities: - pos: 6.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7476 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7477 components: - pos: 6.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7478 components: - pos: 5.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7479 components: - pos: 4.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7480 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7481 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7482 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7483 components: - pos: 0.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7484 components: - pos: 0.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7485 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7486 components: - pos: 1.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7487 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7488 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7489 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7490 components: - pos: 1.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7491 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7492 components: - pos: 0.5,-3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7493 components: - pos: 1.5,-2.5 @@ -27640,29 +25124,21 @@ entities: - pos: -4.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7506 components: - pos: 0.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7507 components: - pos: 0.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7508 components: - pos: -0.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 7509 components: - pos: -0.5,-10.5 @@ -27823,8 +25299,6 @@ entities: - pos: -15.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8287 components: - pos: 27.5,33.5 @@ -27835,29 +25309,21 @@ entities: - pos: 52.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8341 components: - pos: 52.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8348 components: - pos: 43.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8349 components: - pos: 43.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8350 components: - pos: 43.5,25.5 @@ -27903,8 +25369,6 @@ entities: - pos: 41.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8359 components: - pos: 39.5,22.5 @@ -28000,8 +25464,6 @@ entities: - pos: 36.5,29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8385 components: - pos: 34.5,25.5 @@ -28022,8 +25484,6 @@ entities: - pos: 37.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8456 components: - pos: 33.5,21.5 @@ -28039,8 +25499,6 @@ entities: - pos: 31.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8459 components: - pos: 30.5,21.5 @@ -28056,15 +25514,11 @@ entities: - pos: 28.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8462 components: - pos: 28.5,20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8463 components: - pos: 33.5,20.5 @@ -28105,43 +25559,31 @@ entities: - pos: 28.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8471 components: - pos: 28.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8536 components: - pos: 37.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8537 components: - pos: 37.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8538 components: - pos: 37.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8539 components: - pos: 38.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8540 components: - pos: 39.5,25.5 @@ -28157,29 +25599,21 @@ entities: - pos: 41.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8543 components: - pos: 37.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8544 components: - pos: 37.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8545 components: - pos: 37.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8546 components: - pos: 38.5,21.5 @@ -28190,22 +25624,16 @@ entities: - pos: 38.5,20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8548 components: - pos: 31.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8698 components: - pos: 47.5,28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9007 components: - pos: 14.5,36.5 @@ -28251,8 +25679,6 @@ entities: - pos: 20.5,34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9021 components: - pos: 18.5,37.5 @@ -28283,8 +25709,6 @@ entities: - pos: 20.5,40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9027 components: - pos: 21.5,36.5 @@ -28330,8 +25754,6 @@ entities: - pos: 28.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9036 components: - pos: 27.5,34.5 @@ -28342,8 +25764,6 @@ entities: - pos: 28.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9038 components: - pos: 29.5,36.5 @@ -28364,8 +25784,6 @@ entities: - pos: 30.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9042 components: - pos: 27.5,37.5 @@ -28376,8 +25794,6 @@ entities: - pos: 27.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9044 components: - pos: 27.5,39.5 @@ -28403,8 +25819,6 @@ entities: - pos: 27.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9049 components: - pos: 27.5,44.5 @@ -28435,8 +25849,6 @@ entities: - pos: 25.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9055 components: - pos: 28.5,45.5 @@ -28472,8 +25884,6 @@ entities: - pos: 33.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9094 components: - pos: 27.5,35.5 @@ -28489,29 +25899,21 @@ entities: - pos: 21.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9097 components: - pos: 22.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9098 components: - pos: 23.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9099 components: - pos: 24.5,38.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9100 components: - pos: 24.5,45.5 @@ -28547,15 +25949,11 @@ entities: - pos: 18.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9107 components: - pos: 18.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9108 components: - pos: 22.5,46.5 @@ -28576,78 +25974,56 @@ entities: - pos: 22.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9114 components: - pos: 23.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9115 components: - pos: 24.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9116 components: - pos: 25.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9117 components: - pos: 26.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9118 components: - pos: 27.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9119 components: - pos: 28.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9120 components: - pos: 29.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9121 components: - pos: 30.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9122 components: - pos: 31.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9123 components: - pos: 32.5,49.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9124 components: - pos: 32.5,48.5 @@ -28678,99 +26054,71 @@ entities: - pos: 36.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9130 components: - pos: 36.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9253 components: - pos: 70.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9254 components: - pos: 69.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9255 components: - pos: 69.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9256 components: - pos: 69.5,46.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9257 components: - pos: 69.5,47.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9258 components: - pos: 69.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9259 components: - pos: 69.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9260 components: - pos: 68.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9261 components: - pos: 68.5,41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9262 components: - pos: 67.5,42.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9263 components: - pos: 67.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9264 components: - pos: 67.5,44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9265 components: - pos: 66.5,44.5 @@ -28781,8 +26129,6 @@ entities: - pos: 66.5,45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9474 components: - pos: 24.5,44.5 @@ -28793,15 +26139,11 @@ entities: - pos: 24.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9476 components: - pos: 21.5,43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9477 components: - pos: 21.5,44.5 @@ -28812,85 +26154,61 @@ entities: - pos: 52.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9639 components: - pos: 52.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9640 components: - pos: 51.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9641 components: - pos: 50.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9642 components: - pos: 49.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9643 components: - pos: 48.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9644 components: - pos: 47.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9645 components: - pos: 46.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9646 components: - pos: 45.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9647 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9648 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9649 components: - pos: 42.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9650 components: - pos: 41.5,-12.5 @@ -28946,8 +26264,6 @@ entities: - pos: 32.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9661 components: - pos: 39.5,-10.5 @@ -29003,8 +26319,6 @@ entities: - pos: 37.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9672 components: - pos: 40.5,-3.5 @@ -29060,15 +26374,11 @@ entities: - pos: 45.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9683 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9684 components: - pos: 41.5,-1.5 @@ -29079,29 +26389,21 @@ entities: - pos: 40.5,-1.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9686 components: - pos: 50.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9687 components: - pos: 50.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9688 components: - pos: 50.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9689 components: - pos: 50.5,-8.5 @@ -29132,141 +26434,101 @@ entities: - pos: 16.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9746 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9747 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9748 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9749 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9750 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9751 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9752 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9753 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9754 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9755 components: - pos: 11.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9756 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9757 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9758 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9759 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9760 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9761 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9762 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9763 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9764 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9765 components: - pos: 16.5,-7.5 @@ -29277,8 +26539,6 @@ entities: - pos: 16.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9767 components: - pos: 15.5,-7.5 @@ -29294,106 +26554,76 @@ entities: - pos: 13.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9770 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9771 components: - pos: 19.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9772 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9773 components: - pos: 21.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9774 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9776 components: - pos: 23.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9777 components: - pos: 23.5,2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9829 components: - pos: 35.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9830 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9831 components: - pos: 34.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9832 components: - pos: 36.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9833 components: - pos: 37.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9834 components: - pos: 38.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9835 components: - pos: 39.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9836 components: - pos: 33.5,-15.5 @@ -29424,239 +26654,171 @@ entities: - pos: 32.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9842 components: - pos: 31.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9843 components: - pos: 30.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9844 components: - pos: 29.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9845 components: - pos: 28.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9846 components: - pos: 33.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9847 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9848 components: - pos: 35.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9849 components: - pos: 36.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9850 components: - pos: 37.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9851 components: - pos: 38.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9852 components: - pos: 39.5,-19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9853 components: - pos: 39.5,-18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9854 components: - pos: 36.5,-20.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9855 components: - pos: 36.5,-21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9856 components: - pos: 51.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9857 components: - pos: 51.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9858 components: - pos: 50.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9859 components: - pos: 69.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9860 components: - pos: 70.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9861 components: - pos: 71.5,-13.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9862 components: - pos: 71.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9863 components: - pos: 71.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9864 components: - pos: 70.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9865 components: - pos: 69.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9866 components: - pos: 68.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9867 components: - pos: 71.5,-12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9868 components: - pos: 71.5,-11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9869 components: - pos: 71.5,-10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9870 components: - pos: 71.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9871 components: - pos: 71.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9872 components: - pos: 71.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9873 components: - pos: 71.5,-6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9874 components: - pos: 71.5,-5.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9875 components: - pos: 71.5,-4.5 @@ -29692,15 +26854,11 @@ entities: - pos: 75.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9882 components: - pos: 41.5,-37.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9883 components: - pos: 40.5,-37.5 @@ -29721,148 +26879,106 @@ entities: - pos: 38.5,-36.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9887 components: - pos: 38.5,-35.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9888 components: - pos: 38.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9889 components: - pos: 38.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9890 components: - pos: 38.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9891 components: - pos: 38.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9892 components: - pos: 38.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9893 components: - pos: 38.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9894 components: - pos: 38.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9895 components: - pos: 38.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9896 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9897 components: - pos: 39.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9898 components: - pos: 38.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9899 components: - pos: 39.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9900 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9901 components: - pos: 37.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9902 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9903 components: - pos: 36.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 9904 components: - pos: 36.5,-22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10130 components: - pos: 63.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10672 components: - pos: 64.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10673 components: - pos: 63.5,11.5 @@ -29883,22 +26999,16 @@ entities: - pos: 63.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10677 components: - pos: 61.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10678 components: - pos: 60.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10679 components: - pos: 62.5,13.5 @@ -29944,8 +27054,6 @@ entities: - pos: 66.5,17.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10688 components: - pos: 61.5,14.5 @@ -29991,8 +27099,6 @@ entities: - pos: 56.5,11.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10697 components: - pos: 56.5,14.5 @@ -30073,8 +27179,6 @@ entities: - pos: 43.5,12.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10784 components: - pos: 47.5,15.5 @@ -30110,78 +27214,56 @@ entities: - pos: 47.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10854 components: - pos: 47.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10855 components: - pos: 47.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10857 components: - pos: 47.5,24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10858 components: - pos: 47.5,25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10859 components: - pos: 47.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10860 components: - pos: 47.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10861 components: - pos: 48.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10862 components: - pos: 49.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10865 components: - pos: 50.5,27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10866 components: - pos: 51.5,22.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10867 components: - pos: 51.5,20.5 @@ -30202,8 +27284,6 @@ entities: - pos: 53.5,21.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10871 components: - pos: 53.5,19.5 @@ -30229,8 +27309,6 @@ entities: - pos: 57.5,19.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10879 components: - pos: 58.5,19.5 @@ -30256,8 +27334,6 @@ entities: - pos: 61.5,18.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10884 components: - pos: 60.5,17.5 @@ -30318,8 +27394,6 @@ entities: - pos: 65.5,23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10913 components: - pos: 41.5,0.5 @@ -30350,8 +27424,6 @@ entities: - pos: 43.5,3.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10919 components: - pos: 41.5,4.5 @@ -30377,22 +27449,16 @@ entities: - pos: 43.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11148 components: - pos: 72.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11149 components: - pos: 73.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11150 components: - pos: 72.5,-1.5 @@ -30478,22 +27544,16 @@ entities: - pos: 75.5,-4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11174 components: - pos: 70.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11175 components: - pos: 69.5,-9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11177 components: - pos: 68.5,-9.5 @@ -30579,15 +27639,11 @@ entities: - pos: 58.5,-7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11220 components: - pos: 58.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11226 components: - pos: 66.5,-4.5 @@ -30603,8 +27659,6 @@ entities: - pos: 66.5,-2.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11229 components: - pos: 66.5,-1.5 @@ -30615,8 +27669,6 @@ entities: - pos: 66.5,-0.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11231 components: - pos: 71.5,1.5 @@ -30657,8 +27709,6 @@ entities: - pos: 54.5,4.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 11239 components: - pos: 54.5,3.5 @@ -30739,57 +27789,41 @@ entities: - pos: 72.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12140 components: - pos: 73.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12141 components: - pos: 74.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12145 components: - pos: 75.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12146 components: - pos: 76.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12147 components: - pos: 77.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12148 components: - pos: 78.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12149 components: - pos: 78.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12171 components: - pos: 71.5,2.5 @@ -30845,120 +27879,86 @@ entities: - pos: 74.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12191 components: - pos: 69.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12192 components: - pos: 69.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12193 components: - pos: 68.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12194 components: - pos: 67.5,10.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12195 components: - pos: 67.5,9.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12196 components: - pos: 67.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12197 components: - pos: 66.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12198 components: - pos: 65.5,8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12199 components: - pos: 65.5,7.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12200 components: - pos: 65.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12202 components: - pos: 64.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12203 components: - pos: 63.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12204 components: - pos: 62.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12205 components: - pos: 61.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12206 components: - pos: 60.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12207 components: - pos: 59.5,6.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12208 components: - pos: 58.5,6.5 @@ -30994,29 +27994,21 @@ entities: - pos: 112.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12649 components: - pos: 111.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12650 components: - pos: 110.5,-15.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12651 components: - pos: 110.5,-14.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12935 components: - pos: 29.5,-38.5 @@ -31032,8 +28024,6 @@ entities: - pos: 30.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12938 components: - pos: 31.5,-39.5 @@ -31054,29 +28044,21 @@ entities: - pos: 34.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12942 components: - pos: 35.5,-39.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12943 components: - pos: 35.5,-40.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12944 components: - pos: 35.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12945 components: - pos: 35.5,-42.5 @@ -31097,8 +28079,6 @@ entities: - pos: 37.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 13143 components: - pos: 17.5,-41.5 @@ -31144,8 +28124,6 @@ entities: - pos: 21.5,-41.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 5628 @@ -36540,23 +33518,12 @@ entities: type: Transform - proto: ComputerCriminalRecords entities: - - uid: 2145 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,17.5 - parent: 2 - type: Transform - uid: 7981 components: - rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 type: Transform - - uid: 8315 - components: - - pos: 23.5,48.5 - parent: 2 - type: Transform - uid: 12083 components: - pos: 29.5,26.5 @@ -36724,6 +33691,17 @@ entities: type: Transform - proto: ComputerStationRecords entities: + - uid: 2145 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + type: Transform + - uid: 8315 + components: + - pos: 23.5,48.5 + parent: 2 + type: Transform - uid: 10274 components: - rot: -1.5707963267948966 rad @@ -37805,14 +34783,12 @@ entities: entities: - uid: 257 components: - - anchored: False - pos: 39.5,28.5 + - pos: 39.5,28.5 parent: 2 type: Transform - uid: 258 components: - - anchored: False - pos: 40.5,28.5 + - pos: 40.5,28.5 parent: 2 type: Transform - proto: DeskBell @@ -44938,24 +41914,18 @@ entities: pos: 47.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 381 components: - rot: -1.5707963267948966 rad pos: 47.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 382 components: - rot: -1.5707963267948966 rad pos: 47.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 383 components: - rot: -1.5707963267948966 rad @@ -44978,16 +41948,12 @@ entities: pos: 47.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 392 components: - rot: -1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 393 components: - rot: 1.5707963267948966 rad @@ -45002,8 +41968,6 @@ entities: pos: 35.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 889 components: - rot: 1.5707963267948966 rad @@ -45024,8 +41988,6 @@ entities: - pos: 39.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1039 components: - rot: -1.5707963267948966 rad @@ -45034,8 +41996,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1040 components: - rot: 1.5707963267948966 rad @@ -45044,8 +42004,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1149 components: - rot: 1.5707963267948966 rad @@ -45062,8 +42020,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1236 components: - rot: 3.141592653589793 rad @@ -45072,8 +42028,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1258 components: - rot: 3.141592653589793 rad @@ -45082,8 +42036,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1306 components: - pos: 31.5,-32.5 @@ -45193,16 +42145,12 @@ entities: pos: 38.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2441 components: - rot: -1.5707963267948966 rad pos: 47.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2609 components: - rot: -1.5707963267948966 rad @@ -45235,15 +42183,11 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3982 components: - pos: 39.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4014 components: - rot: 1.5707963267948966 rad @@ -45252,8 +42196,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4015 components: - rot: -1.5707963267948966 rad @@ -45262,8 +42204,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4016 components: - rot: 1.5707963267948966 rad @@ -45272,8 +42212,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4017 components: - pos: 40.5,-22.5 @@ -45281,8 +42219,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4028 components: - rot: 1.5707963267948966 rad @@ -45291,8 +42227,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4031 components: - rot: -1.5707963267948966 rad @@ -45301,8 +42235,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4050 components: - rot: 3.141592653589793 rad @@ -45327,8 +42259,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4177 components: - rot: 3.141592653589793 rad @@ -45337,8 +42267,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4219 components: - pos: 41.5,-0.5 @@ -45352,15 +42280,11 @@ entities: pos: 34.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4366 components: - pos: 37.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4443 components: - pos: 32.5,-35.5 @@ -45376,8 +42300,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4914 components: - rot: 1.5707963267948966 rad @@ -45707,8 +42629,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10644 components: - rot: 1.5707963267948966 rad @@ -45741,8 +42661,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11579 components: - pos: 41.5,-47.5 @@ -45750,8 +42668,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11707 components: - rot: -1.5707963267948966 rad @@ -45760,8 +42676,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11720 components: - rot: 1.5707963267948966 rad @@ -45863,8 +42777,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12869 components: - rot: -1.5707963267948966 rad @@ -45873,8 +42785,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12870 components: - rot: 3.141592653589793 rad @@ -45883,24 +42793,18 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12875 components: - rot: 3.141592653589793 rad pos: 41.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12881 components: - rot: 3.141592653589793 rad pos: 44.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12883 components: - pos: 49.5,-44.5 @@ -45954,8 +42858,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4021 components: - pos: 55.5,-5.5 @@ -46116,8 +43018,6 @@ entities: pos: 42.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 107 components: - pos: 11.5,-37.5 @@ -46125,8 +43025,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 117 components: - rot: 3.141592653589793 rad @@ -46157,8 +43055,6 @@ entities: pos: 41.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 143 components: - rot: 3.141592653589793 rad @@ -46221,40 +43117,30 @@ entities: pos: 44.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 318 components: - rot: 1.5707963267948966 rad pos: 45.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 319 components: - rot: 1.5707963267948966 rad pos: 44.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 321 components: - rot: 1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 322 components: - rot: 1.5707963267948966 rad pos: 42.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 352 components: - pos: 3.5,4.5 @@ -46317,48 +43203,36 @@ entities: pos: 46.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 407 components: - rot: 1.5707963267948966 rad pos: 41.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 409 components: - rot: 1.5707963267948966 rad pos: 45.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 410 components: - rot: 1.5707963267948966 rad pos: 44.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 415 components: - rot: 1.5707963267948966 rad pos: 43.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 416 components: - rot: 1.5707963267948966 rad pos: 46.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 425 components: - rot: -1.5707963267948966 rad @@ -46383,8 +43257,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 439 components: - rot: -1.5707963267948966 rad @@ -46393,8 +43265,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 440 components: - rot: 1.5707963267948966 rad @@ -46410,8 +43280,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 444 components: - pos: 25.5,-17.5 @@ -46432,8 +43300,6 @@ entities: pos: 44.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 512 components: - rot: 1.5707963267948966 rad @@ -46495,55 +43361,41 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 676 components: - rot: 1.5707963267948966 rad pos: 43.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 677 components: - rot: 1.5707963267948966 rad pos: 42.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 678 components: - rot: -1.5707963267948966 rad pos: 38.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 743 components: - rot: -1.5707963267948966 rad pos: 36.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 744 components: - pos: 39.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 755 components: - rot: -1.5707963267948966 rad pos: 37.5,-34.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 817 components: - pos: 42.5,2.5 @@ -46559,8 +43411,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 820 components: - pos: 31.5,-25.5 @@ -46568,8 +43418,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 825 components: - pos: 42.5,3.5 @@ -46597,48 +43445,36 @@ entities: pos: 42.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 839 components: - rot: 1.5707963267948966 rad pos: 46.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 842 components: - rot: 1.5707963267948966 rad pos: 45.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 850 components: - rot: 1.5707963267948966 rad pos: 46.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 851 components: - rot: 1.5707963267948966 rad pos: 45.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 869 components: - rot: 1.5707963267948966 rad pos: 44.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 879 components: - rot: 3.141592653589793 rad @@ -46647,8 +43483,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 887 components: - rot: 3.141592653589793 rad @@ -46665,8 +43499,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 890 components: - rot: 3.141592653589793 rad @@ -46721,8 +43553,6 @@ entities: pos: 43.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 901 components: - rot: 1.5707963267948966 rad @@ -46809,8 +43639,6 @@ entities: - pos: 39.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1037 components: - rot: -1.5707963267948966 rad @@ -46819,8 +43647,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1038 components: - rot: -1.5707963267948966 rad @@ -46829,8 +43655,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1043 components: - pos: 25.5,-0.5 @@ -46914,8 +43738,6 @@ entities: - pos: 38.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1212 components: - rot: 1.5707963267948966 rad @@ -46948,8 +43770,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1222 components: - rot: 1.5707963267948966 rad @@ -46958,8 +43778,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1224 components: - rot: 1.5707963267948966 rad @@ -46968,8 +43786,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1226 components: - rot: -1.5707963267948966 rad @@ -46978,32 +43794,24 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1228 components: - rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1229 components: - rot: -1.5707963267948966 rad pos: 44.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1230 components: - rot: -1.5707963267948966 rad pos: 43.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1237 components: - rot: 3.141592653589793 rad @@ -47012,8 +43820,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1245 components: - rot: 3.141592653589793 rad @@ -47022,8 +43828,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1249 components: - rot: -1.5707963267948966 rad @@ -47032,48 +43836,36 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1300 components: - rot: 1.5707963267948966 rad pos: 45.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1301 components: - rot: 1.5707963267948966 rad pos: 42.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1302 components: - rot: 1.5707963267948966 rad pos: 46.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1303 components: - rot: 1.5707963267948966 rad pos: 44.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1346 components: - rot: 1.5707963267948966 rad pos: 39.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1371 components: - pos: 31.5,-33.5 @@ -47086,8 +43878,6 @@ entities: - pos: 39.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1485 components: - pos: 31.5,-34.5 @@ -47517,8 +44307,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1719 components: - pos: 25.5,33.5 @@ -47767,8 +44555,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1845 components: - rot: 1.5707963267948966 rad @@ -48251,8 +45037,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1934 components: - pos: 42.5,12.5 @@ -48290,8 +45074,6 @@ entities: pos: 40.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1959 components: - rot: 3.141592653589793 rad @@ -48394,8 +45176,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2032 components: - pos: 11.5,-39.5 @@ -48403,8 +45183,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2052 components: - rot: 1.5707963267948966 rad @@ -48420,8 +45198,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2063 components: - pos: 25.5,-9.5 @@ -48435,32 +45211,24 @@ entities: pos: 41.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2070 components: - rot: -1.5707963267948966 rad pos: 43.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2071 components: - rot: -1.5707963267948966 rad pos: 43.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2148 components: - rot: -1.5707963267948966 rad pos: 42.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2161 components: - rot: 1.5707963267948966 rad @@ -48477,8 +45245,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2316 components: - pos: 25.5,-12.5 @@ -48554,24 +45320,18 @@ entities: pos: 44.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2390 components: - rot: -1.5707963267948966 rad pos: 42.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2391 components: - rot: -1.5707963267948966 rad pos: 44.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2396 components: - pos: 25.5,-6.5 @@ -48679,32 +45439,24 @@ entities: pos: 43.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2438 components: - rot: 1.5707963267948966 rad pos: 42.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2439 components: - rot: 1.5707963267948966 rad pos: 41.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2440 components: - rot: 1.5707963267948966 rad pos: 41.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2452 components: - pos: 27.5,44.5 @@ -48825,8 +45577,6 @@ entities: pos: 42.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2731 components: - rot: 3.141592653589793 rad @@ -48841,8 +45591,6 @@ entities: pos: 40.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 3553 components: - rot: 1.5707963267948966 rad @@ -48946,8 +45694,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3955 components: - pos: 38.5,-46.5 @@ -48955,8 +45701,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3958 components: - rot: -1.5707963267948966 rad @@ -49010,8 +45754,6 @@ entities: - pos: 39.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4003 components: - rot: 3.141592653589793 rad @@ -49036,16 +45778,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4008 components: - rot: -1.5707963267948966 rad pos: 41.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4009 components: - pos: 19.5,12.5 @@ -49100,8 +45838,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4043 components: - rot: 1.5707963267948966 rad @@ -49132,16 +45868,12 @@ entities: pos: 41.5,-23.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4052 components: - rot: -1.5707963267948966 rad pos: 44.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4058 components: - rot: -1.5707963267948966 rad @@ -49150,8 +45882,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4060 components: - rot: -1.5707963267948966 rad @@ -49200,8 +45930,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4068 components: - pos: 25.5,-25.5 @@ -49217,8 +45945,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4070 components: - rot: -1.5707963267948966 rad @@ -49249,8 +45975,6 @@ entities: pos: 41.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4083 components: - rot: 3.141592653589793 rad @@ -49259,8 +45983,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4084 components: - rot: -1.5707963267948966 rad @@ -49269,8 +45991,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4085 components: - pos: 19.5,10.5 @@ -49284,24 +46004,18 @@ entities: pos: 42.5,-25.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4095 components: - rot: -1.5707963267948966 rad pos: 44.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4097 components: - rot: -1.5707963267948966 rad pos: 43.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4103 components: - rot: 1.5707963267948966 rad @@ -49390,8 +46104,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4131 components: - rot: 1.5707963267948966 rad @@ -49400,40 +46112,30 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4133 components: - rot: 1.5707963267948966 rad pos: 44.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4135 components: - rot: 3.141592653589793 rad pos: 40.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4136 components: - rot: 1.5707963267948966 rad pos: 43.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4140 components: - rot: 1.5707963267948966 rad pos: 42.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4144 components: - rot: 1.5707963267948966 rad @@ -49442,24 +46144,18 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4147 components: - rot: 3.141592653589793 rad pos: 40.5,-30.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4151 components: - rot: 1.5707963267948966 rad pos: 41.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4155 components: - rot: 3.141592653589793 rad @@ -49474,8 +46170,6 @@ entities: pos: 40.5,-32.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4159 components: - rot: 1.5707963267948966 rad @@ -49484,8 +46178,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4160 components: - rot: 3.141592653589793 rad @@ -49547,8 +46239,6 @@ entities: - pos: 39.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4184 components: - pos: 46.5,-3.5 @@ -49572,8 +46262,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4192 components: - rot: 3.141592653589793 rad @@ -49898,48 +46586,36 @@ entities: pos: 43.5,-31.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4269 components: - rot: 1.5707963267948966 rad pos: 41.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4270 components: - rot: 1.5707963267948966 rad pos: 41.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4271 components: - rot: 1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4272 components: - rot: 1.5707963267948966 rad pos: 45.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4273 components: - rot: 1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4274 components: - rot: 3.141592653589793 rad @@ -49954,8 +46630,6 @@ entities: pos: 42.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4281 components: - rot: 1.5707963267948966 rad @@ -49979,8 +46653,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4285 components: - rot: -1.5707963267948966 rad @@ -50041,8 +46713,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4353 components: - rot: -1.5707963267948966 rad @@ -50051,43 +46721,31 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4356 components: - pos: 35.5,-33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4357 components: - pos: 35.5,-29.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4358 components: - pos: 35.5,-28.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4359 components: - pos: 35.5,-27.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4360 components: - pos: 35.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4444 components: - pos: 32.5,-36.5 @@ -50137,8 +46795,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4462 components: - pos: 20.5,-36.5 @@ -50153,8 +46809,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4480 components: - rot: 1.5707963267948966 rad @@ -50163,8 +46817,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4493 components: - rot: 1.5707963267948966 rad @@ -50173,8 +46825,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4495 components: - rot: 1.5707963267948966 rad @@ -50183,8 +46833,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4970 components: - pos: 27.5,34.5 @@ -50279,8 +46927,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5192 components: - pos: 55.5,-7.5 @@ -50307,8 +46953,6 @@ entities: - pos: 79.5,-8.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 5259 components: - pos: 79.5,-7.5 @@ -50376,8 +47020,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5670 components: - rot: -1.5707963267948966 rad @@ -50409,8 +47051,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5683 components: - pos: 38.5,-44.5 @@ -50418,8 +47058,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6425 components: - rot: 3.141592653589793 rad @@ -50480,8 +47118,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6503 components: - pos: 27.5,39.5 @@ -50497,8 +47133,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6508 components: - pos: 46.5,-4.5 @@ -50867,8 +47501,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6917 components: - pos: 10.5,-35.5 @@ -51607,8 +48239,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8308 components: - pos: 27.5,37.5 @@ -51631,8 +48261,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8321 components: - pos: 27.5,42.5 @@ -51760,8 +48388,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8579 components: - rot: -1.5707963267948966 rad @@ -51802,8 +48428,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8587 components: - rot: -1.5707963267948966 rad @@ -51836,8 +48460,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8593 components: - rot: -1.5707963267948966 rad @@ -52096,8 +48718,6 @@ entities: pos: 42.5,33.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 8678 components: - rot: 3.141592653589793 rad @@ -52122,8 +48742,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8683 components: - rot: 3.141592653589793 rad @@ -52374,8 +48992,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9630 components: - rot: 3.141592653589793 rad @@ -52408,8 +49024,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9634 components: - rot: 3.141592653589793 rad @@ -52611,8 +49225,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10134 components: - pos: 57.5,-5.5 @@ -52627,8 +49239,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10146 components: - pos: 1.5,-8.5 @@ -52636,8 +49246,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10147 components: - pos: 1.5,-7.5 @@ -52645,8 +49253,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10148 components: - pos: 1.5,-6.5 @@ -52654,8 +49260,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10149 components: - rot: -1.5707963267948966 rad @@ -52808,8 +49412,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10176 components: - rot: -1.5707963267948966 rad @@ -53170,8 +49772,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10345 components: - rot: -1.5707963267948966 rad @@ -53307,8 +49907,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10376 components: - rot: 3.141592653589793 rad @@ -53355,8 +49953,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10387 components: - pos: 63.5,11.5 @@ -53436,8 +50032,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10397 components: - rot: 3.141592653589793 rad @@ -53514,8 +50108,6 @@ entities: - pos: 63.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10431 components: - pos: 63.5,27.5 @@ -53531,8 +50123,6 @@ entities: - pos: 64.5,26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 10434 components: - pos: 64.5,25.5 @@ -53551,8 +50141,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10641 components: - rot: -1.5707963267948966 rad @@ -53561,8 +50149,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10642 components: - rot: 3.141592653589793 rad @@ -53965,8 +50551,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11528 components: - rot: 3.141592653589793 rad @@ -53999,8 +50583,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11699 components: - rot: 1.5707963267948966 rad @@ -54017,8 +50599,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11701 components: - rot: 1.5707963267948966 rad @@ -54027,8 +50607,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11702 components: - pos: 71.5,-8.5 @@ -54036,8 +50614,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11703 components: - pos: 71.5,-7.5 @@ -54045,8 +50621,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11704 components: - pos: 71.5,-6.5 @@ -54054,8 +50628,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11705 components: - pos: 71.5,-5.5 @@ -54063,8 +50635,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11706 components: - pos: 71.5,-4.5 @@ -54150,8 +50720,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11727 components: - pos: 72.5,1.5 @@ -54301,8 +50869,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11935 components: - pos: 60.5,-9.5 @@ -54342,8 +50908,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12859 components: - rot: 3.141592653589793 rad @@ -54352,8 +50916,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12860 components: - rot: 3.141592653589793 rad @@ -54362,8 +50924,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12867 components: - pos: 43.5,-50.5 @@ -54371,8 +50931,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12868 components: - pos: 41.5,-50.5 @@ -54380,24 +50938,18 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12879 components: - rot: 3.141592653589793 rad pos: 44.5,-44.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12880 components: - rot: 1.5707963267948966 rad pos: 45.5,-45.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12887 components: - rot: -1.5707963267948966 rad @@ -54432,8 +50984,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 39 components: - rot: 1.5707963267948966 rad @@ -54514,8 +51064,6 @@ entities: pos: 38.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 1148 components: - rot: -1.5707963267948966 rad @@ -54531,8 +51079,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1221 components: - rot: 3.141592653589793 rad @@ -54541,8 +51087,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1225 components: - pos: 43.5,-44.5 @@ -54550,8 +51094,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1234 components: - rot: -1.5707963267948966 rad @@ -54560,8 +51102,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1257 components: - pos: 41.5,-44.5 @@ -54569,8 +51109,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1259 components: - pos: 26.5,-28.5 @@ -54736,8 +51274,6 @@ entities: pos: 39.5,-26.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 2529 components: - rot: 3.141592653589793 rad @@ -54770,8 +51306,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4002 components: - rot: 1.5707963267948966 rad @@ -54878,15 +51412,11 @@ entities: - pos: 36.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4368 components: - pos: 35.5,-24.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 4494 components: - pos: 47.5,-47.5 @@ -54908,8 +51438,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4499 components: - pos: 46.5,-47.5 @@ -54975,8 +51503,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5113 components: - rot: -1.5707963267948966 rad @@ -55470,8 +51996,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10142 components: - rot: 1.5707963267948966 rad @@ -55480,8 +52004,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10143 components: - rot: 1.5707963267948966 rad @@ -55490,8 +52012,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10144 components: - rot: -1.5707963267948966 rad @@ -55500,8 +52020,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10157 components: - rot: 1.5707963267948966 rad @@ -55525,8 +52043,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10336 components: - pos: 62.5,14.5 @@ -55619,8 +52135,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11710 components: - rot: -1.5707963267948966 rad @@ -55658,8 +52172,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12864 components: - rot: -1.5707963267948966 rad @@ -55668,8 +52180,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12865 components: - rot: 1.5707963267948966 rad @@ -55678,8 +52188,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12866 components: - rot: 1.5707963267948966 rad @@ -55688,32 +52196,24 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12876 components: - rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12877 components: - rot: 3.141592653589793 rad pos: 43.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12878 components: - rot: -1.5707963267948966 rad pos: 44.5,-43.5 parent: 2 type: Transform - - enabled: True - type: AmbientSound - uid: 12886 components: - pos: 47.5,-44.5 @@ -55744,8 +52244,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - proto: GasPort entities: - uid: 4010 @@ -56060,8 +52558,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#03FCD3FF' type: AtmosPipeColor - uid: 4150 @@ -56072,8 +52568,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4250 @@ -56084,8 +52578,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11586 @@ -56096,8 +52588,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVentPump @@ -56108,8 +52598,6 @@ entities: pos: 26.5,-29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1560 @@ -56121,8 +52609,6 @@ entities: - ShutdownSubscribers: - 1520 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1625 @@ -56134,8 +52620,6 @@ entities: - ShutdownSubscribers: - 1017 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2393 @@ -56143,8 +52627,6 @@ entities: - pos: 30.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3692 @@ -56156,8 +52638,6 @@ entities: - ShutdownSubscribers: - 12484 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4027 @@ -56169,8 +52649,6 @@ entities: - ShutdownSubscribers: - 138 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4035 @@ -56182,8 +52660,6 @@ entities: - ShutdownSubscribers: - 195 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4460 @@ -56195,8 +52671,6 @@ entities: - ShutdownSubscribers: - 170 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4465 @@ -56205,8 +52679,6 @@ entities: pos: 20.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4551 @@ -56218,8 +52690,6 @@ entities: - ShutdownSubscribers: - 11990 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5103 @@ -56230,8 +52700,6 @@ entities: - ShutdownSubscribers: - 12486 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5189 @@ -56243,8 +52711,6 @@ entities: - ShutdownSubscribers: - 11731 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5422 @@ -56253,8 +52719,6 @@ entities: pos: 11.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5533 @@ -56263,8 +52727,6 @@ entities: pos: 36.5,42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5678 @@ -56276,8 +52738,6 @@ entities: - ShutdownSubscribers: - 5680 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5964 @@ -56289,8 +52749,6 @@ entities: - ShutdownSubscribers: - 6158 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6570 @@ -56302,8 +52760,6 @@ entities: - ShutdownSubscribers: - 6682 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6590 @@ -56312,8 +52768,6 @@ entities: pos: 30.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6593 components: - rot: 3.141592653589793 rad @@ -56323,8 +52777,6 @@ entities: - ShutdownSubscribers: - 6632 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6608 @@ -56336,8 +52788,6 @@ entities: - ShutdownSubscribers: - 6632 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6609 @@ -56349,8 +52799,6 @@ entities: - ShutdownSubscribers: - 360 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6620 @@ -56364,8 +52812,6 @@ entities: - 5077 - 8316 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6627 @@ -56374,8 +52820,6 @@ entities: pos: 34.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6640 @@ -56386,8 +52830,6 @@ entities: - ShutdownSubscribers: - 11508 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6778 @@ -56399,8 +52841,6 @@ entities: - ShutdownSubscribers: - 8011 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6804 @@ -56408,8 +52848,6 @@ entities: - pos: 26.5,-16.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6927 @@ -56421,8 +52859,6 @@ entities: - ShutdownSubscribers: - 12473 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6951 @@ -56434,8 +52870,6 @@ entities: - ShutdownSubscribers: - 12447 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7469 @@ -56447,8 +52881,6 @@ entities: - ShutdownSubscribers: - 7839 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7801 @@ -56457,8 +52889,6 @@ entities: pos: 49.5,24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7838 components: - rot: 1.5707963267948966 rad @@ -56468,8 +52898,6 @@ entities: - ShutdownSubscribers: - 2124 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8009 @@ -56480,8 +52908,6 @@ entities: - ShutdownSubscribers: - 8011 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8016 @@ -56493,8 +52919,6 @@ entities: - ShutdownSubscribers: - 10204 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8220 @@ -56503,8 +52927,6 @@ entities: pos: 9.5,19.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8222 @@ -56515,8 +52937,6 @@ entities: - ShutdownSubscribers: - 8239 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8236 @@ -56527,8 +52947,6 @@ entities: - ShutdownSubscribers: - 12520 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8240 @@ -56536,8 +52954,6 @@ entities: - pos: 26.5,21.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8242 @@ -56545,8 +52961,6 @@ entities: - pos: 22.5,21.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8296 @@ -56558,8 +52972,6 @@ entities: - ShutdownSubscribers: - 12537 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8301 @@ -56568,8 +52980,6 @@ entities: pos: 23.5,41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8344 @@ -56578,8 +52988,6 @@ entities: pos: 31.5,42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8575 @@ -56590,8 +52998,6 @@ entities: - ShutdownSubscribers: - 12528 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8596 @@ -56600,8 +53006,6 @@ entities: pos: 43.5,24.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8597 @@ -56613,8 +53017,6 @@ entities: - ShutdownSubscribers: - 12530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8607 @@ -56622,8 +53024,6 @@ entities: - pos: 39.5,27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8629 @@ -56634,8 +53034,6 @@ entities: - ShutdownSubscribers: - 12528 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8673 @@ -56643,8 +53041,6 @@ entities: - pos: 40.5,32.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8684 @@ -56655,8 +53051,6 @@ entities: - ShutdownSubscribers: - 12532 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8700 @@ -56679,8 +53073,6 @@ entities: - pos: 32.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9558 @@ -56692,8 +53084,6 @@ entities: - ShutdownSubscribers: - 12539 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9570 @@ -56704,8 +53094,6 @@ entities: - ShutdownSubscribers: - 9587 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9581 @@ -56713,8 +53101,6 @@ entities: - pos: 18.5,40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9582 @@ -56723,8 +53109,6 @@ entities: pos: 14.5,36.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 9635 @@ -56735,8 +53119,6 @@ entities: - ShutdownSubscribers: - 9637 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10163 @@ -56745,8 +53127,6 @@ entities: pos: 7.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10170 @@ -56755,8 +53135,6 @@ entities: pos: 1.5,-12.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10171 @@ -56768,8 +53146,6 @@ entities: - ShutdownSubscribers: - 10203 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10172 @@ -56781,8 +53157,6 @@ entities: - ShutdownSubscribers: - 10201 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10173 @@ -56791,8 +53165,6 @@ entities: pos: -1.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10178 @@ -56804,8 +53176,6 @@ entities: - ShutdownSubscribers: - 10202 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10214 @@ -56817,8 +53187,6 @@ entities: - ShutdownSubscribers: - 10207 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10248 @@ -56830,8 +53198,6 @@ entities: - ShutdownSubscribers: - 10250 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10331 @@ -56842,8 +53208,6 @@ entities: - ShutdownSubscribers: - 5101 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10346 @@ -56855,8 +53219,6 @@ entities: - ShutdownSubscribers: - 12562 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10347 @@ -56868,8 +53230,6 @@ entities: - ShutdownSubscribers: - 182 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10351 @@ -56881,8 +53241,6 @@ entities: - ShutdownSubscribers: - 12548 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10352 @@ -56894,8 +53252,6 @@ entities: - ShutdownSubscribers: - 1647 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10355 @@ -56907,8 +53263,6 @@ entities: - ShutdownSubscribers: - 10419 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10356 @@ -56920,8 +53274,6 @@ entities: - ShutdownSubscribers: - 2296 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10358 @@ -56933,8 +53285,6 @@ entities: - ShutdownSubscribers: - 151 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 10643 @@ -56946,8 +53296,6 @@ entities: - ShutdownSubscribers: - 10653 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11365 @@ -56959,8 +53307,6 @@ entities: - ShutdownSubscribers: - 12504 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11366 @@ -56972,8 +53318,6 @@ entities: - ShutdownSubscribers: - 12163 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11514 @@ -56982,8 +53326,6 @@ entities: pos: 64.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11515 @@ -56994,8 +53336,6 @@ entities: - ShutdownSubscribers: - 11730 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11516 @@ -57004,8 +53344,6 @@ entities: pos: 66.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11709 @@ -57016,8 +53354,6 @@ entities: - ShutdownSubscribers: - 12503 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11743 @@ -57029,8 +53365,6 @@ entities: - ShutdownSubscribers: - 12488 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11924 @@ -57039,8 +53373,6 @@ entities: pos: 56.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11937 @@ -57049,8 +53381,6 @@ entities: pos: 61.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11945 @@ -57061,8 +53391,6 @@ entities: - ShutdownSubscribers: - 12152 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11956 @@ -57073,8 +53401,6 @@ entities: - ShutdownSubscribers: - 12506 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -57088,8 +53414,6 @@ entities: - ShutdownSubscribers: - 1017 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1324 @@ -57098,8 +53422,6 @@ entities: pos: 10.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3475 @@ -57107,8 +53429,6 @@ entities: - pos: 79.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 3693 components: - rot: -1.5707963267948966 rad @@ -57118,8 +53438,6 @@ entities: - ShutdownSubscribers: - 12484 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4092 @@ -57131,8 +53449,6 @@ entities: - ShutdownSubscribers: - 138 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4183 @@ -57144,8 +53460,6 @@ entities: - ShutdownSubscribers: - 12473 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4447 @@ -57157,8 +53471,6 @@ entities: - ShutdownSubscribers: - 170 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4464 @@ -57167,8 +53479,6 @@ entities: pos: 22.5,-38.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4552 @@ -57179,8 +53489,6 @@ entities: - ShutdownSubscribers: - 11990 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4553 @@ -57189,8 +53497,6 @@ entities: pos: 26.5,-28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5679 @@ -57201,8 +53507,6 @@ entities: - ShutdownSubscribers: - 5680 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5968 @@ -57214,8 +53518,6 @@ entities: - ShutdownSubscribers: - 6158 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6571 @@ -57227,8 +53529,6 @@ entities: - ShutdownSubscribers: - 6682 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6595 @@ -57240,8 +53540,6 @@ entities: - ShutdownSubscribers: - 6632 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6610 @@ -57253,8 +53551,6 @@ entities: - ShutdownSubscribers: - 6632 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6614 @@ -57263,8 +53559,6 @@ entities: pos: 29.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6621 @@ -57278,8 +53572,6 @@ entities: - 5077 - 8316 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6622 @@ -57291,8 +53583,6 @@ entities: - ShutdownSubscribers: - 360 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6628 @@ -57304,8 +53594,6 @@ entities: - ShutdownSubscribers: - 11508 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6629 @@ -57314,8 +53602,6 @@ entities: pos: 34.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6805 @@ -57323,8 +53609,6 @@ entities: - pos: 26.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6949 @@ -57336,8 +53620,6 @@ entities: - ShutdownSubscribers: - 195 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6950 @@ -57349,8 +53631,6 @@ entities: - ShutdownSubscribers: - 12447 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7472 @@ -57362,8 +53642,6 @@ entities: - ShutdownSubscribers: - 7839 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7708 @@ -57375,8 +53653,6 @@ entities: - ShutdownSubscribers: - 8011 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7837 @@ -57388,8 +53664,6 @@ entities: - ShutdownSubscribers: - 2124 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8010 @@ -57401,8 +53675,6 @@ entities: - ShutdownSubscribers: - 8011 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8017 @@ -57414,8 +53686,6 @@ entities: - ShutdownSubscribers: - 10204 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8221 @@ -57424,8 +53694,6 @@ entities: pos: 8.5,17.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8229 @@ -57436,8 +53704,6 @@ entities: - ShutdownSubscribers: - 8239 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8235 @@ -57448,8 +53714,6 @@ entities: - ShutdownSubscribers: - 12520 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8243 @@ -57457,8 +53721,6 @@ entities: - pos: 23.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8564 @@ -57470,8 +53732,6 @@ entities: - ShutdownSubscribers: - 12528 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8595 @@ -57480,8 +53740,6 @@ entities: pos: 43.5,23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8598 @@ -57493,8 +53751,6 @@ entities: - ShutdownSubscribers: - 12530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8610 @@ -57502,8 +53758,6 @@ entities: - pos: 40.5,26.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8630 @@ -57515,8 +53769,6 @@ entities: - ShutdownSubscribers: - 12528 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8674 @@ -57525,8 +53777,6 @@ entities: pos: 40.5,33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 8685 components: - pos: 41.5,18.5 @@ -57535,8 +53785,6 @@ entities: - ShutdownSubscribers: - 12532 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8810 @@ -57545,8 +53793,6 @@ entities: pos: 26.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9359 @@ -57555,8 +53801,6 @@ entities: pos: 30.5,14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9546 @@ -57567,8 +53811,6 @@ entities: - ShutdownSubscribers: - 12537 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9554 @@ -57577,8 +53819,6 @@ entities: pos: 22.5,41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9557 @@ -57590,8 +53830,6 @@ entities: - ShutdownSubscribers: - 12539 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9569 @@ -57603,8 +53841,6 @@ entities: - ShutdownSubscribers: - 9587 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9636 @@ -57615,8 +53851,6 @@ entities: - ShutdownSubscribers: - 9637 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10128 @@ -57628,8 +53862,6 @@ entities: - ShutdownSubscribers: - 11731 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10179 @@ -57638,8 +53870,6 @@ entities: pos: -0.5,-3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10180 @@ -57651,8 +53881,6 @@ entities: - ShutdownSubscribers: - 10201 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10181 @@ -57664,8 +53892,6 @@ entities: - ShutdownSubscribers: - 10202 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10182 @@ -57677,8 +53903,6 @@ entities: - ShutdownSubscribers: - 10203 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10215 @@ -57690,8 +53914,6 @@ entities: - ShutdownSubscribers: - 10207 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10217 @@ -57700,8 +53922,6 @@ entities: pos: 29.5,-28.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10249 @@ -57712,8 +53932,6 @@ entities: - ShutdownSubscribers: - 10250 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10365 @@ -57725,8 +53943,6 @@ entities: - ShutdownSubscribers: - 12486 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10366 @@ -57738,8 +53954,6 @@ entities: - ShutdownSubscribers: - 12548 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10375 @@ -57751,8 +53965,6 @@ entities: - ShutdownSubscribers: - 2296 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10400 @@ -57764,8 +53976,6 @@ entities: - ShutdownSubscribers: - 182 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10401 @@ -57777,8 +53987,6 @@ entities: - ShutdownSubscribers: - 12562 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10402 @@ -57790,8 +53998,6 @@ entities: - ShutdownSubscribers: - 5101 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10403 @@ -57802,8 +54008,6 @@ entities: - ShutdownSubscribers: - 151 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10411 @@ -57815,8 +54019,6 @@ entities: - ShutdownSubscribers: - 10419 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10412 @@ -57828,8 +54030,6 @@ entities: - ShutdownSubscribers: - 1647 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 10652 @@ -57841,8 +54041,6 @@ entities: - ShutdownSubscribers: - 10653 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11367 @@ -57854,8 +54052,6 @@ entities: - ShutdownSubscribers: - 12163 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11719 @@ -57867,8 +54063,6 @@ entities: - ShutdownSubscribers: - 11730 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11726 @@ -57877,8 +54071,6 @@ entities: pos: 67.5,-1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11729 @@ -57890,8 +54082,6 @@ entities: - ShutdownSubscribers: - 12503 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11744 @@ -57903,8 +54093,6 @@ entities: - ShutdownSubscribers: - 12488 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11923 @@ -57912,8 +54100,6 @@ entities: - pos: 60.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11936 @@ -57922,8 +54108,6 @@ entities: pos: 60.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11938 @@ -57934,8 +54118,6 @@ entities: - ShutdownSubscribers: - 12152 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 11957 @@ -57946,8 +54128,6 @@ entities: - ShutdownSubscribers: - 12506 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GasVolumePump @@ -63303,8 +59483,6 @@ entities: - pos: 70.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 5380 @@ -65138,8 +61316,6 @@ entities: pos: 44.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 441 components: - rot: -1.5707963267948966 rad @@ -65162,24 +61338,18 @@ entities: pos: 25.5,-15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1473 components: - rot: -1.5707963267948966 rad pos: 32.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1491 components: - rot: 1.5707963267948966 rad pos: 28.5,-41.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 1765 components: - rot: -1.5707963267948966 rad @@ -65374,8 +61544,6 @@ entities: - pos: 51.5,-4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5080 components: - pos: 50.5,4.5 @@ -65388,50 +61556,36 @@ entities: - pos: 45.5,-23.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5128 components: - pos: 45.5,-25.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5132 components: - pos: 45.5,-27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5133 components: - pos: 45.5,-29.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5134 components: - pos: 45.5,-31.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5152 components: - pos: 45.5,-33.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5154 components: - pos: 30.5,2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5164 components: - rot: 3.141592653589793 rad @@ -65461,40 +61615,30 @@ entities: - pos: 40.5,-42.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5218 components: - rot: 3.141592653589793 rad pos: 46.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5219 components: - rot: 3.141592653589793 rad pos: 38.5,-40.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5220 components: - rot: -1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5221 components: - rot: -1.5707963267948966 rad pos: 43.5,-22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5275 components: - rot: -1.5707963267948966 rad @@ -65724,55 +61868,41 @@ entities: pos: 32.5,-7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6652 components: - rot: -1.5707963267948966 rad pos: 39.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6653 components: - rot: 1.5707963267948966 rad pos: 41.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6654 components: - pos: 31.5,-2.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6657 components: - rot: 1.5707963267948966 rad pos: 33.5,-9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6658 components: - rot: -1.5707963267948966 rad pos: 40.5,-11.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 6660 components: - rot: -1.5707963267948966 rad pos: 47.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7034 components: - pos: 4.5,-11.5 @@ -65785,15 +61915,11 @@ entities: - pos: 37.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7295 components: - pos: 22.5,1.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7344 components: - rot: 1.5707963267948966 rad @@ -65832,8 +61958,6 @@ entities: pos: -2.5,-5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7527 components: - pos: 50.5,11.5 @@ -65959,8 +62083,6 @@ entities: pos: -16.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7720 components: - rot: 3.141592653589793 rad @@ -65975,24 +62097,18 @@ entities: pos: -8.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7724 components: - rot: 3.141592653589793 rad pos: -21.5,-14.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7726 components: - rot: -1.5707963267948966 rad pos: -5.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7768 components: - rot: 1.5707963267948966 rad @@ -66071,31 +62187,23 @@ entities: - pos: -6.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7958 components: - pos: -0.5,0.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7959 components: - rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7960 components: - rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 8129 components: - pos: 37.5,-22.5 @@ -66226,8 +62334,6 @@ entities: pos: 9.5,18.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 9061 components: - rot: 1.5707963267948966 rad @@ -66257,38 +62363,28 @@ entities: pos: 51.5,-8.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10450 components: - rot: 1.5707963267948966 rad pos: 62.5,27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10451 components: - rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10452 components: - pos: 58.5,27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10453 components: - pos: 54.5,27.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 10708 components: - rot: 3.141592653589793 rad @@ -66333,91 +62429,67 @@ entities: pos: 60.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11856 components: - rot: -1.5707963267948966 rad pos: 63.5,-10.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11857 components: - rot: -1.5707963267948966 rad pos: 62.5,-6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11859 components: - pos: 60.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11862 components: - pos: 63.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11864 components: - pos: 66.5,4.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11865 components: - rot: 1.5707963267948966 rad pos: 70.5,7.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11869 components: - pos: 77.5,5.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11870 components: - pos: 55.5,3.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 11906 components: - rot: -1.5707963267948966 rad pos: 74.5,6.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 12977 components: - rot: 3.141592653589793 rad pos: 40.5,-48.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 12978 components: - rot: 3.141592653589793 rad pos: 35.5,-48.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightExterior entities: - uid: 5606 @@ -66425,23 +62497,17 @@ entities: - pos: 14.5,-44.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 5607 components: - pos: 28.5,-46.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - uid: 7836 components: - rot: 1.5707963267948966 rad pos: -3.5,-15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredlightSodium entities: - uid: 7961 @@ -66450,8 +62516,6 @@ entities: pos: -17.5,15.5 parent: 2 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredSmallLight entities: - uid: 317 From dbbeb9b0ecfe3c4b6d469862c92954a104315d68 Mon Sep 17 00:00:00 2001 From: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Date: Mon, 2 Oct 2023 07:25:11 +0200 Subject: [PATCH 04/17] Replace paramedic with medical windoor (#20653) --- Resources/Maps/kettle.yml | 7350 ++++--------------------------------- 1 file changed, 621 insertions(+), 6729 deletions(-) diff --git a/Resources/Maps/kettle.yml b/Resources/Maps/kettle.yml index 9bea1311dfc63c..506ced0a6733e3 100644 --- a/Resources/Maps/kettle.yml +++ b/Resources/Maps/kettle.yml @@ -18762,9 +18762,14 @@ entities: - pos: 34.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507010.16 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 11588 type: DeviceLinkSink @@ -18773,9 +18778,14 @@ entities: - pos: 34.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507010.16 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 11588 type: DeviceLinkSink @@ -18800,9 +18810,14 @@ entities: - pos: 34.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507010.16 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 11588 type: DeviceLinkSink @@ -18827,9 +18842,14 @@ entities: - pos: 53.5,-25.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18838,9 +18858,14 @@ entities: - pos: 53.5,-26.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18849,9 +18874,14 @@ entities: - pos: 53.5,-27.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18860,9 +18890,14 @@ entities: - pos: 53.5,-28.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18871,9 +18906,14 @@ entities: - pos: 53.5,-29.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18882,9 +18922,14 @@ entities: - pos: 53.5,-30.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18893,9 +18938,14 @@ entities: - pos: 56.5,-25.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18904,9 +18954,14 @@ entities: - pos: 56.5,-26.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18915,9 +18970,14 @@ entities: - pos: 56.5,-27.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18926,9 +18986,14 @@ entities: - pos: 56.5,-28.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18937,9 +19002,14 @@ entities: - pos: 56.5,-29.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18948,9 +19018,14 @@ entities: - pos: 56.5,-30.5 parent: 82 type: Transform - - SecondsUntilStateChange: -505275.1 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 8852 type: DeviceLinkSink @@ -18959,9 +19034,14 @@ entities: - pos: -21.5,50.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445930.03 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 23015 type: DeviceLinkSink @@ -18970,9 +19050,14 @@ entities: - pos: -21.5,48.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445930.03 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 23015 type: DeviceLinkSink @@ -18981,9 +19066,14 @@ entities: - pos: -21.5,49.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445930.03 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 23015 type: DeviceLinkSink @@ -18992,9 +19082,14 @@ entities: - pos: -21.5,47.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445930.03 - state: Opening + - state: Open type: Door + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight - links: - 23015 type: DeviceLinkSink @@ -19057,9 +19152,14 @@ entities: - pos: 23.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507071.4 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 22394 type: DeviceLinkSink @@ -19068,9 +19168,14 @@ entities: - pos: 23.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507071.4 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 22394 type: DeviceLinkSink @@ -19079,9 +19184,14 @@ entities: - pos: 23.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -507071.4 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 22394 type: DeviceLinkSink @@ -19912,8 +20022,6 @@ entities: - pos: 16.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1128 components: - pos: 16.5,-15.5 @@ -19924,22 +20032,16 @@ entities: - pos: 26.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1412 components: - pos: 16.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1493 components: - pos: 14.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1646 components: - pos: 72.5,-8.5 @@ -19950,15 +20052,11 @@ entities: - pos: 15.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2039 components: - pos: 14.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2172 components: - pos: 13.5,-18.5 @@ -20044,8 +20142,6 @@ entities: - pos: 16.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3181 components: - pos: 27.5,24.5 @@ -20091,127 +20187,91 @@ entities: - pos: 31.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3775 components: - pos: 16.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3823 components: - pos: 16.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3824 components: - pos: 16.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3825 components: - pos: 16.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3826 components: - pos: 16.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3827 components: - pos: 16.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3828 components: - pos: 16.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3829 components: - pos: 16.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3830 components: - pos: 16.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3832 components: - pos: 8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3833 components: - pos: 9.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3834 components: - pos: 10.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3835 components: - pos: 11.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3836 components: - pos: 12.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3838 components: - pos: 13.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3839 components: - pos: 14.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3840 components: - pos: 15.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5517 components: - pos: -43.5,-35.5 @@ -20242,50 +20302,36 @@ entities: - pos: -22.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6283 components: - pos: -27.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6319 components: - pos: 16.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6320 components: - pos: 16.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6662 components: - pos: 31.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6663 components: - pos: 31.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6751 components: - pos: -22.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6752 components: - pos: -23.5,57.5 @@ -20366,85 +20412,61 @@ entities: - pos: -27.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6768 components: - pos: -26.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6769 components: - pos: -25.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6770 components: - pos: -24.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6771 components: - pos: -23.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6775 components: - pos: -20.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6776 components: - pos: -19.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6777 components: - pos: -21.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6778 components: - pos: -23.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6779 components: - pos: -28.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6925 components: - pos: 19.5,-88.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6926 components: - pos: 21.5,-88.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6927 components: - pos: 22.5,-90.5 @@ -20460,8 +20482,6 @@ entities: - pos: 22.5,-88.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6930 components: - pos: 22.5,-87.5 @@ -20487,8 +20507,6 @@ entities: - pos: 18.5,-88.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6935 components: - pos: 18.5,-87.5 @@ -20559,8 +20577,6 @@ entities: - pos: 13.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7271 components: - pos: 13.5,72.5 @@ -20596,43 +20612,31 @@ entities: - pos: -63.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7398 components: - pos: 17.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7399 components: - pos: 16.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7400 components: - pos: 15.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7405 components: - pos: 14.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7406 components: - pos: 13.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7573 components: - pos: 86.5,-3.5 @@ -20693,8 +20697,6 @@ entities: - pos: 32.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7799 components: - pos: 72.5,0.5 @@ -20785,36 +20787,26 @@ entities: - pos: 10.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8347 components: - pos: 10.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8388 components: - pos: 9.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8713 components: - pos: -46.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8768 components: - pos: -46.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8769 components: - pos: -46.5,-49.5 @@ -20835,8 +20827,6 @@ entities: - pos: -10.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10460 components: - pos: -10.5,-8.5 @@ -20912,8 +20902,6 @@ entities: - pos: 28.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11987 components: - pos: 28.5,-25.5 @@ -21174,8 +21162,6 @@ entities: - pos: 5.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12103 components: - pos: 5.5,-42.5 @@ -21211,8 +21197,6 @@ entities: - pos: 4.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12110 components: - pos: 3.5,-44.5 @@ -21223,8 +21207,6 @@ entities: - pos: 3.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12112 components: - pos: 2.5,-45.5 @@ -21260,8 +21242,6 @@ entities: - pos: 3.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12119 components: - pos: 2.5,-43.5 @@ -21297,15 +21277,11 @@ entities: - pos: 3.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12126 components: - pos: 3.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12127 components: - pos: 3.5,-40.5 @@ -21436,8 +21412,6 @@ entities: - pos: 12.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12153 components: - pos: 12.5,-41.5 @@ -21448,15 +21422,11 @@ entities: - pos: 11.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12155 components: - pos: 11.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12156 components: - pos: 11.5,-43.5 @@ -21582,8 +21552,6 @@ entities: - pos: 16.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12181 components: - pos: 16.5,-41.5 @@ -21639,50 +21607,36 @@ entities: - pos: 31.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12507 components: - pos: 31.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12508 components: - pos: 31.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12737 components: - pos: 31.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12738 components: - pos: 31.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12739 components: - pos: 31.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12740 components: - pos: 31.5,55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12881 components: - pos: 21.5,71.5 @@ -21693,8 +21647,6 @@ entities: - pos: -34.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14024 components: - pos: 31.5,-35.5 @@ -21775,15 +21727,11 @@ entities: - pos: 1.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14060 components: - pos: 2.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14061 components: - pos: 1.5,-13.5 @@ -21924,8 +21872,6 @@ entities: - pos: 9.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14089 components: - pos: 9.5,-15.5 @@ -22071,99 +22017,71 @@ entities: - pos: 29.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14118 components: - pos: 29.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14119 components: - pos: 28.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14120 components: - pos: 27.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14121 components: - pos: 26.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14122 components: - pos: 25.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14123 components: - pos: 24.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14124 components: - pos: 23.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14125 components: - pos: 22.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14126 components: - pos: 22.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14127 components: - pos: 30.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14128 components: - pos: 31.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14129 components: - pos: 31.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14130 components: - pos: 31.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14131 components: - pos: 28.5,27.5 @@ -22179,36 +22097,26 @@ entities: - pos: 31.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14141 components: - pos: 31.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14142 components: - pos: 31.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14143 components: - pos: 31.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14144 components: - pos: 31.5,-4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14146 components: - pos: 29.5,-10.5 @@ -22299,15 +22207,11 @@ entities: - pos: 25.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14296 components: - pos: 24.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14299 components: - pos: 21.5,72.5 @@ -22328,8 +22232,6 @@ entities: - pos: 20.5,-98.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14322 components: - pos: 20.5,-99.5 @@ -22530,8 +22432,6 @@ entities: - pos: 20.5,-101.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14362 components: - pos: 20.5,-102.5 @@ -22597,8 +22497,6 @@ entities: - pos: 29.5,-92.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14422 components: - pos: 30.5,-92.5 @@ -22824,8 +22722,6 @@ entities: - pos: 11.5,-92.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14467 components: - pos: 12.5,-92.5 @@ -22876,8 +22772,6 @@ entities: - pos: 15.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14479 components: - pos: 15.5,-47.5 @@ -22978,8 +22872,6 @@ entities: - pos: 20.5,-58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14499 components: - pos: 20.5,-59.5 @@ -23025,15 +22917,11 @@ entities: - pos: 19.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14508 components: - pos: 19.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14509 components: - pos: 21.5,-62.5 @@ -23044,29 +22932,21 @@ entities: - pos: 21.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14511 components: - pos: 21.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14512 components: - pos: 21.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14513 components: - pos: 19.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14514 components: - pos: 14.5,-47.5 @@ -23077,15 +22957,11 @@ entities: - pos: 11.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14516 components: - pos: 11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14517 components: - pos: 10.5,-45.5 @@ -23101,43 +22977,31 @@ entities: - pos: 20.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14569 components: - pos: 21.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14570 components: - pos: 23.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14571 components: - pos: 22.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14572 components: - pos: 23.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14573 components: - pos: 23.5,32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14899 components: - pos: -41.5,-40.5 @@ -23198,148 +23062,106 @@ entities: - pos: 20.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15014 components: - pos: 20.5,28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15015 components: - pos: 20.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15016 components: - pos: 20.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15017 components: - pos: 20.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15018 components: - pos: 20.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15019 components: - pos: 20.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15020 components: - pos: 20.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15021 components: - pos: 21.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15022 components: - pos: 22.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15023 components: - pos: 23.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15024 components: - pos: 23.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15025 components: - pos: 23.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15026 components: - pos: 24.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15027 components: - pos: 25.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15028 components: - pos: 26.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15029 components: - pos: 27.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15030 components: - pos: 28.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15031 components: - pos: 27.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15032 components: - pos: 28.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15033 components: - pos: 26.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15034 components: - pos: 26.5,32.5 @@ -23350,8 +23172,6 @@ entities: - pos: 26.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15036 components: - pos: 26.5,34.5 @@ -23417,36 +23237,26 @@ entities: - pos: 20.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15049 components: - pos: 20.5,32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15050 components: - pos: 20.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15051 components: - pos: 20.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15052 components: - pos: 20.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15053 components: - pos: 20.5,36.5 @@ -23457,8 +23267,6 @@ entities: - pos: 20.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15055 components: - pos: 20.5,38.5 @@ -23469,29 +23277,21 @@ entities: - pos: 20.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15057 components: - pos: 20.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15058 components: - pos: 21.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15060 components: - pos: 23.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15061 components: - pos: 24.5,40.5 @@ -23502,15 +23302,11 @@ entities: - pos: 25.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15063 components: - pos: 26.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15064 components: - pos: 27.5,40.5 @@ -23521,15 +23317,11 @@ entities: - pos: 27.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15067 components: - pos: 27.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15068 components: - pos: 27.5,46.5 @@ -23555,22 +23347,16 @@ entities: - pos: 20.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15074 components: - pos: 20.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15075 components: - pos: 20.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15076 components: - pos: 21.5,43.5 @@ -23581,29 +23367,21 @@ entities: - pos: 44.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15133 components: - pos: 44.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15134 components: - pos: 44.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15135 components: - pos: 44.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15136 components: - pos: 45.5,12.5 @@ -23624,22 +23402,16 @@ entities: - pos: 48.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15140 components: - pos: 48.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15141 components: - pos: 48.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15142 components: - pos: 47.5,14.5 @@ -23690,8 +23462,6 @@ entities: - pos: 46.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15152 components: - pos: 43.5,18.5 @@ -23882,22 +23652,16 @@ entities: - pos: 48.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15191 components: - pos: 48.5,28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15192 components: - pos: 48.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15193 components: - pos: 45.5,22.5 @@ -23908,15 +23672,11 @@ entities: - pos: 47.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15195 components: - pos: 48.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15196 components: - pos: 48.5,23.5 @@ -23932,8 +23692,6 @@ entities: - pos: 37.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15199 components: - pos: 37.5,23.5 @@ -23989,8 +23747,6 @@ entities: - pos: 34.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15210 components: - pos: 34.5,29.5 @@ -24006,15 +23762,11 @@ entities: - pos: 34.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15213 components: - pos: 34.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15214 components: - pos: 34.5,25.5 @@ -24030,8 +23782,6 @@ entities: - pos: 34.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15217 components: - pos: 35.5,23.5 @@ -24217,8 +23967,6 @@ entities: - pos: 41.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15254 components: - pos: 42.5,30.5 @@ -24229,8 +23977,6 @@ entities: - pos: 41.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15256 components: - pos: 41.5,28.5 @@ -24241,22 +23987,16 @@ entities: - pos: 41.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15258 components: - pos: 41.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15259 components: - pos: 41.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15260 components: - pos: 41.5,23.5 @@ -24297,8 +24037,6 @@ entities: - pos: -6.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15564 components: - pos: -6.5,2.5 @@ -24709,127 +24447,91 @@ entities: - pos: -6.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15646 components: - pos: -7.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15647 components: - pos: -8.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15648 components: - pos: -9.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15649 components: - pos: -10.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15650 components: - pos: -11.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15651 components: - pos: -12.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15652 components: - pos: -13.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15653 components: - pos: -14.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15654 components: - pos: -15.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15655 components: - pos: -16.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15656 components: - pos: -16.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15657 components: - pos: -16.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15658 components: - pos: -16.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15659 components: - pos: -16.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15660 components: - pos: -16.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15661 components: - pos: -15.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15662 components: - pos: -14.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15663 components: - pos: -14.5,-1.5 @@ -24895,57 +24597,41 @@ entities: - pos: -10.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15676 components: - pos: -10.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15677 components: - pos: -10.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15678 components: - pos: -10.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15679 components: - pos: -10.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15680 components: - pos: -10.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15681 components: - pos: -10.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15719 components: - pos: -6.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15720 components: - pos: -7.5,14.5 @@ -24956,71 +24642,51 @@ entities: - pos: -8.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15722 components: - pos: -9.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15723 components: - pos: -8.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15724 components: - pos: -8.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15725 components: - pos: -8.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15726 components: - pos: -8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15727 components: - pos: -8.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15728 components: - pos: -7.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15729 components: - pos: -6.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15730 components: - pos: -5.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15731 components: - pos: -5.5,18.5 @@ -25091,869 +24757,621 @@ entities: - pos: -5.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15745 components: - pos: -4.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15746 components: - pos: -3.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15747 components: - pos: -2.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15748 components: - pos: -1.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15749 components: - pos: -0.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15750 components: - pos: 0.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15751 components: - pos: 1.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15752 components: - pos: 2.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15753 components: - pos: 3.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15754 components: - pos: 4.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15755 components: - pos: 5.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15756 components: - pos: -4.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15757 components: - pos: -1.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15758 components: - pos: -1.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15759 components: - pos: -1.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15760 components: - pos: -1.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15761 components: - pos: -1.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15762 components: - pos: -1.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15763 components: - pos: -0.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15764 components: - pos: 0.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15765 components: - pos: 1.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15766 components: - pos: 2.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15767 components: - pos: 3.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15768 components: - pos: 4.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15769 components: - pos: 5.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15770 components: - pos: 6.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15771 components: - pos: 4.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15772 components: - pos: 4.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15773 components: - pos: 4.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15774 components: - pos: 4.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15775 components: - pos: 4.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15776 components: - pos: 1.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15777 components: - pos: 7.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15778 components: - pos: 7.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15779 components: - pos: -3.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15780 components: - pos: -2.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15781 components: - pos: -1.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15782 components: - pos: -0.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15783 components: - pos: 0.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15784 components: - pos: 1.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15785 components: - pos: 2.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15786 components: - pos: 3.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15787 components: - pos: 4.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15788 components: - pos: 5.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15789 components: - pos: 6.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15790 components: - pos: -4.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15791 components: - pos: -3.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15792 components: - pos: -2.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15793 components: - pos: -1.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15794 components: - pos: -0.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15795 components: - pos: 0.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15796 components: - pos: 1.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15797 components: - pos: 2.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15798 components: - pos: 3.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15799 components: - pos: 4.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15800 components: - pos: 5.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15801 components: - pos: 6.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15802 components: - pos: -1.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15803 components: - pos: -1.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15804 components: - pos: -0.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15805 components: - pos: 0.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15806 components: - pos: 1.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15807 components: - pos: 2.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15808 components: - pos: 3.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15809 components: - pos: 4.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15810 components: - pos: 5.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15811 components: - pos: 6.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15812 components: - pos: -1.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15813 components: - pos: -1.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15814 components: - pos: -1.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15815 components: - pos: -1.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15816 components: - pos: -1.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15817 components: - pos: -1.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15818 components: - pos: -1.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15819 components: - pos: -0.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15820 components: - pos: 0.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15821 components: - pos: 1.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15822 components: - pos: 2.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15823 components: - pos: 3.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15824 components: - pos: 4.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15825 components: - pos: 5.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15826 components: - pos: 6.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15827 components: - pos: -0.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15828 components: - pos: 0.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15829 components: - pos: 1.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15830 components: - pos: 2.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15831 components: - pos: 3.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15832 components: - pos: 4.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15833 components: - pos: 5.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15834 components: - pos: 6.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15835 components: - pos: 8.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15836 components: - pos: 9.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15837 components: - pos: 10.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15838 components: - pos: 11.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15839 components: - pos: 12.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15840 components: - pos: 13.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15841 components: - pos: 14.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15842 components: - pos: 15.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15843 components: - pos: 16.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15844 components: - pos: 16.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15845 components: - pos: 16.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15846 components: - pos: 16.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15847 components: - pos: 16.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15848 components: - pos: 15.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15849 components: - pos: 14.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15850 components: - pos: 13.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15851 components: - pos: 12.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15852 components: - pos: 11.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15853 components: - pos: 10.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15854 components: - pos: 9.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15855 components: - pos: 8.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15856 components: - pos: 8.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15857 components: - pos: 9.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15858 components: - pos: 10.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15859 components: - pos: 11.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15860 components: - pos: 12.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15861 components: - pos: 13.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15862 components: - pos: 14.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15863 components: - pos: 15.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15864 components: - pos: 16.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15865 components: - pos: 17.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15866 components: - pos: 18.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15867 components: - pos: 19.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15868 components: - pos: 20.5,12.5 @@ -25974,85 +25392,61 @@ entities: - pos: 8.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15872 components: - pos: 9.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15873 components: - pos: 10.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15874 components: - pos: 11.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15875 components: - pos: 12.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15876 components: - pos: 13.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15877 components: - pos: 14.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15878 components: - pos: 15.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15879 components: - pos: 16.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15880 components: - pos: 17.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15881 components: - pos: 18.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15882 components: - pos: 19.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15883 components: - pos: 20.5,16.5 @@ -26093,57 +25487,41 @@ entities: - pos: -5.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15891 components: - pos: -5.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15892 components: - pos: -5.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15893 components: - pos: -5.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15894 components: - pos: -5.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15895 components: - pos: -5.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15896 components: - pos: -5.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15897 components: - pos: -5.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15898 components: - pos: -6.5,22.5 @@ -26154,22 +25532,16 @@ entities: - pos: -7.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15900 components: - pos: -8.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15904 components: - pos: 23.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15905 components: - pos: 24.5,15.5 @@ -26275,8 +25647,6 @@ entities: - pos: 28.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15929 components: - pos: 28.5,4.5 @@ -26302,15 +25672,11 @@ entities: - pos: 25.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15934 components: - pos: 24.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15935 components: - pos: 24.5,2.5 @@ -26406,64 +25772,46 @@ entities: - pos: 23.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15954 components: - pos: 22.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15955 components: - pos: 21.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15956 components: - pos: 20.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15957 components: - pos: 19.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15958 components: - pos: 19.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15959 components: - pos: 19.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15960 components: - pos: 19.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15961 components: - pos: 19.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15962 components: - pos: 19.5,-1.5 @@ -26719,22 +26067,16 @@ entities: - pos: 20.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16053 components: - pos: 20.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16055 components: - pos: 0.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16056 components: - pos: 0.5,39.5 @@ -26785,8 +26127,6 @@ entities: - pos: -2.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16066 components: - pos: -3.5,35.5 @@ -26887,8 +26227,6 @@ entities: - pos: 2.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16087 components: - pos: -3.5,33.5 @@ -26964,64 +26302,46 @@ entities: - pos: 6.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16102 components: - pos: 6.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16103 components: - pos: 6.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16104 components: - pos: 6.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16105 components: - pos: 6.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16106 components: - pos: 6.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16107 components: - pos: 6.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16108 components: - pos: 6.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16109 components: - pos: 6.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16110 components: - pos: 5.5,34.5 @@ -27037,15 +26357,11 @@ entities: - pos: 3.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16113 components: - pos: 5.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16114 components: - pos: 4.5,39.5 @@ -27071,43 +26387,31 @@ entities: - pos: 5.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16119 components: - pos: 5.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16120 components: - pos: 5.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16121 components: - pos: 5.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16122 components: - pos: 5.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16123 components: - pos: 5.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16124 components: - pos: 4.5,46.5 @@ -27118,8 +26422,6 @@ entities: - pos: 3.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16126 components: - pos: 6.5,46.5 @@ -27140,78 +26442,56 @@ entities: - pos: 7.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16130 components: - pos: 8.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16131 components: - pos: 9.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16132 components: - pos: 10.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16133 components: - pos: 11.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16134 components: - pos: 11.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16135 components: - pos: 11.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16136 components: - pos: 11.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16137 components: - pos: 11.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16138 components: - pos: 10.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16139 components: - pos: 9.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16140 components: - pos: 9.5,40.5 @@ -27322,43 +26602,31 @@ entities: - pos: 12.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16162 components: - pos: 13.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16163 components: - pos: 14.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16164 components: - pos: 15.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16165 components: - pos: 16.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16188 components: - pos: -8.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16189 components: - pos: -9.5,48.5 @@ -27889,8 +27157,6 @@ entities: - pos: -22.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16316 components: - pos: -22.5,39.5 @@ -27981,22 +27247,16 @@ entities: - pos: -22.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16334 components: - pos: -22.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16335 components: - pos: -22.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16336 components: - pos: -22.5,45.5 @@ -28037,22 +27297,16 @@ entities: - pos: -28.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16344 components: - pos: -28.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16345 components: - pos: -28.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16346 components: - pos: -28.5,41.5 @@ -28238,155 +27492,111 @@ entities: - pos: -29.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16383 components: - pos: -30.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16384 components: - pos: -30.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16385 components: - pos: -30.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16386 components: - pos: -30.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16387 components: - pos: -30.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16388 components: - pos: -30.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16389 components: - pos: -30.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16390 components: - pos: -30.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16391 components: - pos: -30.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16392 components: - pos: -30.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16393 components: - pos: -30.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16394 components: - pos: -30.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16395 components: - pos: -30.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16396 components: - pos: -30.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16397 components: - pos: -31.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16398 components: - pos: -31.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16399 components: - pos: -30.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16400 components: - pos: -30.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16401 components: - pos: -30.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16402 components: - pos: -31.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16403 components: - pos: -31.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16404 components: - pos: -31.5,32.5 @@ -28517,36 +27727,26 @@ entities: - pos: -29.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16431 components: - pos: -28.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16432 components: - pos: -27.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16503 components: - pos: -35.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16504 components: - pos: -34.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16505 components: - pos: -33.5,26.5 @@ -28557,8 +27757,6 @@ entities: - pos: -32.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16507 components: - pos: -31.5,26.5 @@ -28714,8 +27912,6 @@ entities: - pos: -34.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16538 components: - pos: -34.5,28.5 @@ -28726,260 +27922,186 @@ entities: - pos: -34.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16540 components: - pos: -34.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16541 components: - pos: -34.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16542 components: - pos: -35.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16543 components: - pos: -36.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16544 components: - pos: -37.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16545 components: - pos: -38.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16546 components: - pos: -39.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16547 components: - pos: -40.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16548 components: - pos: -41.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16549 components: - pos: -42.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16550 components: - pos: -43.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16551 components: - pos: -44.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16552 components: - pos: -45.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16553 components: - pos: -46.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16554 components: - pos: -47.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16555 components: - pos: -47.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16556 components: - pos: -47.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16557 components: - pos: -47.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16558 components: - pos: -47.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16559 components: - pos: -47.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16560 components: - pos: -47.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16561 components: - pos: -47.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16562 components: - pos: -47.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16563 components: - pos: -47.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16564 components: - pos: -48.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16565 components: - pos: -48.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16566 components: - pos: -48.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16567 components: - pos: -48.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16568 components: - pos: -48.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16569 components: - pos: -48.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16570 components: - pos: -48.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16571 components: - pos: -48.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16572 components: - pos: -46.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16573 components: - pos: -46.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16574 components: - pos: -46.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16575 components: - pos: -46.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16576 components: - pos: -46.5,28.5 @@ -29440,8 +28562,6 @@ entities: - pos: -11.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16674 components: - pos: -13.5,13.5 @@ -29507,22 +28627,16 @@ entities: - pos: -18.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16687 components: - pos: -17.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16688 components: - pos: -16.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16689 components: - pos: -17.5,14.5 @@ -29723,8 +28837,6 @@ entities: - pos: -19.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16733 components: - pos: -21.5,5.5 @@ -29920,169 +29032,121 @@ entities: - pos: -25.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16772 components: - pos: -26.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16773 components: - pos: -27.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16774 components: - pos: -28.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16775 components: - pos: -29.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16776 components: - pos: -30.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16777 components: - pos: -31.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16778 components: - pos: -31.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16779 components: - pos: -32.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16780 components: - pos: -33.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16781 components: - pos: -34.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16782 components: - pos: -35.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16783 components: - pos: -36.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16784 components: - pos: -37.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16785 components: - pos: -38.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16786 components: - pos: -39.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16787 components: - pos: -40.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16788 components: - pos: -41.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16789 components: - pos: -42.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16790 components: - pos: -43.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16791 components: - pos: -44.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16792 components: - pos: -45.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16793 components: - pos: -45.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16794 components: - pos: -45.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16795 components: - pos: -45.5,5.5 @@ -30283,8 +29347,6 @@ entities: - pos: -2.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16836 components: - pos: -1.5,56.5 @@ -30495,8 +29557,6 @@ entities: - pos: 21.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16925 components: - pos: 21.5,69.5 @@ -30647,8 +29707,6 @@ entities: - pos: 31.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17006 components: - pos: 31.5,69.5 @@ -30659,8 +29717,6 @@ entities: - pos: 31.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17008 components: - pos: 20.5,67.5 @@ -30751,8 +29807,6 @@ entities: - pos: 17.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17026 components: - pos: 16.5,57.5 @@ -31183,50 +30237,36 @@ entities: - pos: 31.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17115 components: - pos: 31.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17116 components: - pos: 31.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17124 components: - pos: 31.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17125 components: - pos: 31.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17126 components: - pos: 31.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17127 components: - pos: 31.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17134 components: - pos: 41.5,34.5 @@ -31432,148 +30472,106 @@ entities: - pos: 34.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17175 components: - pos: 35.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17176 components: - pos: 36.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17177 components: - pos: 37.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17178 components: - pos: 38.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17179 components: - pos: 39.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17180 components: - pos: 39.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17181 components: - pos: 39.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17182 components: - pos: 39.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17183 components: - pos: 39.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17184 components: - pos: 39.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17185 components: - pos: 39.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17186 components: - pos: 39.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17187 components: - pos: 39.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17188 components: - pos: 39.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17189 components: - pos: 40.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17190 components: - pos: 41.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17191 components: - pos: 42.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17192 components: - pos: 43.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17193 components: - pos: 44.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17194 components: - pos: 45.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17195 components: - pos: 45.5,38.5 @@ -31614,8 +30612,6 @@ entities: - pos: 41.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17203 components: - pos: 45.5,34.5 @@ -31776,358 +30772,256 @@ entities: - pos: 48.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17235 components: - pos: 49.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17236 components: - pos: 50.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17237 components: - pos: 50.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17238 components: - pos: 50.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17239 components: - pos: 50.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17240 components: - pos: 50.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17241 components: - pos: 51.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17242 components: - pos: 52.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17243 components: - pos: 53.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17244 components: - pos: 54.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17245 components: - pos: 55.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17246 components: - pos: 56.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17247 components: - pos: 46.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17248 components: - pos: 47.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17249 components: - pos: 47.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17250 components: - pos: 47.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17251 components: - pos: 47.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17252 components: - pos: 47.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17253 components: - pos: 47.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17254 components: - pos: 47.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17255 components: - pos: 47.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17256 components: - pos: 47.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17257 components: - pos: 47.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17258 components: - pos: 47.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17259 components: - pos: 47.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17260 components: - pos: 46.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17261 components: - pos: 45.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17262 components: - pos: 44.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17263 components: - pos: 43.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17264 components: - pos: 42.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17265 components: - pos: 41.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17266 components: - pos: 40.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17267 components: - pos: 40.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17268 components: - pos: 40.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17269 components: - pos: 40.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17270 components: - pos: 40.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17271 components: - pos: 45.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17272 components: - pos: 45.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17273 components: - pos: 45.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17274 components: - pos: 45.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17275 components: - pos: 43.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17276 components: - pos: 43.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17277 components: - pos: 43.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17278 components: - pos: 43.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17279 components: - pos: 43.5,55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17280 components: - pos: 40.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17282 components: - pos: 42.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17283 components: - pos: 43.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17284 components: - pos: 43.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17285 components: - pos: 43.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17286 components: - pos: 42.5,11.5 @@ -32138,183 +31032,131 @@ entities: - pos: 42.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17288 components: - pos: 42.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17289 components: - pos: 41.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17290 components: - pos: 41.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17291 components: - pos: 40.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17292 components: - pos: 39.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17293 components: - pos: 38.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17294 components: - pos: 37.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17295 components: - pos: 36.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17298 components: - pos: 43.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17299 components: - pos: 44.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17300 components: - pos: 45.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17301 components: - pos: 46.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17302 components: - pos: 47.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17303 components: - pos: 48.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17304 components: - pos: 49.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17305 components: - pos: 50.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17306 components: - pos: 51.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17307 components: - pos: 52.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17308 components: - pos: 53.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17309 components: - pos: 54.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17310 components: - pos: 54.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17311 components: - pos: 54.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17312 components: - pos: 55.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17313 components: - pos: 56.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17372 components: - pos: 79.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17373 components: - pos: 79.5,2.5 @@ -32775,8 +31617,6 @@ entities: - pos: 52.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17568 components: - pos: 53.5,-48.5 @@ -32787,8 +31627,6 @@ entities: - pos: 54.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17570 components: - pos: 52.5,-45.5 @@ -32804,8 +31642,6 @@ entities: - pos: 54.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17573 components: - pos: 52.5,-41.5 @@ -32851,15 +31687,11 @@ entities: - pos: 60.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17582 components: - pos: 60.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17583 components: - pos: 57.5,-42.5 @@ -32870,22 +31702,16 @@ entities: - pos: 57.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17585 components: - pos: 56.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17586 components: - pos: 58.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17587 components: - pos: 58.5,-40.5 @@ -32926,8 +31752,6 @@ entities: - pos: 53.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17595 components: - pos: 55.5,-35.5 @@ -32938,71 +31762,51 @@ entities: - pos: 55.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17597 components: - pos: 55.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17598 components: - pos: 55.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17599 components: - pos: 55.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17600 components: - pos: 55.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17601 components: - pos: 55.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17602 components: - pos: 55.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17603 components: - pos: 55.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17604 components: - pos: 55.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17605 components: - pos: 55.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17606 components: - pos: 55.5,-20.5 @@ -33028,8 +31832,6 @@ entities: - pos: 57.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17715 components: - pos: 54.5,-37.5 @@ -33085,8 +31887,6 @@ entities: - pos: 44.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17726 components: - pos: 43.5,-42.5 @@ -33097,8 +31897,6 @@ entities: - pos: 42.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17728 components: - pos: 46.5,-41.5 @@ -33109,22 +31907,16 @@ entities: - pos: 46.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17730 components: - pos: 47.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17731 components: - pos: 48.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17732 components: - pos: 48.5,-41.5 @@ -33170,15 +31962,11 @@ entities: - pos: 42.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17741 components: - pos: 42.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17742 components: - pos: 44.5,-47.5 @@ -33199,8 +31987,6 @@ entities: - pos: 44.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17746 components: - pos: 43.5,-48.5 @@ -33211,8 +31997,6 @@ entities: - pos: 42.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17748 components: - pos: 47.5,-46.5 @@ -33243,8 +32027,6 @@ entities: - pos: 48.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17754 components: - pos: 49.5,-46.5 @@ -33400,15 +32182,11 @@ entities: - pos: 59.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17816 components: - pos: 59.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17817 components: - pos: 60.5,-14.5 @@ -33449,22 +32227,16 @@ entities: - pos: 57.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17826 components: - pos: 57.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17828 components: - pos: 57.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17829 components: - pos: 57.5,-9.5 @@ -33475,106 +32247,76 @@ entities: - pos: 57.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17831 components: - pos: 57.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17832 components: - pos: 58.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17833 components: - pos: 59.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17834 components: - pos: 60.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17835 components: - pos: 61.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17836 components: - pos: 62.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17837 components: - pos: 63.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17838 components: - pos: 63.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17839 components: - pos: 63.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17840 components: - pos: 63.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17841 components: - pos: 63.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17842 components: - pos: 63.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17843 components: - pos: 63.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17844 components: - pos: 62.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17845 components: - pos: 57.5,-5.5 @@ -33625,22 +32367,16 @@ entities: - pos: 59.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17855 components: - pos: 60.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17856 components: - pos: 61.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17857 components: - pos: 61.5,0.5 @@ -33906,8 +32642,6 @@ entities: - pos: 34.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17918 components: - pos: 35.5,-5.5 @@ -34123,8 +32857,6 @@ entities: - pos: 40.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17961 components: - pos: 40.5,0.5 @@ -34175,15 +32907,11 @@ entities: - pos: 43.5,-1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17971 components: - pos: 47.5,-1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17972 components: - pos: 40.5,-0.5 @@ -34194,8 +32922,6 @@ entities: - pos: 40.5,-1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17974 components: - pos: 40.5,-2.5 @@ -34516,8 +33242,6 @@ entities: - pos: 38.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18041 components: - pos: 38.5,-9.5 @@ -34538,29 +33262,21 @@ entities: - pos: 38.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18045 components: - pos: 43.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18046 components: - pos: 43.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18047 components: - pos: 43.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18048 components: - pos: 42.5,-8.5 @@ -35226,15 +33942,11 @@ entities: - pos: -13.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18232 components: - pos: -12.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18233 components: - pos: -11.5,-31.5 @@ -35680,134 +34392,96 @@ entities: - pos: 3.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18328 components: - pos: 3.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18329 components: - pos: 3.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18330 components: - pos: 2.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18331 components: - pos: 1.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18332 components: - pos: 0.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18333 components: - pos: -0.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18334 components: - pos: -1.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18335 components: - pos: -2.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18336 components: - pos: -2.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18337 components: - pos: 3.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18338 components: - pos: 4.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18339 components: - pos: 5.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18340 components: - pos: 6.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18341 components: - pos: 6.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18342 components: - pos: 6.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18343 components: - pos: 7.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18344 components: - pos: 8.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18345 components: - pos: 9.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18346 components: - pos: -7.5,-45.5 @@ -35818,85 +34492,61 @@ entities: - pos: -8.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18348 components: - pos: -9.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18349 components: - pos: -10.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18350 components: - pos: -11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18351 components: - pos: -12.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18352 components: - pos: -13.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18353 components: - pos: -14.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18354 components: - pos: -15.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18355 components: - pos: -16.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18356 components: - pos: -16.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18357 components: - pos: -17.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18358 components: - pos: -18.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18359 components: - pos: -18.5,-45.5 @@ -36207,8 +34857,6 @@ entities: - pos: -28.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18459 components: - pos: -24.5,-36.5 @@ -36274,64 +34922,46 @@ entities: - pos: -23.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18472 components: - pos: -23.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18473 components: - pos: -23.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18474 components: - pos: -23.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18475 components: - pos: -22.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18476 components: - pos: -21.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18477 components: - pos: -22.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18478 components: - pos: -22.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18479 components: - pos: -23.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18495 components: - pos: -33.5,-25.5 @@ -36492,8 +35122,6 @@ entities: - pos: -40.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18540 components: - pos: -39.5,-36.5 @@ -36724,141 +35352,101 @@ entities: - pos: -27.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18601 components: - pos: -26.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18602 components: - pos: -27.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18603 components: - pos: -27.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18604 components: - pos: -27.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18605 components: - pos: -28.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18606 components: - pos: -29.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18607 components: - pos: -30.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18608 components: - pos: -31.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18609 components: - pos: -32.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18610 components: - pos: -33.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18611 components: - pos: -34.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18612 components: - pos: -35.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18613 components: - pos: -36.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18614 components: - pos: -37.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18619 components: - pos: -38.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18620 components: - pos: -39.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18621 components: - pos: -40.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18622 components: - pos: -41.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18623 components: - pos: -41.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18624 components: - pos: -41.5,-48.5 @@ -36869,155 +35457,111 @@ entities: - pos: -41.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18626 components: - pos: -41.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18627 components: - pos: -41.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18628 components: - pos: -41.5,-52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18629 components: - pos: -42.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18630 components: - pos: -43.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18631 components: - pos: -44.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18632 components: - pos: -45.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18633 components: - pos: -45.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18634 components: - pos: -45.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18635 components: - pos: -45.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18636 components: - pos: -45.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18637 components: - pos: -45.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18638 components: - pos: -45.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18639 components: - pos: -46.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18640 components: - pos: -47.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18641 components: - pos: -48.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18642 components: - pos: -49.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18643 components: - pos: -50.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18644 components: - pos: -51.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18645 components: - pos: -52.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18663 components: - pos: -43.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18664 components: - pos: -43.5,-24.5 @@ -37213,29 +35757,21 @@ entities: - pos: -55.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18717 components: - pos: -54.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18718 components: - pos: -53.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18719 components: - pos: -52.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18720 components: - pos: -51.5,-22.5 @@ -37271,8 +35807,6 @@ entities: - pos: -53.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18727 components: - pos: -50.5,-33.5 @@ -37328,50 +35862,36 @@ entities: - pos: -53.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18745 components: - pos: -54.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18746 components: - pos: -54.5,-37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18747 components: - pos: -54.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18748 components: - pos: -54.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18749 components: - pos: -54.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18750 components: - pos: -55.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18751 components: - pos: -55.5,-33.5 @@ -37382,43 +35902,31 @@ entities: - pos: -56.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18753 components: - pos: -57.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18754 components: - pos: -58.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18755 components: - pos: -59.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18756 components: - pos: -60.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18757 components: - pos: -60.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18758 components: - pos: -61.5,-35.5 @@ -37444,71 +35952,51 @@ entities: - pos: -59.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18763 components: - pos: -59.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18764 components: - pos: -59.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18765 components: - pos: -59.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18766 components: - pos: -59.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18767 components: - pos: -59.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18768 components: - pos: -59.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18769 components: - pos: -59.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18770 components: - pos: -59.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18771 components: - pos: -60.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18772 components: - pos: -61.5,-25.5 @@ -37519,71 +36007,51 @@ entities: - pos: -62.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18774 components: - pos: -63.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18775 components: - pos: -64.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18776 components: - pos: -65.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18777 components: - pos: -56.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18778 components: - pos: -57.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18779 components: - pos: -58.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18780 components: - pos: -59.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18781 components: - pos: -59.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18782 components: - pos: -59.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18783 components: - pos: -49.5,11.5 @@ -37594,43 +36062,31 @@ entities: - pos: -50.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18785 components: - pos: -51.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18786 components: - pos: -51.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18787 components: - pos: -52.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18788 components: - pos: -53.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18789 components: - pos: -54.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18796 components: - pos: -48.5,-31.5 @@ -37681,225 +36137,161 @@ entities: - pos: 40.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19026 components: - pos: 39.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19027 components: - pos: 38.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19028 components: - pos: 37.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19029 components: - pos: 36.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19030 components: - pos: 36.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19031 components: - pos: 36.5,55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19032 components: - pos: 36.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19033 components: - pos: 40.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19034 components: - pos: 40.5,55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19035 components: - pos: 40.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19344 components: - pos: 9.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19345 components: - pos: 10.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19346 components: - pos: 10.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19347 components: - pos: 10.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19348 components: - pos: 10.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19349 components: - pos: 10.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19350 components: - pos: 10.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19351 components: - pos: 10.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19352 components: - pos: 8.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19353 components: - pos: 7.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19354 components: - pos: 7.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19355 components: - pos: 11.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19356 components: - pos: 12.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19357 components: - pos: 13.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19358 components: - pos: 14.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19359 components: - pos: 15.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19360 components: - pos: 16.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19361 components: - pos: 17.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19362 components: - pos: 18.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19363 components: - pos: 19.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19364 components: - pos: 20.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19365 components: - pos: 21.5,7.5 @@ -37995,22 +36387,16 @@ entities: - pos: -20.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19384 components: - pos: -20.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19385 components: - pos: -20.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19413 components: - pos: 23.5,-35.5 @@ -38021,8 +36407,6 @@ entities: - pos: -15.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19456 components: - pos: -16.5,-16.5 @@ -38123,8 +36507,6 @@ entities: - pos: -26.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19476 components: - pos: -26.5,-14.5 @@ -38140,8 +36522,6 @@ entities: - pos: -26.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19479 components: - pos: -26.5,-11.5 @@ -38397,78 +36777,56 @@ entities: - pos: -14.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19531 components: - pos: -14.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19532 components: - pos: -14.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19533 components: - pos: -14.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19534 components: - pos: -14.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19535 components: - pos: -14.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19536 components: - pos: -14.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19537 components: - pos: -13.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19538 components: - pos: -12.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19539 components: - pos: -11.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19540 components: - pos: -10.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19541 components: - pos: -13.5,-17.5 @@ -38489,50 +36847,36 @@ entities: - pos: -10.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19545 components: - pos: -10.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19546 components: - pos: -9.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19547 components: - pos: -8.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19548 components: - pos: -8.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19549 components: - pos: -7.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19550 components: - pos: -6.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19551 components: - pos: -5.5,-16.5 @@ -38708,71 +37052,51 @@ entities: - pos: -10.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19586 components: - pos: -10.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19587 components: - pos: -10.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19588 components: - pos: -11.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19589 components: - pos: -12.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19590 components: - pos: -13.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19591 components: - pos: -14.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19592 components: - pos: -15.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19593 components: - pos: -16.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19594 components: - pos: -17.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19595 components: - pos: -20.5,-5.5 @@ -38828,15 +37152,11 @@ entities: - pos: -24.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19608 components: - pos: -34.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19609 components: - pos: -34.5,-17.5 @@ -38932,8 +37252,6 @@ entities: - pos: -34.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19628 components: - pos: -34.5,-23.5 @@ -38979,8 +37297,6 @@ entities: - pos: -32.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19637 components: - pos: -32.5,-10.5 @@ -39036,8 +37352,6 @@ entities: - pos: -39.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19648 components: - pos: -40.5,-12.5 @@ -39073,141 +37387,101 @@ entities: - pos: -44.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19655 components: - pos: -44.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19656 components: - pos: -44.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19657 components: - pos: -45.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19658 components: - pos: -46.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19659 components: - pos: -47.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19660 components: - pos: -47.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19661 components: - pos: -47.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19662 components: - pos: -47.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19663 components: - pos: -47.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19664 components: - pos: -47.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19665 components: - pos: -47.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19666 components: - pos: -47.5,-4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19667 components: - pos: -47.5,-3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19668 components: - pos: -47.5,-2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19669 components: - pos: -48.5,-2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19670 components: - pos: -48.5,-1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19671 components: - pos: -48.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19672 components: - pos: -48.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19673 components: - pos: -48.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19674 components: - pos: -49.5,1.5 @@ -39253,260 +37527,186 @@ entities: - pos: -48.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19683 components: - pos: -49.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19684 components: - pos: -50.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19685 components: - pos: -51.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19686 components: - pos: -52.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19687 components: - pos: -53.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19688 components: - pos: -54.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19689 components: - pos: -54.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19690 components: - pos: -54.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19691 components: - pos: -54.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19692 components: - pos: -54.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19693 components: - pos: -54.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19694 components: - pos: -54.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19695 components: - pos: -54.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19696 components: - pos: -54.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19697 components: - pos: -54.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19698 components: - pos: -54.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19699 components: - pos: -54.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19700 components: - pos: -54.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19701 components: - pos: -54.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19702 components: - pos: -54.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19703 components: - pos: -53.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19704 components: - pos: -52.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19705 components: - pos: -52.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19706 components: - pos: -51.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19707 components: - pos: -50.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19708 components: - pos: -49.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19709 components: - pos: -48.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19710 components: - pos: -47.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19711 components: - pos: -46.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19712 components: - pos: -45.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19713 components: - pos: -44.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19714 components: - pos: -44.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19715 components: - pos: -44.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19716 components: - pos: -44.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19717 components: - pos: -44.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19718 components: - pos: -44.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19719 components: - pos: -42.5,-11.5 @@ -39547,36 +37747,26 @@ entities: - pos: -45.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19727 components: - pos: -45.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19728 components: - pos: -45.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19729 components: - pos: -45.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19730 components: - pos: -45.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19731 components: - pos: -33.5,-8.5 @@ -39597,8 +37787,6 @@ entities: - pos: -33.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19735 components: - pos: -33.5,-4.5 @@ -39674,15 +37862,11 @@ entities: - pos: -34.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19750 components: - pos: -35.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19751 components: - pos: -36.5,-8.5 @@ -39693,8 +37877,6 @@ entities: - pos: -37.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19753 components: - pos: -38.5,-8.5 @@ -39705,8 +37887,6 @@ entities: - pos: -39.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19755 components: - pos: -40.5,-8.5 @@ -39847,8 +38027,6 @@ entities: - pos: -54.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20273 components: - pos: -56.5,47.5 @@ -39864,8 +38042,6 @@ entities: - pos: -54.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20669 components: - pos: 21.5,-83.5 @@ -39876,22 +38052,16 @@ entities: - pos: -43.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21498 components: - pos: -46.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21499 components: - pos: -45.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21718 components: - pos: 14.5,50.5 @@ -39907,8 +38077,6 @@ entities: - pos: 1.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21942 components: - pos: 10.5,38.5 @@ -39929,8 +38097,6 @@ entities: - pos: 16.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22007 components: - pos: -64.5,-35.5 @@ -39941,169 +38107,121 @@ entities: - pos: -65.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22009 components: - pos: -65.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22010 components: - pos: -65.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22013 components: - pos: -59.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22014 components: - pos: -58.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22015 components: - pos: -57.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22021 components: - pos: -62.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22022 components: - pos: -62.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22023 components: - pos: -62.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22063 components: - pos: 16.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22064 components: - pos: 16.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22065 components: - pos: 16.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22066 components: - pos: 16.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22067 components: - pos: 16.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22068 components: - pos: 16.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22069 components: - pos: 15.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22070 components: - pos: 14.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22071 components: - pos: 13.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22072 components: - pos: 12.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22073 components: - pos: 11.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22074 components: - pos: 10.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22075 components: - pos: 13.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22363 components: - pos: 10.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22364 components: - pos: -14.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22365 components: - pos: -14.5,-32.5 @@ -40124,57 +38242,41 @@ entities: - pos: 15.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22704 components: - pos: 16.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22740 components: - pos: -36.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22822 components: - pos: -31.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22823 components: - pos: -32.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22824 components: - pos: -33.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22825 components: - pos: -34.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22826 components: - pos: -35.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22887 components: - pos: 66.5,-20.5 @@ -40295,8 +38397,6 @@ entities: - pos: -4.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23033 components: - pos: 24.5,79.5 @@ -40327,15 +38427,11 @@ entities: - pos: -6.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23042 components: - pos: -6.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23043 components: - pos: -4.5,-61.5 @@ -40346,8 +38442,6 @@ entities: - pos: -4.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23487 components: - pos: 0.5,-15.5 @@ -40358,78 +38452,56 @@ entities: - pos: -0.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23489 components: - pos: -1.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23490 components: - pos: -1.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23491 components: - pos: -1.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23492 components: - pos: -1.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23728 components: - pos: -1.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23734 components: - pos: -1.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24127 components: - pos: -56.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24128 components: - pos: -55.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24130 components: - pos: -1.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24212 components: - pos: -1.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24482 components: - pos: -54.5,-2.5 @@ -40460,22 +38532,16 @@ entities: - pos: -0.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24798 components: - pos: 0.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24804 components: - pos: 0.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25113 components: - pos: 13.5,53.5 @@ -40496,15 +38562,11 @@ entities: - pos: 21.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25253 components: - pos: -64.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25311 components: - pos: 34.5,32.5 @@ -40515,8 +38577,6 @@ entities: - pos: 21.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25313 components: - pos: 19.5,-86.5 @@ -40542,15 +38602,11 @@ entities: - pos: 19.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25318 components: - pos: 19.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25339 components: - pos: -12.5,-7.5 @@ -40586,120 +38642,86 @@ entities: - pos: 55.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25388 components: - pos: 56.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25389 components: - pos: 57.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25390 components: - pos: 58.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25391 components: - pos: 59.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25392 components: - pos: 60.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25393 components: - pos: 61.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25394 components: - pos: 62.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25395 components: - pos: 63.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25396 components: - pos: 64.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25397 components: - pos: 65.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25398 components: - pos: 66.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25399 components: - pos: 67.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25400 components: - pos: 68.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25401 components: - pos: 69.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25402 components: - pos: 70.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25403 components: - pos: 71.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25404 components: - pos: 72.5,5.5 @@ -40710,15 +38732,11 @@ entities: - pos: 72.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25406 components: - pos: 72.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25407 components: - pos: 73.5,7.5 @@ -40744,8 +38762,6 @@ entities: - pos: -37.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25544 components: - pos: -36.5,45.5 @@ -40761,99 +38777,71 @@ entities: - pos: -34.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25547 components: - pos: -33.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25548 components: - pos: -33.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25549 components: - pos: -37.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25550 components: - pos: -33.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25551 components: - pos: -33.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25552 components: - pos: -37.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25553 components: - pos: -37.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25554 components: - pos: -37.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25555 components: - pos: -37.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25556 components: - pos: -33.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25557 components: - pos: -34.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25558 components: - pos: -35.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25559 components: - pos: -36.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25718 components: - pos: 30.5,74.5 @@ -40869,8 +38857,6 @@ entities: - pos: 30.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25721 components: - pos: 30.5,77.5 @@ -40891,43 +38877,31 @@ entities: - pos: 30.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25837 components: - pos: 29.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25838 components: - pos: 28.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25839 components: - pos: 27.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25840 components: - pos: 26.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25841 components: - pos: 31.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25842 components: - pos: 31.5,73.5 @@ -40938,22 +38912,16 @@ entities: - pos: 32.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25844 components: - pos: 32.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25845 components: - pos: 32.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25963 components: - pos: 50.5,-19.5 @@ -40989,127 +38957,91 @@ entities: - pos: -54.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26015 components: - pos: -54.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26016 components: - pos: -53.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26017 components: - pos: -52.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26018 components: - pos: -51.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26019 components: - pos: -50.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26020 components: - pos: -49.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26021 components: - pos: -48.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26022 components: - pos: -47.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26023 components: - pos: -47.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26024 components: - pos: -46.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26025 components: - pos: -45.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26026 components: - pos: -44.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26027 components: - pos: -43.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26028 components: - pos: -42.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26029 components: - pos: -41.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26030 components: - pos: -40.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26126 components: - pos: -45.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26127 components: - pos: -46.5,-39.5 @@ -41125,8 +39057,6 @@ entities: - pos: -26.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26216 components: - pos: -26.5,18.5 @@ -41222,29 +39152,21 @@ entities: - pos: -34.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26235 components: - pos: -34.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26236 components: - pos: -34.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 26237 components: - pos: -34.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 4173 @@ -41380,36 +39302,26 @@ entities: - pos: 16.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 361 components: - pos: 16.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1081 components: - pos: 14.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2220 components: - pos: 16.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2225 components: - pos: 16.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2230 components: - pos: 16.5,-15.5 @@ -41420,29 +39332,21 @@ entities: - pos: 15.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3777 components: - pos: 15.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3778 components: - pos: 16.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4164 components: - pos: -19.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4487 components: - pos: -22.5,45.5 @@ -41453,15 +39357,11 @@ entities: - pos: -28.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4532 components: - pos: -22.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4533 components: - pos: -28.5,45.5 @@ -42692,71 +40592,51 @@ entities: - pos: 29.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4784 components: - pos: 28.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4785 components: - pos: 27.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4786 components: - pos: 26.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4787 components: - pos: 25.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4788 components: - pos: 24.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4789 components: - pos: 23.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4790 components: - pos: 22.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4791 components: - pos: 21.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4792 components: - pos: 20.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4793 components: - pos: 19.5,30.5 @@ -42977,295 +40857,211 @@ entities: - pos: -5.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4837 components: - pos: -5.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4838 components: - pos: -5.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4839 components: - pos: -5.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4840 components: - pos: -5.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4841 components: - pos: -5.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4842 components: - pos: -5.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4843 components: - pos: -5.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4844 components: - pos: -5.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4845 components: - pos: -6.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4846 components: - pos: -7.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4847 components: - pos: -8.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4848 components: - pos: -8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4849 components: - pos: -8.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4850 components: - pos: -8.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4851 components: - pos: -8.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4852 components: - pos: -8.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4853 components: - pos: -8.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4854 components: - pos: -8.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4855 components: - pos: -9.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4856 components: - pos: -10.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4857 components: - pos: -10.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4858 components: - pos: -10.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4859 components: - pos: -10.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4860 components: - pos: -10.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4861 components: - pos: -10.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4862 components: - pos: -10.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4863 components: - pos: -10.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4864 components: - pos: -10.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4865 components: - pos: -11.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4866 components: - pos: -12.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4867 components: - pos: -13.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4868 components: - pos: -14.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4869 components: - pos: -15.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4870 components: - pos: -16.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4871 components: - pos: -16.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4872 components: - pos: -16.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4873 components: - pos: -16.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4874 components: - pos: -16.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4875 components: - pos: -16.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4876 components: - pos: -15.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4877 components: - pos: -14.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4878 components: - pos: -14.5,-1.5 @@ -43281,141 +41077,101 @@ entities: - pos: -7.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4881 components: - pos: -8.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4882 components: - pos: -9.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4883 components: - pos: -10.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4884 components: - pos: -11.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4885 components: - pos: -12.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4886 components: - pos: -13.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4887 components: - pos: -14.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4888 components: - pos: -14.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4889 components: - pos: -14.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4890 components: - pos: -14.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4891 components: - pos: -14.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4892 components: - pos: -14.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4893 components: - pos: -14.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4894 components: - pos: -13.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4895 components: - pos: -12.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4896 components: - pos: -11.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4897 components: - pos: -10.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4898 components: - pos: -10.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4899 components: - pos: -10.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4904 components: - pos: -6.5,-45.5 @@ -43431,8 +41187,6 @@ entities: - pos: -12.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4907 components: - pos: -7.5,-45.5 @@ -43443,421 +41197,301 @@ entities: - pos: -8.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4909 components: - pos: -9.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4910 components: - pos: -10.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4911 components: - pos: -11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4912 components: - pos: -12.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4913 components: - pos: -13.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4914 components: - pos: -14.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4915 components: - pos: -15.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4916 components: - pos: -16.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4922 components: - pos: -22.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4923 components: - pos: -22.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4924 components: - pos: -23.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4925 components: - pos: -24.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4926 components: - pos: -25.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4927 components: - pos: -26.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4928 components: - pos: -27.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4929 components: - pos: -27.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4930 components: - pos: -27.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4931 components: - pos: -28.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4932 components: - pos: -29.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4933 components: - pos: -30.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4934 components: - pos: -31.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4935 components: - pos: -32.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4936 components: - pos: -33.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4937 components: - pos: -34.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4938 components: - pos: -35.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4939 components: - pos: -36.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4940 components: - pos: -37.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4941 components: - pos: -38.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4942 components: - pos: -39.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4943 components: - pos: -40.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4944 components: - pos: -41.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4945 components: - pos: -42.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4946 components: - pos: -43.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4947 components: - pos: -44.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4948 components: - pos: -45.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4949 components: - pos: -46.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4950 components: - pos: -47.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4951 components: - pos: -48.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4952 components: - pos: -49.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4953 components: - pos: -50.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4954 components: - pos: -51.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4955 components: - pos: -52.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4956 components: - pos: -53.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4957 components: - pos: -54.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4958 components: - pos: -54.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4959 components: - pos: -54.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4960 components: - pos: -54.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4961 components: - pos: -54.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4962 components: - pos: -54.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4963 components: - pos: -54.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4964 components: - pos: -54.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4965 components: - pos: -54.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4966 components: - pos: -54.5,-37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4967 components: - pos: -54.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4968 components: - pos: -54.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4969 components: - pos: -54.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4970 components: - pos: -55.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4971 components: - pos: -56.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4972 components: - pos: -57.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4973 components: - pos: -4.5,-51.5 @@ -43873,134 +41507,96 @@ entities: - pos: -2.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4976 components: - pos: -2.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4977 components: - pos: -2.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4978 components: - pos: -1.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4979 components: - pos: -0.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4980 components: - pos: 0.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4981 components: - pos: 1.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4982 components: - pos: 2.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4983 components: - pos: 3.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4984 components: - pos: 4.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4985 components: - pos: 5.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4986 components: - pos: 6.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4995 components: - pos: 6.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4996 components: - pos: 6.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4997 components: - pos: 7.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4998 components: - pos: 8.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4999 components: - pos: 9.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5000 components: - pos: 10.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5001 components: - pos: 11.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5002 components: - pos: 12.5,-47.5 @@ -44161,176 +41757,126 @@ entities: - pos: 54.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5034 components: - pos: 54.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5035 components: - pos: 54.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5036 components: - pos: 54.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5037 components: - pos: 53.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5038 components: - pos: 52.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5039 components: - pos: 51.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5040 components: - pos: 50.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5041 components: - pos: 49.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5042 components: - pos: 48.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5043 components: - pos: 47.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5044 components: - pos: 46.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5045 components: - pos: 45.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5046 components: - pos: 44.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5047 components: - pos: 43.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5048 components: - pos: 42.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5049 components: - pos: 41.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5050 components: - pos: 41.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5051 components: - pos: 40.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5052 components: - pos: 39.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5053 components: - pos: 38.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5054 components: - pos: 37.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5055 components: - pos: 36.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5056 components: - pos: 35.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5057 components: - pos: 35.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5058 components: - pos: 34.5,7.5 @@ -44376,127 +41922,91 @@ entities: - pos: 31.5,-4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5067 components: - pos: 31.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5068 components: - pos: 31.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5069 components: - pos: 31.5,-7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5070 components: - pos: 31.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5071 components: - pos: 31.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5072 components: - pos: 31.5,-10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5073 components: - pos: 31.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5074 components: - pos: 30.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5075 components: - pos: 29.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5076 components: - pos: 28.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5077 components: - pos: 27.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5078 components: - pos: 26.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5079 components: - pos: 25.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5080 components: - pos: 24.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5081 components: - pos: 23.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5082 components: - pos: 22.5,-11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5083 components: - pos: 22.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5084 components: - pos: 21.5,-12.5 @@ -44807,239 +42317,171 @@ entities: - pos: 34.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5146 components: - pos: 35.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5147 components: - pos: 36.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5148 components: - pos: 37.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5149 components: - pos: 38.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5150 components: - pos: 39.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5151 components: - pos: 39.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5152 components: - pos: 39.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5153 components: - pos: 39.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5154 components: - pos: 39.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5155 components: - pos: 39.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5156 components: - pos: 39.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5157 components: - pos: 39.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5158 components: - pos: 39.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5159 components: - pos: 39.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5160 components: - pos: 40.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5161 components: - pos: 41.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5162 components: - pos: 42.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5163 components: - pos: 43.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5164 components: - pos: 44.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5165 components: - pos: 45.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5166 components: - pos: 46.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5167 components: - pos: 47.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5168 components: - pos: 47.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5169 components: - pos: 47.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5170 components: - pos: 47.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5171 components: - pos: 47.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5172 components: - pos: 47.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5173 components: - pos: 47.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5174 components: - pos: 47.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5175 components: - pos: 47.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5176 components: - pos: 11.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5177 components: - pos: 11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5178 components: - pos: 11.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5179 components: - pos: 11.5,-43.5 @@ -45050,15 +42492,11 @@ entities: - pos: 11.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5181 components: - pos: 11.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5182 components: - pos: 12.5,-41.5 @@ -45074,22 +42512,16 @@ entities: - pos: 55.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5201 components: - pos: 56.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5202 components: - pos: 57.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5203 components: - pos: 57.5,6.5 @@ -45105,92 +42537,66 @@ entities: - pos: 25.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5206 components: - pos: 24.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5207 components: - pos: 23.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5208 components: - pos: 22.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5209 components: - pos: 21.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5210 components: - pos: 20.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5211 components: - pos: 19.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5212 components: - pos: 19.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5213 components: - pos: 19.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5214 components: - pos: 19.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5215 components: - pos: 19.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5216 components: - pos: 19.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5217 components: - pos: 19.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5218 components: - pos: 19.5,-1.5 @@ -45201,8 +42607,6 @@ entities: - pos: -25.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5226 components: - pos: -23.5,44.5 @@ -45218,29 +42622,21 @@ entities: - pos: -21.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5229 components: - pos: -22.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5230 components: - pos: -22.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5231 components: - pos: -28.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5232 components: - pos: -16.5,39.5 @@ -45281,50 +42677,36 @@ entities: - pos: -28.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5241 components: - pos: -27.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5242 components: - pos: -26.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5243 components: - pos: -25.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5244 components: - pos: -24.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5245 components: - pos: -23.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5246 components: - pos: -25.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5247 components: - pos: -18.5,44.5 @@ -45390,8 +42772,6 @@ entities: - pos: -29.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5296 components: - pos: -12.5,40.5 @@ -45462,57 +42842,41 @@ entities: - pos: -13.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5421 components: - pos: -13.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5422 components: - pos: -15.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5423 components: - pos: -14.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5424 components: - pos: -13.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5425 components: - pos: -12.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5426 components: - pos: -11.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5427 components: - pos: -10.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5499 components: - pos: -20.5,45.5 @@ -45578,8 +42942,6 @@ entities: - pos: -33.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5612 components: - pos: -20.5,55.5 @@ -45595,771 +42957,551 @@ entities: - pos: -20.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5615 components: - pos: -20.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5616 components: - pos: -20.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5617 components: - pos: -20.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5627 components: - pos: -37.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5628 components: - pos: -30.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5629 components: - pos: -21.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5630 components: - pos: -20.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5631 components: - pos: -20.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5632 components: - pos: -20.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5633 components: - pos: -20.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5634 components: - pos: -21.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5635 components: - pos: -22.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5636 components: - pos: -23.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5637 components: - pos: -24.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5638 components: - pos: -25.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5639 components: - pos: -26.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5640 components: - pos: -27.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5641 components: - pos: -28.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5642 components: - pos: -29.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5643 components: - pos: -30.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5679 components: - pos: -22.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5680 components: - pos: -12.5,83.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5689 components: - pos: -20.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5701 components: - pos: -14.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5702 components: - pos: -25.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5703 components: - pos: -32.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5704 components: - pos: -38.5,83.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5730 components: - pos: -33.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5789 components: - pos: -26.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5799 components: - pos: -24.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5856 components: - pos: -38.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5869 components: - pos: -31.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5870 components: - pos: -13.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5922 components: - pos: -33.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5927 components: - pos: -38.5,82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5928 components: - pos: -33.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5929 components: - pos: -15.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5984 components: - pos: -12.5,81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5985 components: - pos: -17.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5986 components: - pos: -28.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5987 components: - pos: -35.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5988 components: - pos: -38.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5993 components: - pos: -33.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6102 components: - pos: -12.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6103 components: - pos: -16.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6169 components: - pos: -27.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6170 components: - pos: -34.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6171 components: - pos: -38.5,81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6176 components: - pos: -33.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6178 components: - pos: -15.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6179 components: - pos: -14.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6180 components: - pos: -13.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6181 components: - pos: -12.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6182 components: - pos: -35.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6183 components: - pos: -36.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6184 components: - pos: -37.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6185 components: - pos: -38.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6186 components: - pos: -38.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6187 components: - pos: -38.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6188 components: - pos: -38.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6189 components: - pos: -38.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6190 components: - pos: -38.5,77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6191 components: - pos: -38.5,78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6192 components: - pos: -38.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6218 components: - pos: -23.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6219 components: - pos: -12.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6232 components: - pos: -12.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6233 components: - pos: -12.5,78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6234 components: - pos: -12.5,77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6235 components: - pos: -12.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6236 components: - pos: -12.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6237 components: - pos: -12.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6238 components: - pos: -12.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6239 components: - pos: -12.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6240 components: - pos: -12.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6241 components: - pos: -12.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6242 components: - pos: -12.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6243 components: - pos: -12.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6244 components: - pos: -12.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6245 components: - pos: -12.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6246 components: - pos: -12.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6247 components: - pos: -12.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6248 components: - pos: -12.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6249 components: - pos: -12.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6250 components: - pos: -12.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6251 components: - pos: -13.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6252 components: - pos: -14.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6253 components: - pos: -15.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6254 components: - pos: -16.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6255 components: - pos: -38.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6256 components: - pos: -38.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6257 components: - pos: -38.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6258 components: - pos: -38.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6259 components: - pos: -38.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6260 components: - pos: -38.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6261 components: - pos: -38.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6262 components: - pos: -38.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6263 components: - pos: -38.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6264 components: - pos: -38.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6265 components: - pos: -38.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6266 components: - pos: -38.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6267 components: - pos: -38.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6268 components: - pos: -37.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6269 components: - pos: -36.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6270 components: - pos: -35.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6271 components: - pos: -34.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6272 components: - pos: -33.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6273 components: - pos: -32.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6274 components: - pos: -31.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6936 components: - pos: -28.5,15.5 @@ -46405,43 +43547,31 @@ entities: - pos: -41.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10176 components: - pos: -41.5,-52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10177 components: - pos: -40.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10178 components: - pos: -40.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10179 components: - pos: -40.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10180 components: - pos: -41.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10181 components: - pos: -41.5,-48.5 @@ -46452,99 +43582,71 @@ entities: - pos: -42.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10194 components: - pos: -41.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10195 components: - pos: -58.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10196 components: - pos: -59.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10197 components: - pos: -59.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10198 components: - pos: -59.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10199 components: - pos: -59.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10200 components: - pos: -59.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10201 components: - pos: -59.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10202 components: - pos: -59.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10203 components: - pos: -59.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10204 components: - pos: -59.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10205 components: - pos: -59.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10206 components: - pos: -60.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10207 components: - pos: -61.5,-25.5 @@ -46555,960 +43657,686 @@ entities: - pos: -62.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10209 components: - pos: -62.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10211 components: - pos: -63.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10212 components: - pos: -64.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10213 components: - pos: -65.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10215 components: - pos: -62.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10216 components: - pos: -65.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10217 components: - pos: -66.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10226 components: - pos: -65.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10340 components: - pos: -16.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11436 components: - pos: -33.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11505 components: - pos: -36.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11506 components: - pos: -29.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11507 components: - pos: -18.5,84.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11508 components: - pos: -12.5,82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11752 components: - pos: -75.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11753 components: - pos: -75.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11754 components: - pos: -75.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11755 components: - pos: -75.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11756 components: - pos: -75.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11757 components: - pos: -75.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11758 components: - pos: -75.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11759 components: - pos: -75.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11760 components: - pos: -73.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11761 components: - pos: -73.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11762 components: - pos: -73.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11763 components: - pos: -73.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11764 components: - pos: -73.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11765 components: - pos: -73.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11766 components: - pos: -73.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11767 components: - pos: -73.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11768 components: - pos: -74.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11769 components: - pos: -74.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11770 components: - pos: -74.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11771 components: - pos: -74.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11772 components: - pos: -74.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11773 components: - pos: -75.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11774 components: - pos: -75.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11775 components: - pos: -75.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11776 components: - pos: -75.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11777 components: - pos: -75.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11778 components: - pos: -75.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11779 components: - pos: -75.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11780 components: - pos: -75.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11781 components: - pos: -73.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11782 components: - pos: -73.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11783 components: - pos: -73.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11784 components: - pos: -73.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11785 components: - pos: -73.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11786 components: - pos: -73.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11787 components: - pos: -73.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11788 components: - pos: -73.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11789 components: - pos: -71.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11790 components: - pos: -71.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11791 components: - pos: -71.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11792 components: - pos: -71.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11793 components: - pos: -71.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11794 components: - pos: -71.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11795 components: - pos: -71.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11796 components: - pos: -71.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11797 components: - pos: -70.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11798 components: - pos: -69.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11799 components: - pos: -69.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11800 components: - pos: -69.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11801 components: - pos: -69.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11802 components: - pos: -69.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11803 components: - pos: -69.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11804 components: - pos: -69.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11805 components: - pos: -69.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11806 components: - pos: -67.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11807 components: - pos: -67.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11808 components: - pos: -67.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11809 components: - pos: -67.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11810 components: - pos: -67.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11811 components: - pos: -67.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11812 components: - pos: -67.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11813 components: - pos: -67.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11814 components: - pos: -65.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11815 components: - pos: -65.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11816 components: - pos: -65.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11817 components: - pos: -65.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11818 components: - pos: -65.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11819 components: - pos: -65.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11820 components: - pos: -65.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11821 components: - pos: -65.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11822 components: - pos: -66.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11823 components: - pos: -70.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11824 components: - pos: -70.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11825 components: - pos: -70.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11826 components: - pos: -70.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11827 components: - pos: -71.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11828 components: - pos: -71.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11829 components: - pos: -71.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11830 components: - pos: -71.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11831 components: - pos: -71.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11832 components: - pos: -71.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11833 components: - pos: -71.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11834 components: - pos: -71.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11835 components: - pos: -69.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11836 components: - pos: -69.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11837 components: - pos: -69.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11838 components: - pos: -69.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11839 components: - pos: -69.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11840 components: - pos: -69.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11841 components: - pos: -69.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11842 components: - pos: -69.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11843 components: - pos: -70.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11844 components: - pos: -67.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11845 components: - pos: -67.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11846 components: - pos: -67.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11847 components: - pos: -67.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11848 components: - pos: -67.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11849 components: - pos: -67.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11850 components: - pos: -67.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11851 components: - pos: -67.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11852 components: - pos: -65.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11853 components: - pos: -65.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11854 components: - pos: -65.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11855 components: - pos: -65.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11856 components: - pos: -65.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11857 components: - pos: -65.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11858 components: - pos: -65.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11859 components: - pos: -65.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11860 components: - pos: -66.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11862 components: - pos: -53.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11863 components: - pos: -54.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11864 components: - pos: -55.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11865 components: - pos: -56.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11866 components: - pos: -57.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11867 components: - pos: -58.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11868 components: - pos: -59.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11875 components: - pos: -53.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11876 components: - pos: -52.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11877 components: - pos: -51.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11878 components: - pos: -51.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11879 components: - pos: -50.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12714 components: - pos: 14.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12715 components: - pos: 14.5,-22.5 @@ -47524,57 +44352,41 @@ entities: - pos: 15.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12724 components: - pos: 16.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13011 components: - pos: -23.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13149 components: - pos: -22.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13240 components: - pos: -24.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13270 components: - pos: -25.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13378 components: - pos: -17.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13379 components: - pos: -18.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13957 components: - pos: 17.5,-11.5 @@ -47805,8 +44617,6 @@ entities: - pos: 19.5,-58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14269 components: - pos: 19.5,-59.5 @@ -47832,141 +44642,101 @@ entities: - pos: 19.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14274 components: - pos: 19.5,-64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14275 components: - pos: 19.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14276 components: - pos: 19.5,-66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14277 components: - pos: 19.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14278 components: - pos: 19.5,-68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14279 components: - pos: 19.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14280 components: - pos: 19.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14281 components: - pos: 19.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14282 components: - pos: 19.5,-72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14283 components: - pos: 19.5,-73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14284 components: - pos: 19.5,-74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14285 components: - pos: 19.5,-75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14286 components: - pos: 19.5,-76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14287 components: - pos: 19.5,-77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14288 components: - pos: 19.5,-78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14289 components: - pos: 19.5,-79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14290 components: - pos: 19.5,-80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14291 components: - pos: 19.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14292 components: - pos: 19.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14293 components: - pos: 19.5,-83.5 @@ -48017,8 +44787,6 @@ entities: - pos: 29.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14313 components: - pos: 13.5,-91.5 @@ -48034,8 +44802,6 @@ entities: - pos: 11.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15170 components: - pos: -22.5,56.5 @@ -48046,162 +44812,116 @@ entities: - pos: -21.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16303 components: - pos: -21.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16435 components: - pos: -30.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16436 components: - pos: -30.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16437 components: - pos: -30.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16438 components: - pos: -30.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16439 components: - pos: -31.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16440 components: - pos: -31.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16441 components: - pos: -30.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16442 components: - pos: -30.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16443 components: - pos: -30.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16444 components: - pos: -30.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16445 components: - pos: -30.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16446 components: - pos: -30.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16447 components: - pos: -30.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16448 components: - pos: -30.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16449 components: - pos: -30.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16450 components: - pos: -30.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16451 components: - pos: -30.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16452 components: - pos: -30.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16453 components: - pos: -30.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16454 components: - pos: -31.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16455 components: - pos: -31.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16456 components: - pos: -31.5,32.5 @@ -48252,162 +44972,116 @@ entities: - pos: 40.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17296 components: - pos: 47.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17297 components: - pos: 47.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17314 components: - pos: 47.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17315 components: - pos: 46.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17317 components: - pos: 45.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17318 components: - pos: 44.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17319 components: - pos: 43.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17320 components: - pos: 42.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17321 components: - pos: 41.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17322 components: - pos: 40.5,50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17323 components: - pos: 40.5,49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17324 components: - pos: 40.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17325 components: - pos: 40.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17326 components: - pos: 40.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17327 components: - pos: 45.5,51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17328 components: - pos: 45.5,52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17329 components: - pos: 45.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17330 components: - pos: 45.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18371 components: - pos: -21.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18372 components: - pos: -20.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18373 components: - pos: -19.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18835 components: - pos: -9.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19054 components: - pos: 20.5,50.5 @@ -48428,22 +45102,16 @@ entities: - pos: 20.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19058 components: - pos: 20.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19059 components: - pos: 20.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19060 components: - pos: 19.5,45.5 @@ -48454,92 +45122,66 @@ entities: - pos: 18.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19062 components: - pos: 17.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19063 components: - pos: 16.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19064 components: - pos: 15.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19065 components: - pos: 14.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19066 components: - pos: 13.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19067 components: - pos: 12.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19068 components: - pos: 11.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19069 components: - pos: 11.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19070 components: - pos: 10.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19071 components: - pos: 9.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19072 components: - pos: 8.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19073 components: - pos: 7.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19074 components: - pos: -5.5,32.5 @@ -48725,15 +45367,11 @@ entities: - pos: -16.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20537 components: - pos: -8.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20538 components: - pos: -8.5,36.5 @@ -48744,1576 +45382,1126 @@ entities: - pos: -67.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20917 components: - pos: -68.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20918 components: - pos: -83.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20919 components: - pos: -83.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20920 components: - pos: -83.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20921 components: - pos: -83.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20922 components: - pos: -83.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20923 components: - pos: -83.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20924 components: - pos: -83.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20925 components: - pos: -83.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20926 components: - pos: -81.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20927 components: - pos: -81.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20928 components: - pos: -81.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20929 components: - pos: -81.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20930 components: - pos: -81.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20931 components: - pos: -81.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20932 components: - pos: -81.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20933 components: - pos: -81.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20934 components: - pos: -79.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20935 components: - pos: -79.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20936 components: - pos: -79.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20937 components: - pos: -79.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20938 components: - pos: -79.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20939 components: - pos: -79.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20940 components: - pos: -79.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20941 components: - pos: -79.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20942 components: - pos: -77.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20943 components: - pos: -77.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20944 components: - pos: -77.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20945 components: - pos: -77.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20946 components: - pos: -77.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20947 components: - pos: -77.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20948 components: - pos: -77.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20949 components: - pos: -77.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20950 components: - pos: -75.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20951 components: - pos: -75.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20952 components: - pos: -75.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20953 components: - pos: -75.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20954 components: - pos: -75.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20955 components: - pos: -75.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20956 components: - pos: -75.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20957 components: - pos: -75.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20958 components: - pos: -85.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20959 components: - pos: -84.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20960 components: - pos: -83.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20961 components: - pos: -82.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20962 components: - pos: -82.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20963 components: - pos: -82.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20964 components: - pos: -82.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20965 components: - pos: -82.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20966 components: - pos: -83.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20967 components: - pos: -83.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20968 components: - pos: -83.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20969 components: - pos: -83.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20970 components: - pos: -83.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20971 components: - pos: -83.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20972 components: - pos: -83.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20973 components: - pos: -83.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20974 components: - pos: -81.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20975 components: - pos: -81.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20976 components: - pos: -81.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20977 components: - pos: -81.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20978 components: - pos: -81.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20979 components: - pos: -81.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20980 components: - pos: -81.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20981 components: - pos: -81.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20982 components: - pos: -79.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20983 components: - pos: -79.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20984 components: - pos: -79.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20985 components: - pos: -79.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20986 components: - pos: -79.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20987 components: - pos: -79.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20988 components: - pos: -79.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20989 components: - pos: -79.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20990 components: - pos: -77.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20991 components: - pos: -77.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20992 components: - pos: -77.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20993 components: - pos: -77.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20994 components: - pos: -77.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20995 components: - pos: -77.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20996 components: - pos: -77.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20997 components: - pos: -77.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20998 components: - pos: -78.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20999 components: - pos: -75.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21000 components: - pos: -75.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21001 components: - pos: -75.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21002 components: - pos: -75.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21003 components: - pos: -75.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21004 components: - pos: -75.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21005 components: - pos: -75.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21006 components: - pos: -75.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21007 components: - pos: -73.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21008 components: - pos: -73.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21009 components: - pos: -73.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21010 components: - pos: -73.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21011 components: - pos: -73.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21012 components: - pos: -73.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21013 components: - pos: -73.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21014 components: - pos: -73.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21015 components: - pos: -74.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21016 components: - pos: -73.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21017 components: - pos: -73.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21018 components: - pos: -73.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21019 components: - pos: -73.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21020 components: - pos: -73.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21021 components: - pos: -73.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21022 components: - pos: -73.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21023 components: - pos: -73.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21024 components: - pos: -74.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21025 components: - pos: -78.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21252 components: - pos: -41.5,-53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21253 components: - pos: -41.5,-54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21254 components: - pos: -41.5,-55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21255 components: - pos: -32.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21256 components: - pos: -33.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21257 components: - pos: -34.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21258 components: - pos: -35.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21259 components: - pos: -36.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21260 components: - pos: -37.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21261 components: - pos: -38.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21262 components: - pos: -39.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21263 components: - pos: -32.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21264 components: - pos: -33.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21265 components: - pos: -34.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21266 components: - pos: -35.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21267 components: - pos: -36.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21268 components: - pos: -37.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21269 components: - pos: -38.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21270 components: - pos: -39.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21271 components: - pos: -32.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21272 components: - pos: -33.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21273 components: - pos: -34.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21274 components: - pos: -35.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21275 components: - pos: -36.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21276 components: - pos: -37.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21277 components: - pos: -38.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21278 components: - pos: -39.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21279 components: - pos: -32.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21280 components: - pos: -33.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21281 components: - pos: -34.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21282 components: - pos: -35.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21283 components: - pos: -36.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21284 components: - pos: -37.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21285 components: - pos: -38.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21286 components: - pos: -39.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21287 components: - pos: -32.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21288 components: - pos: -33.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21289 components: - pos: -34.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21290 components: - pos: -35.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21291 components: - pos: -36.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21292 components: - pos: -37.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21293 components: - pos: -38.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21294 components: - pos: -39.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21295 components: - pos: -32.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21296 components: - pos: -33.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21297 components: - pos: -34.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21298 components: - pos: -35.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21299 components: - pos: -36.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21300 components: - pos: -37.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21301 components: - pos: -38.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21302 components: - pos: -39.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21303 components: - pos: -39.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21304 components: - pos: -40.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21305 components: - pos: -41.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21306 components: - pos: -41.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21307 components: - pos: -41.5,-72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21308 components: - pos: -41.5,-73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21309 components: - pos: -50.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21310 components: - pos: -49.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21311 components: - pos: -48.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21312 components: - pos: -47.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21313 components: - pos: -46.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21314 components: - pos: -45.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21315 components: - pos: -44.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21316 components: - pos: -43.5,-71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21317 components: - pos: -50.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21318 components: - pos: -49.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21319 components: - pos: -48.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21320 components: - pos: -47.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21321 components: - pos: -46.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21322 components: - pos: -45.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21323 components: - pos: -44.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21324 components: - pos: -43.5,-69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21325 components: - pos: -43.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21326 components: - pos: -50.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21327 components: - pos: -49.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21328 components: - pos: -48.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21329 components: - pos: -47.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21330 components: - pos: -46.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21331 components: - pos: -45.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21332 components: - pos: -44.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21333 components: - pos: -43.5,-67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21334 components: - pos: -50.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21335 components: - pos: -49.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21336 components: - pos: -48.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21337 components: - pos: -47.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21338 components: - pos: -46.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21339 components: - pos: -45.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21340 components: - pos: -44.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21341 components: - pos: -43.5,-65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21342 components: - pos: -43.5,-66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21343 components: - pos: -39.5,-66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21344 components: - pos: -39.5,-62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21345 components: - pos: -43.5,-62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21346 components: - pos: -43.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21347 components: - pos: -44.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21348 components: - pos: -45.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21349 components: - pos: -46.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21350 components: - pos: -47.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21351 components: - pos: -48.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21352 components: - pos: -49.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21353 components: - pos: -50.5,-61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21354 components: - pos: -50.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21355 components: - pos: -49.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21356 components: - pos: -48.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21357 components: - pos: -47.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21358 components: - pos: -46.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21359 components: - pos: -45.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21360 components: - pos: -44.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21361 components: - pos: -43.5,-63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21362 components: - pos: -42.5,-70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21581 components: - pos: -6.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21583 components: - pos: -7.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21584 components: - pos: -8.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21586 components: - pos: -6.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21587 components: - pos: -5.5,5.5 @@ -50324,190 +46512,136 @@ entities: - pos: -4.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21646 components: - pos: -17.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22413 components: - pos: -48.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22414 components: - pos: -48.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22415 components: - pos: -48.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22416 components: - pos: -47.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22417 components: - pos: -46.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22418 components: - pos: -45.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22419 components: - pos: -44.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22420 components: - pos: -43.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22421 components: - pos: -42.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22422 components: - pos: -41.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22423 components: - pos: -40.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22424 components: - pos: -39.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22425 components: - pos: -38.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22426 components: - pos: -37.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22427 components: - pos: -36.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22428 components: - pos: -35.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22429 components: - pos: -34.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22430 components: - pos: -31.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22431 components: - pos: -31.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22432 components: - pos: -30.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22433 components: - pos: -29.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22434 components: - pos: -28.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22435 components: - pos: -27.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22436 components: - pos: -26.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22437 components: - pos: -25.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22438 components: - pos: -24.5,9.5 @@ -50518,8 +46652,6 @@ entities: - pos: -48.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22440 components: - pos: -49.5,11.5 @@ -50530,57 +46662,41 @@ entities: - pos: -32.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22580 components: - pos: -33.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22709 components: - pos: -17.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22711 components: - pos: -17.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22715 components: - pos: 16.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22719 components: - pos: -33.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22727 components: - pos: -17.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22728 components: - pos: -17.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22832 components: - pos: -1.5,55.5 @@ -50616,43 +46732,31 @@ entities: - pos: 19.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22839 components: - pos: 20.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22840 components: - pos: 20.5,32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22841 components: - pos: 20.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22842 components: - pos: 20.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22843 components: - pos: 20.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22844 components: - pos: 20.5,36.5 @@ -50663,8 +46767,6 @@ entities: - pos: 20.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22846 components: - pos: 20.5,38.5 @@ -50675,36 +46777,26 @@ entities: - pos: 20.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22848 components: - pos: 20.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22849 components: - pos: 20.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22850 components: - pos: 20.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22851 components: - pos: 20.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22852 components: - pos: 20.5,44.5 @@ -50715,155 +46807,111 @@ entities: - pos: 20.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22854 components: - pos: 20.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22855 components: - pos: 20.5,28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22856 components: - pos: 20.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22857 components: - pos: 20.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22858 components: - pos: 20.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22859 components: - pos: 20.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22860 components: - pos: 20.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22861 components: - pos: 20.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22862 components: - pos: 21.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22863 components: - pos: 22.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22864 components: - pos: 25.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22865 components: - pos: 24.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22866 components: - pos: 23.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22867 components: - pos: 23.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22868 components: - pos: 23.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22869 components: - pos: 24.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22870 components: - pos: 25.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22871 components: - pos: 26.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22872 components: - pos: 27.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22873 components: - pos: 28.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22874 components: - pos: 29.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22875 components: - pos: 30.5,20.5 @@ -50889,78 +46937,56 @@ entities: - pos: -1.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23045 components: - pos: -1.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23477 components: - pos: -1.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23478 components: - pos: -1.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23479 components: - pos: -1.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23480 components: - pos: -1.5,-18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23481 components: - pos: -1.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23482 components: - pos: -1.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23483 components: - pos: -0.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23484 components: - pos: 0.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23485 components: - pos: 0.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 23486 components: - pos: 0.5,-22.5 @@ -51016,36 +47042,26 @@ entities: - pos: -15.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25298 components: - pos: -34.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25299 components: - pos: -35.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25473 components: - pos: -17.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25474 components: - pos: -17.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25494 components: - pos: -29.5,16.5 @@ -51066,8 +47082,6 @@ entities: - pos: 20.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25760 components: - pos: 20.5,54.5 @@ -51233,8 +47247,6 @@ entities: - pos: 30.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25793 components: - pos: 30.5,77.5 @@ -51304,106 +47316,76 @@ entities: - pos: 15.5,-13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 1190 components: - pos: -34.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3869 components: - pos: -11.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3870 components: - pos: -12.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3871 components: - pos: -13.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3872 components: - pos: -14.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3873 components: - pos: -15.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3874 components: - pos: -16.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3875 components: - pos: -16.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3876 components: - pos: -16.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3877 components: - pos: -16.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3878 components: - pos: -16.5,0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3879 components: - pos: -16.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3880 components: - pos: -15.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3881 components: - pos: -14.5,-0.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 3882 components: - pos: -14.5,-1.5 @@ -51439,43 +47421,31 @@ entities: - pos: -29.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4347 components: - pos: -31.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4348 components: - pos: -33.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4349 components: - pos: -35.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4919 components: - pos: -23.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 4921 components: - pos: -15.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5383 components: - pos: -11.5,-4.5 @@ -51491,365 +47461,261 @@ entities: - pos: -34.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5645 components: - pos: -33.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5646 components: - pos: -32.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5647 components: - pos: -31.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5648 components: - pos: -30.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5649 components: - pos: -29.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5650 components: - pos: -28.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5651 components: - pos: -27.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5652 components: - pos: -26.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5653 components: - pos: -25.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5654 components: - pos: -24.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5655 components: - pos: -23.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5656 components: - pos: -22.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5657 components: - pos: -21.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5658 components: - pos: -20.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5659 components: - pos: -19.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5660 components: - pos: -18.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5661 components: - pos: -17.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5662 components: - pos: -16.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5663 components: - pos: -15.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5664 components: - pos: -15.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5665 components: - pos: -15.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5666 components: - pos: -15.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5667 components: - pos: -15.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5668 components: - pos: -15.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5669 components: - pos: -15.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5670 components: - pos: -15.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5671 components: - pos: -15.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5672 components: - pos: -15.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5673 components: - pos: -15.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5674 components: - pos: -15.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5675 components: - pos: -15.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5676 components: - pos: -15.5,77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5677 components: - pos: -15.5,78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5678 components: - pos: -15.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5688 components: - pos: -21.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5708 components: - pos: -35.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5709 components: - pos: -35.5,78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5710 components: - pos: -35.5,77.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5711 components: - pos: -35.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5712 components: - pos: -35.5,75.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5713 components: - pos: -35.5,74.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5714 components: - pos: -35.5,73.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5715 components: - pos: -35.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5716 components: - pos: -35.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5717 components: - pos: -35.5,70.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5718 components: - pos: -35.5,69.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5719 components: - pos: -35.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5720 components: - pos: -35.5,67.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5721 components: - pos: -35.5,66.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5722 components: - pos: -35.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5723 components: - pos: -35.5,64.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5732 components: - pos: -22.5,56.5 @@ -51890,169 +47756,121 @@ entities: - pos: -20.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5740 components: - pos: -20.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5741 components: - pos: -20.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5776 components: - pos: -17.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5777 components: - pos: -18.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5778 components: - pos: -26.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5807 components: - pos: -25.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5808 components: - pos: -17.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5833 components: - pos: -16.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5916 components: - pos: -27.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5917 components: - pos: -19.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5918 components: - pos: -34.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 5923 components: - pos: -29.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6063 components: - pos: -34.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6064 components: - pos: -21.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6065 components: - pos: -29.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6196 components: - pos: -33.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6197 components: - pos: -20.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6198 components: - pos: -28.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6209 components: - pos: -32.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6210 components: - pos: -34.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6213 components: - pos: -24.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6214 components: - pos: -16.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6215 components: - pos: -21.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6738 components: - pos: -23.5,55.5 @@ -52088,43 +47906,31 @@ entities: - pos: -23.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6745 components: - pos: -24.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6746 components: - pos: -25.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6747 components: - pos: -26.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6748 components: - pos: -27.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6749 components: - pos: -22.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6911 components: - pos: -1.5,55.5 @@ -52140,8 +47946,6 @@ entities: - pos: -2.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6914 components: - pos: -0.5,56.5 @@ -52152,22 +47956,16 @@ entities: - pos: -3.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6943 components: - pos: 4.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6944 components: - pos: 3.5,56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 6945 components: - pos: 2.5,56.5 @@ -52208,36 +48006,26 @@ entities: - pos: -10.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10941 components: - pos: -25.5,65.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10942 components: - pos: -34.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11218 components: - pos: -30.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 11220 components: - pos: -22.5,80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12039 components: - pos: 13.5,-41.5 @@ -52253,15 +48041,11 @@ entities: - pos: 11.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12042 components: - pos: 11.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12043 components: - pos: 11.5,-43.5 @@ -52272,22 +48056,16 @@ entities: - pos: 11.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12045 components: - pos: 11.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12046 components: - pos: 11.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12047 components: - pos: 19.5,-46.5 @@ -52338,8 +48116,6 @@ entities: - pos: 11.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12057 components: - pos: 19.5,-45.5 @@ -52495,15 +48271,11 @@ entities: - pos: 28.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12089 components: - pos: 5.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12090 components: - pos: 5.5,-44.5 @@ -52524,99 +48296,71 @@ entities: - pos: 5.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12094 components: - pos: 6.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12095 components: - pos: 7.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12096 components: - pos: 8.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12097 components: - pos: 9.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12098 components: - pos: 10.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12099 components: - pos: 11.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 12101 components: - pos: 12.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13978 components: - pos: 7.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13979 components: - pos: 6.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13980 components: - pos: 5.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13981 components: - pos: 4.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13982 components: - pos: 3.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13983 components: - pos: 2.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13985 components: - pos: -33.5,-25.5 @@ -52627,15 +48371,11 @@ entities: - pos: 0.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13993 components: - pos: -0.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13994 components: - pos: -0.5,-11.5 @@ -52656,127 +48396,91 @@ entities: - pos: -0.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13998 components: - pos: 0.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 13999 components: - pos: 1.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14000 components: - pos: 2.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14001 components: - pos: 3.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14002 components: - pos: 4.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14003 components: - pos: 5.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14004 components: - pos: 6.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14005 components: - pos: 7.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14006 components: - pos: 8.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14007 components: - pos: 9.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14008 components: - pos: 10.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14009 components: - pos: 11.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14010 components: - pos: 12.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14011 components: - pos: 13.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14012 components: - pos: 14.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14013 components: - pos: 15.5,-8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14014 components: - pos: 15.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14015 components: - pos: 15.5,-10.5 @@ -52792,50 +48496,36 @@ entities: - pos: 15.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14018 components: - pos: 14.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14027 components: - pos: 12.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14028 components: - pos: 11.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14029 components: - pos: 10.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14030 components: - pos: 9.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14031 components: - pos: 8.5,-19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14034 components: - pos: 9.5,-18.5 @@ -52861,8 +48551,6 @@ entities: - pos: 9.5,-14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14039 components: - pos: 9.5,-13.5 @@ -52898,36 +48586,26 @@ entities: - pos: 11.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14317 components: - pos: 11.5,-92.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14318 components: - pos: 29.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14319 components: - pos: 29.5,-92.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14372 components: - pos: 20.5,-98.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14373 components: - pos: 20.5,-99.5 @@ -53048,8 +48726,6 @@ entities: - pos: 11.5,-91.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 14397 components: - pos: 30.5,-91.5 @@ -53165,197 +48841,141 @@ entities: - pos: 15.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15079 components: - pos: 25.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15080 components: - pos: 24.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15081 components: - pos: 23.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15082 components: - pos: 21.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15083 components: - pos: 22.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15084 components: - pos: 20.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15085 components: - pos: 20.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15086 components: - pos: 20.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15087 components: - pos: 20.5,25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15088 components: - pos: 20.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15089 components: - pos: 20.5,27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15090 components: - pos: 20.5,28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15091 components: - pos: 20.5,29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15092 components: - pos: 20.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15093 components: - pos: 21.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15094 components: - pos: 22.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15095 components: - pos: 23.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15096 components: - pos: 23.5,31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15097 components: - pos: 23.5,32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15098 components: - pos: 23.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15099 components: - pos: 23.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15100 components: - pos: 24.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15101 components: - pos: 25.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15102 components: - pos: 26.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15103 components: - pos: 27.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15104 components: - pos: 28.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15105 components: - pos: 29.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15106 components: - pos: 30.5,20.5 @@ -53411,8 +49031,6 @@ entities: - pos: 37.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15118 components: - pos: 38.5,20.5 @@ -53473,8 +49091,6 @@ entities: - pos: 44.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15554 components: - pos: 20.5,62.5 @@ -53495,8 +49111,6 @@ entities: - pos: -4.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15684 components: - pos: -5.5,5.5 @@ -53507,190 +49121,136 @@ entities: - pos: -6.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15686 components: - pos: -6.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15687 components: - pos: -6.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15688 components: - pos: -7.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15689 components: - pos: -8.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15690 components: - pos: -9.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15691 components: - pos: -10.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15692 components: - pos: -10.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15693 components: - pos: -10.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15694 components: - pos: -10.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15695 components: - pos: -10.5,8.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15696 components: - pos: -10.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15697 components: - pos: -10.5,10.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15698 components: - pos: -10.5,11.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15699 components: - pos: -10.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15700 components: - pos: -9.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15701 components: - pos: -8.5,12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15702 components: - pos: -8.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15703 components: - pos: -8.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15704 components: - pos: -8.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15705 components: - pos: -8.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15706 components: - pos: -8.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15707 components: - pos: -8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15708 components: - pos: -8.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15709 components: - pos: -7.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15710 components: - pos: -6.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15711 components: - pos: -5.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15712 components: - pos: -5.5,18.5 @@ -53721,15 +49281,11 @@ entities: - pos: -6.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15992 components: - pos: 25.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15997 components: - pos: 30.5,30.5 @@ -53740,85 +49296,61 @@ entities: - pos: 29.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 15999 components: - pos: 28.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16000 components: - pos: 27.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16020 components: - pos: 19.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16021 components: - pos: 19.5,4.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16022 components: - pos: 19.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16023 components: - pos: 20.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16024 components: - pos: 21.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16025 components: - pos: 22.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16026 components: - pos: 23.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16027 components: - pos: 24.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16028 components: - pos: 25.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16029 components: - pos: 26.5,3.5 @@ -53844,8 +49376,6 @@ entities: - pos: 28.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16034 components: - pos: 28.5,6.5 @@ -53931,8 +49461,6 @@ entities: - pos: 23.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16168 components: - pos: -8.5,38.5 @@ -54028,8 +49556,6 @@ entities: - pos: -8.5,48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16294 components: - pos: -13.5,40.5 @@ -54095,29 +49621,21 @@ entities: - pos: -21.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16309 components: - pos: -22.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16310 components: - pos: -22.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16311 components: - pos: -22.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16312 components: - pos: -22.5,41.5 @@ -54128,8 +49646,6 @@ entities: - pos: -22.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16465 components: - pos: -23.5,41.5 @@ -54185,50 +49701,36 @@ entities: - pos: -29.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16476 components: - pos: -30.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16477 components: - pos: -30.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16478 components: - pos: -30.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16479 components: - pos: -30.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16480 components: - pos: -31.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16481 components: - pos: -31.5,33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16482 components: - pos: -31.5,32.5 @@ -54329,113 +49831,81 @@ entities: - pos: -35.5,26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16670 components: - pos: -10.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16671 components: - pos: -11.5,13.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16881 components: - pos: 7.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16882 components: - pos: 8.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16883 components: - pos: 9.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16884 components: - pos: 10.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16885 components: - pos: 11.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16886 components: - pos: 11.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16887 components: - pos: 12.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16888 components: - pos: 13.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16889 components: - pos: 14.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16890 components: - pos: 15.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16891 components: - pos: 16.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16892 components: - pos: 17.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16893 components: - pos: 18.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16894 components: - pos: 19.5,45.5 @@ -54446,22 +49916,16 @@ entities: - pos: 20.5,45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16896 components: - pos: 20.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16897 components: - pos: 20.5,47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16898 components: - pos: 20.5,48.5 @@ -54492,8 +49956,6 @@ entities: - pos: 20.5,53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16904 components: - pos: 20.5,54.5 @@ -54529,8 +49991,6 @@ entities: - pos: 17.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 16911 components: - pos: 20.5,58.5 @@ -54581,36 +50041,26 @@ entities: - pos: 21.5,68.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17130 components: - pos: 41.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17131 components: - pos: 41.5,36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17132 components: - pos: 41.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17133 components: - pos: 40.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17335 components: - pos: 57.5,6.5 @@ -54621,36 +50071,26 @@ entities: - pos: 57.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17337 components: - pos: 56.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17338 components: - pos: 55.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17339 components: - pos: 54.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17340 components: - pos: 54.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17341 components: - pos: 54.5,5.5 @@ -54801,8 +50241,6 @@ entities: - pos: 79.5,1.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17475 components: - pos: 53.5,4.5 @@ -55073,8 +50511,6 @@ entities: - pos: 57.5,-20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17530 components: - pos: 55.5,-19.5 @@ -55095,99 +50531,71 @@ entities: - pos: 54.5,-21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17534 components: - pos: 54.5,-22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17535 components: - pos: 54.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17536 components: - pos: 54.5,-24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17537 components: - pos: 54.5,-25.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17538 components: - pos: 54.5,-26.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17539 components: - pos: 54.5,-27.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17540 components: - pos: 54.5,-28.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17541 components: - pos: 54.5,-29.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17542 components: - pos: 54.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17543 components: - pos: 54.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17544 components: - pos: 54.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17545 components: - pos: 54.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17546 components: - pos: 54.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17547 components: - pos: 54.5,-35.5 @@ -55198,715 +50606,511 @@ entities: - pos: 53.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17611 components: - pos: 53.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17612 components: - pos: 53.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17614 components: - pos: 56.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17615 components: - pos: 56.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17617 components: - pos: 52.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17618 components: - pos: 51.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17619 components: - pos: 50.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17620 components: - pos: 49.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17621 components: - pos: 48.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17622 components: - pos: 47.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17623 components: - pos: 47.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17624 components: - pos: 47.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17625 components: - pos: 47.5,-37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17626 components: - pos: 47.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17627 components: - pos: 46.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17628 components: - pos: 45.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17629 components: - pos: 44.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17630 components: - pos: 43.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17631 components: - pos: 42.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17632 components: - pos: 41.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17633 components: - pos: 40.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17634 components: - pos: 39.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17636 components: - pos: 37.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17637 components: - pos: 36.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17638 components: - pos: 36.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17639 components: - pos: 36.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17640 components: - pos: 36.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17641 components: - pos: 36.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17642 components: - pos: 36.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17643 components: - pos: 36.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17644 components: - pos: 36.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17645 components: - pos: 36.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17646 components: - pos: 36.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17647 components: - pos: 36.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17648 components: - pos: 36.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17649 components: - pos: 36.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17650 components: - pos: 36.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17651 components: - pos: 36.5,-52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17652 components: - pos: 36.5,-53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17653 components: - pos: 36.5,-54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17654 components: - pos: 36.5,-55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17655 components: - pos: 36.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17656 components: - pos: 37.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17657 components: - pos: 38.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17658 components: - pos: 39.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17659 components: - pos: 40.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17660 components: - pos: 41.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17661 components: - pos: 42.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17662 components: - pos: 43.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17663 components: - pos: 44.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17664 components: - pos: 45.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17665 components: - pos: 46.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17666 components: - pos: 47.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17667 components: - pos: 48.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17668 components: - pos: 49.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17669 components: - pos: 50.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17670 components: - pos: 51.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17671 components: - pos: 52.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17672 components: - pos: 53.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17673 components: - pos: 54.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17674 components: - pos: 55.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17675 components: - pos: 56.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17676 components: - pos: 57.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17677 components: - pos: 58.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17678 components: - pos: 59.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17679 components: - pos: 60.5,-56.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17680 components: - pos: 60.5,-55.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17681 components: - pos: 60.5,-54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17682 components: - pos: 60.5,-53.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17683 components: - pos: 60.5,-52.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17684 components: - pos: 60.5,-51.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17685 components: - pos: 60.5,-50.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17686 components: - pos: 60.5,-49.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17687 components: - pos: 60.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17688 components: - pos: 61.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17689 components: - pos: 62.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17690 components: - pos: 63.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17691 components: - pos: 64.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17692 components: - pos: 65.5,-48.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17693 components: - pos: 65.5,-47.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17694 components: - pos: 65.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17695 components: - pos: 65.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17696 components: - pos: 65.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17697 components: - pos: 65.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17698 components: - pos: 65.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17699 components: - pos: 65.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17700 components: - pos: 65.5,-40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17701 components: - pos: 65.5,-39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17702 components: - pos: 65.5,-38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17703 components: - pos: 65.5,-37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17704 components: - pos: 65.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17705 components: - pos: 65.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17706 components: - pos: 64.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17708 components: - pos: 62.5,-35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17709 components: - pos: 62.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17710 components: - pos: 61.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17711 components: - pos: 60.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17712 components: - pos: 59.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17713 components: - pos: 58.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17714 components: - pos: 57.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17827 components: - pos: 57.5,-6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 17910 components: - pos: 40.5,-5.5 @@ -55942,15 +51146,11 @@ entities: - pos: 34.5,-5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18187 components: - pos: -14.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18188 components: - pos: -14.5,-32.5 @@ -56096,43 +51296,31 @@ entities: - pos: -6.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18217 components: - pos: -7.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18218 components: - pos: -8.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18219 components: - pos: -9.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18220 components: - pos: -10.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18221 components: - pos: -10.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18222 components: - pos: -11.5,-17.5 @@ -56153,22 +51341,16 @@ entities: - pos: -14.5,-17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18226 components: - pos: -14.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18227 components: - pos: -14.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18228 components: - pos: -13.5,-15.5 @@ -56179,8 +51361,6 @@ entities: - pos: -12.5,-15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18362 components: - pos: 41.5,34.5 @@ -56191,22 +51371,16 @@ entities: - pos: 39.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18364 components: - pos: 39.5,38.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18365 components: - pos: 39.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18366 components: - pos: 39.5,36.5 @@ -56222,99 +51396,71 @@ entities: - pos: 40.5,37.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18369 components: - pos: 41.5,35.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18374 components: - pos: -25.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18375 components: - pos: -24.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18376 components: - pos: -23.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18377 components: - pos: -22.5,-46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18378 components: - pos: -22.5,-45.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18379 components: - pos: -22.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18380 components: - pos: -23.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18381 components: - pos: -24.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18382 components: - pos: -25.5,-44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18383 components: - pos: -23.5,-43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18384 components: - pos: -23.5,-42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18385 components: - pos: -23.5,-41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18386 components: - pos: -23.5,-40.5 @@ -56380,8 +51526,6 @@ entities: - pos: -28.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18481 components: - pos: -27.5,-32.5 @@ -56507,8 +51651,6 @@ entities: - pos: -40.5,-36.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18648 components: - pos: -38.5,-32.5 @@ -56584,8 +51726,6 @@ entities: - pos: -43.5,-23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18688 components: - pos: -41.5,-32.5 @@ -56651,15 +51791,11 @@ entities: - pos: -53.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18790 components: - pos: 26.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18806 components: - pos: 39.5,34.5 @@ -56670,50 +51806,36 @@ entities: - pos: 24.5,30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18847 components: - pos: 40.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18848 components: - pos: 44.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18849 components: - pos: 42.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18850 components: - pos: 41.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18851 components: - pos: 43.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18852 components: - pos: 45.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 18853 components: - pos: 45.5,38.5 @@ -56759,29 +51881,21 @@ entities: - pos: -16.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19454 components: - pos: -15.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20619 components: - pos: -17.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21843 components: - pos: 0.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21844 components: - pos: 0.5,39.5 @@ -56812,120 +51926,86 @@ entities: - pos: 5.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21850 components: - pos: 6.5,39.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21851 components: - pos: 6.5,40.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21852 components: - pos: 6.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21853 components: - pos: 7.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21854 components: - pos: 8.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21855 components: - pos: 9.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21856 components: - pos: 10.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21857 components: - pos: 11.5,41.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21858 components: - pos: 11.5,42.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21859 components: - pos: 11.5,43.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21860 components: - pos: 11.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21861 components: - pos: 10.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21862 components: - pos: 9.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21863 components: - pos: 8.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21864 components: - pos: 7.5,44.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21866 components: - pos: -32.5,-9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21867 components: - pos: -32.5,-10.5 @@ -56961,8 +52041,6 @@ entities: - pos: -34.5,-16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21874 components: - pos: -33.5,-16.5 @@ -57023,8 +52101,6 @@ entities: - pos: -26.5,-12.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 21886 components: - pos: -25.5,-12.5 @@ -57100,8 +52176,6 @@ entities: - pos: -33.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22217 components: - pos: -24.5,57.5 @@ -57117,148 +52191,106 @@ entities: - pos: 4.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22659 components: - pos: -3.5,57.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22660 components: - pos: -3.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22661 components: - pos: -3.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22662 components: - pos: -3.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22663 components: - pos: -1.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22664 components: - pos: 0.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22665 components: - pos: 2.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22666 components: - pos: 4.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22667 components: - pos: 4.5,61.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22668 components: - pos: 4.5,59.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22684 components: - pos: -3.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22685 components: - pos: 3.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22686 components: - pos: 4.5,62.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22687 components: - pos: 4.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22688 components: - pos: 4.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22783 components: - pos: -3.5,58.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22784 components: - pos: -3.5,60.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22785 components: - pos: -2.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22786 components: - pos: -0.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 22787 components: - pos: 1.5,63.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24163 components: - pos: -13.5,48.5 @@ -57314,50 +52346,36 @@ entities: - pos: -15.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24174 components: - pos: -14.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24175 components: - pos: -13.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24176 components: - pos: -12.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24177 components: - pos: -11.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24178 components: - pos: -10.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24179 components: - pos: -9.5,54.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 24180 components: - pos: -9.5,53.5 @@ -57388,29 +52406,21 @@ entities: - pos: -25.5,79.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25294 components: - pos: -33.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25295 components: - pos: -16.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25296 components: - pos: -17.5,72.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25624 components: - pos: -28.5,15.5 @@ -57421,22 +52431,16 @@ entities: - pos: -28.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25650 components: - pos: -29.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25668 components: - pos: -27.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25686 components: - pos: -28.5,16.5 @@ -57537,8 +52541,6 @@ entities: - pos: 30.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25756 components: - pos: 30.5,77.5 @@ -57569,22 +52571,16 @@ entities: - pos: -28.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25869 components: - pos: -29.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25870 components: - pos: -27.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25871 components: - pos: -27.5,18.5 @@ -57600,8 +52596,6 @@ entities: - pos: -26.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 4174 @@ -81441,8 +76435,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8098 components: @@ -81452,8 +76444,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20494 components: @@ -81462,8 +76452,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20503 components: @@ -81472,8 +76460,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20506 components: @@ -81482,8 +76468,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20507 components: @@ -81492,8 +76476,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20508 components: @@ -81503,8 +76485,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20509 components: @@ -81514,8 +76494,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20510 components: @@ -81525,8 +76503,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20511 components: @@ -81536,8 +76512,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20512 components: @@ -81547,8 +76521,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20513 components: @@ -81557,8 +76529,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20514 components: @@ -81568,8 +76538,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20515 components: @@ -81579,8 +76547,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20516 components: @@ -81590,8 +76556,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20518 components: @@ -81601,8 +76565,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20519 components: @@ -81612,8 +76574,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20520 components: @@ -81622,8 +76582,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20521 components: @@ -81632,8 +76590,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20522 components: @@ -81643,8 +76599,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20523 components: @@ -81653,8 +76607,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20524 components: @@ -81663,8 +76615,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20525 components: @@ -81674,8 +76624,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20526 components: @@ -81685,8 +76633,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20527 components: @@ -81696,8 +76642,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20528 components: @@ -81706,8 +76650,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20529 components: @@ -81717,8 +76659,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20541 components: @@ -81727,8 +76667,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20543 components: @@ -81738,8 +76676,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20544 components: @@ -81749,8 +76685,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20545 components: @@ -81760,8 +76694,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20546 components: @@ -81770,8 +76702,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20548 components: @@ -81781,8 +76711,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20550 components: @@ -81792,8 +76720,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20551 components: @@ -81802,8 +76728,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20552 components: @@ -81813,8 +76737,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20553 components: @@ -81824,8 +76746,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20554 components: @@ -81834,8 +76754,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20555 components: @@ -81845,8 +76763,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20556 components: @@ -81856,8 +76772,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20557 components: @@ -81866,8 +76780,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20558 components: @@ -81877,8 +76789,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20559 components: @@ -81888,8 +76798,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20560 components: @@ -81899,8 +76807,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20561 components: @@ -81909,8 +76815,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20562 components: @@ -81919,8 +76823,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20563 components: @@ -81929,8 +76831,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20565 components: @@ -81940,8 +76840,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20566 components: @@ -81951,8 +76849,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20567 components: @@ -81962,8 +76858,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20568 components: @@ -81972,8 +76866,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20569 components: @@ -81983,8 +76875,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20570 components: @@ -81994,8 +76884,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20571 components: @@ -82005,8 +76893,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 20572 components: @@ -82015,8 +76901,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21572 components: @@ -82026,8 +76910,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21658 components: @@ -82037,8 +76919,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21660 components: @@ -82048,8 +76928,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21661 components: @@ -82059,8 +76937,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21663 components: @@ -82069,8 +76945,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 21946 components: @@ -82080,8 +76954,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 22098 components: @@ -82091,8 +76963,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 25239 components: @@ -82102,8 +76972,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EmergencyRollerBed entities: @@ -86976,50 +81844,36 @@ entities: - pos: 0.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 660 components: - pos: 2.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 661 components: - pos: 4.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 662 components: - pos: 6.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 663 components: - pos: 8.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 664 components: - pos: 10.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 665 components: - pos: 12.5,24.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 666 components: - pos: 16.5,24.5 @@ -87027,8 +81881,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 713 components: - rot: 3.141592653589793 rad @@ -87037,15 +81889,11 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 753 components: - pos: 12.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 758 components: - rot: -1.5707963267948966 rad @@ -87054,8 +81902,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 815 components: - rot: 1.5707963267948966 rad @@ -87064,8 +81910,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 818 components: - rot: 3.141592653589793 rad @@ -87074,8 +81918,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 822 components: - rot: -1.5707963267948966 rad @@ -87084,8 +81926,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 900 components: - rot: 3.141592653589793 rad @@ -87102,8 +81942,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1140 components: - rot: 3.141592653589793 rad @@ -87130,8 +81968,6 @@ entities: pos: 2.5,34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 2255 components: - pos: 6.5,34.5 @@ -87139,8 +81975,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2734 components: - rot: -1.5707963267948966 rad @@ -87185,8 +82019,6 @@ entities: pos: 9.5,71.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 8127 components: - rot: 3.141592653589793 rad @@ -87317,8 +82149,6 @@ entities: pos: 21.5,-78.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 9872 components: - rot: -1.5707963267948966 rad @@ -87573,8 +82403,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13212 components: - pos: 10.5,36.5 @@ -87855,8 +82683,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15270 components: - pos: -40.5,-26.5 @@ -87880,8 +82706,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15438 components: - pos: -50.5,-22.5 @@ -87912,8 +82736,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15455 components: - rot: -1.5707963267948966 rad @@ -87922,8 +82744,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15458 components: - rot: 1.5707963267948966 rad @@ -87932,8 +82752,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15467 components: - rot: 3.141592653589793 rad @@ -88056,8 +82874,6 @@ entities: pos: 55.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20055 components: - rot: -1.5707963267948966 rad @@ -88120,8 +82936,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1858 components: - pos: 18.5,16.5 @@ -88129,8 +82943,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9510 components: - pos: 21.5,16.5 @@ -88339,395 +83151,285 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 382 components: - pos: 0.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 383 components: - pos: 0.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 384 components: - pos: 2.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 385 components: - pos: 2.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 386 components: - pos: 1.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 387 components: - pos: 1.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 388 components: - pos: 7.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 389 components: - pos: 7.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 390 components: - pos: 13.5,3.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 391 components: - pos: 13.5,2.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 398 components: - pos: 6.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 399 components: - pos: 6.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 400 components: - pos: 8.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 401 components: - pos: 8.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 402 components: - pos: 12.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 403 components: - pos: 12.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 404 components: - pos: 14.5,7.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 405 components: - pos: 14.5,6.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 406 components: - pos: 14.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 407 components: - pos: 12.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 408 components: - pos: 8.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 409 components: - pos: 6.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 410 components: - pos: 2.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 411 components: - pos: 0.5,5.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 422 components: - rot: 3.141592653589793 rad pos: 0.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 423 components: - rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 424 components: - rot: 3.141592653589793 rad pos: 6.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 425 components: - rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 426 components: - rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 427 components: - rot: 3.141592653589793 rad pos: 14.5,9.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 428 components: - rot: 3.141592653589793 rad pos: -0.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 429 components: - rot: 3.141592653589793 rad pos: 1.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 430 components: - rot: 3.141592653589793 rad pos: 1.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 593 components: - pos: 0.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 594 components: - pos: 0.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 595 components: - pos: 0.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 596 components: - pos: 2.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 597 components: - pos: 2.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 598 components: - pos: 2.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 599 components: - pos: 4.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 600 components: - pos: 4.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 601 components: - pos: 4.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 602 components: - pos: 6.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 603 components: - pos: 6.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 604 components: - pos: 6.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 605 components: - pos: 8.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 606 components: - pos: 8.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 607 components: - pos: 8.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 608 components: - pos: 10.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 609 components: - pos: 10.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 610 components: - pos: 10.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 611 components: - pos: 12.5,23.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 612 components: - pos: 12.5,22.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 613 components: - pos: 12.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 614 components: - pos: 16.5,23.5 @@ -88735,8 +83437,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 615 components: - pos: 16.5,22.5 @@ -88744,8 +83444,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 616 components: - pos: 16.5,21.5 @@ -88753,8 +83451,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 617 components: - pos: 15.5,21.5 @@ -88762,246 +83458,176 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 618 components: - pos: 11.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 619 components: - pos: 9.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 620 components: - pos: 7.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 621 components: - pos: 5.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 622 components: - pos: 3.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 623 components: - pos: 1.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 624 components: - pos: -0.5,21.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 626 components: - pos: -0.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 627 components: - pos: -0.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 628 components: - pos: 0.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 629 components: - pos: 1.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 630 components: - pos: 1.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 631 components: - pos: 2.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 632 components: - pos: 2.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 633 components: - pos: 3.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 634 components: - pos: 3.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 635 components: - pos: 4.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 636 components: - pos: 4.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 637 components: - pos: 5.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 638 components: - pos: 5.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 639 components: - pos: 6.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 640 components: - pos: 6.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 641 components: - pos: 7.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 642 components: - pos: 7.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 643 components: - pos: 8.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 644 components: - pos: 8.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 645 components: - pos: 9.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 646 components: - pos: 9.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 647 components: - pos: 10.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 648 components: - pos: 10.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 649 components: - pos: 11.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 650 components: - pos: 11.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 651 components: - pos: 12.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 652 components: - pos: 12.5,19.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 653 components: - pos: 15.5,20.5 @@ -89009,8 +83635,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 654 components: - pos: 15.5,19.5 @@ -89018,8 +83642,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 655 components: - pos: 16.5,20.5 @@ -89027,8 +83649,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 656 components: - pos: 16.5,19.5 @@ -89036,8 +83656,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 657 components: - pos: 16.5,18.5 @@ -89045,8 +83663,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 658 components: - pos: 15.5,18.5 @@ -89054,72 +83670,54 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 667 components: - rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 668 components: - rot: 3.141592653589793 rad pos: -0.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 669 components: - rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 670 components: - rot: 3.141592653589793 rad pos: 2.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 671 components: - rot: 3.141592653589793 rad pos: 4.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 672 components: - rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 673 components: - rot: 3.141592653589793 rad pos: 8.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 674 components: - rot: 3.141592653589793 rad pos: 10.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 675 components: - rot: 3.141592653589793 rad @@ -89128,119 +83726,89 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 677 components: - rot: 3.141592653589793 rad pos: 12.5,17.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 679 components: - pos: -1.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 684 components: - rot: 3.141592653589793 rad pos: 1.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 685 components: - rot: 3.141592653589793 rad pos: 2.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 686 components: - rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 687 components: - rot: 3.141592653589793 rad pos: 4.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 688 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 689 components: - rot: 3.141592653589793 rad pos: 6.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 690 components: - rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 691 components: - rot: 3.141592653589793 rad pos: 8.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 692 components: - rot: 3.141592653589793 rad pos: 9.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 693 components: - rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 694 components: - rot: 3.141592653589793 rad pos: 11.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 695 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 714 components: - pos: 16.5,16.5 @@ -89248,8 +83816,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 720 components: - pos: 18.5,12.5 @@ -89257,8 +83823,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 722 components: - pos: 18.5,10.5 @@ -89266,112 +83830,84 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 723 components: - rot: 3.141592653589793 rad pos: 11.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 739 components: - rot: 3.141592653589793 rad pos: -0.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 740 components: - rot: 3.141592653589793 rad pos: 3.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 741 components: - rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 742 components: - rot: 3.141592653589793 rad pos: 5.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 743 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 744 components: - rot: 3.141592653589793 rad pos: 7.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 745 components: - rot: 3.141592653589793 rad pos: 7.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 746 components: - rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 748 components: - rot: 3.141592653589793 rad pos: 11.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 750 components: - rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 751 components: - rot: 1.5707963267948966 rad pos: 10.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 752 components: - rot: 1.5707963267948966 rad pos: 11.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 755 components: - rot: -1.5707963267948966 rad @@ -89380,8 +83916,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 759 components: - rot: 3.141592653589793 rad @@ -89390,8 +83924,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 765 components: - rot: 3.141592653589793 rad @@ -89400,8 +83932,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 788 components: - pos: -5.5,18.5 @@ -89415,24 +83945,18 @@ entities: pos: 0.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 791 components: - rot: 1.5707963267948966 rad pos: 2.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 792 components: - rot: 1.5707963267948966 rad pos: 1.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 793 components: - rot: 1.5707963267948966 rad @@ -89441,48 +83965,36 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 794 components: - rot: 1.5707963267948966 rad pos: 3.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 795 components: - rot: 1.5707963267948966 rad pos: 5.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 796 components: - rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 797 components: - rot: 1.5707963267948966 rad pos: 9.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 798 components: - rot: 1.5707963267948966 rad pos: 11.5,16.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 816 components: - pos: -1.5,13.5 @@ -89490,8 +84002,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 817 components: - pos: -1.5,12.5 @@ -89499,8 +84009,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 826 components: - rot: 1.5707963267948966 rad @@ -89509,8 +84017,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 827 components: - pos: 13.5,14.5 @@ -89518,32 +84024,24 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 828 components: - rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 829 components: - rot: -1.5707963267948966 rad pos: 6.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 830 components: - rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 878 components: - rot: -1.5707963267948966 rad @@ -89552,8 +84050,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 879 components: - rot: -1.5707963267948966 rad @@ -89562,8 +84058,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 880 components: - rot: -1.5707963267948966 rad @@ -89572,8 +84066,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 881 components: - rot: -1.5707963267948966 rad @@ -89582,8 +84074,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 882 components: - rot: -1.5707963267948966 rad @@ -89592,8 +84082,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 883 components: - rot: -1.5707963267948966 rad @@ -89602,8 +84090,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 884 components: - rot: -1.5707963267948966 rad @@ -89612,8 +84098,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 885 components: - rot: -1.5707963267948966 rad @@ -89622,8 +84106,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 886 components: - rot: -1.5707963267948966 rad @@ -89632,8 +84114,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 897 components: - rot: -1.5707963267948966 rad @@ -89642,8 +84122,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 898 components: - rot: -1.5707963267948966 rad @@ -89652,8 +84130,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 909 components: - rot: -1.5707963267948966 rad @@ -89662,8 +84138,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 910 components: - rot: -1.5707963267948966 rad @@ -89672,8 +84146,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 915 components: - pos: -4.5,12.5 @@ -89681,8 +84153,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 930 components: - rot: -1.5707963267948966 rad @@ -89691,8 +84161,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 948 components: - rot: -1.5707963267948966 rad @@ -89701,8 +84169,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 952 components: - rot: 1.5707963267948966 rad @@ -89711,8 +84177,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 953 components: - rot: 1.5707963267948966 rad @@ -90036,8 +84500,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1861 components: - rot: -1.5707963267948966 rad @@ -90046,8 +84508,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1965 components: - rot: 1.5707963267948966 rad @@ -90134,8 +84594,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2261 components: - rot: -1.5707963267948966 rad @@ -90213,8 +84671,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3032 components: - pos: -36.5,-37.5 @@ -90330,8 +84786,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6923 components: - rot: 1.5707963267948966 rad @@ -90350,8 +84804,6 @@ entities: pos: 2.5,46.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 7277 components: - rot: 3.141592653589793 rad @@ -90692,22 +85144,16 @@ entities: - pos: 19.5,-80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 9725 components: - pos: 19.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 9726 components: - pos: 19.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 9727 components: - pos: 19.5,-78.5 @@ -90715,8 +85161,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9728 components: - pos: 19.5,-77.5 @@ -90724,8 +85168,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9729 components: - pos: 19.5,-76.5 @@ -90733,8 +85175,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9730 components: - pos: 19.5,-75.5 @@ -90742,8 +85182,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9731 components: - pos: 19.5,-74.5 @@ -90751,8 +85189,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9732 components: - pos: 19.5,-73.5 @@ -90760,8 +85196,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9733 components: - pos: 19.5,-72.5 @@ -90769,8 +85203,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9734 components: - pos: 19.5,-71.5 @@ -90778,8 +85210,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9735 components: - pos: 19.5,-70.5 @@ -90787,8 +85217,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9736 components: - pos: 19.5,-69.5 @@ -90796,8 +85224,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9737 components: - pos: 19.5,-68.5 @@ -90805,8 +85231,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9738 components: - pos: 19.5,-67.5 @@ -90814,8 +85238,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9739 components: - pos: 19.5,-66.5 @@ -90823,8 +85245,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9740 components: - pos: 19.5,-65.5 @@ -90832,8 +85252,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9741 components: - pos: 19.5,-64.5 @@ -90841,8 +85259,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9742 components: - pos: 19.5,-63.5 @@ -90850,8 +85266,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9743 components: - pos: 19.5,-62.5 @@ -90880,8 +85294,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9748 components: - rot: -1.5707963267948966 rad @@ -91263,22 +85675,16 @@ entities: - pos: 21.5,-82.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 9842 components: - pos: 21.5,-81.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 9843 components: - pos: 21.5,-80.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 9845 components: - rot: 1.5707963267948966 rad @@ -91538,8 +85944,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10074 components: - rot: 3.141592653589793 rad @@ -91548,8 +85952,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10075 components: - rot: 3.141592653589793 rad @@ -91558,8 +85960,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10076 components: - rot: 3.141592653589793 rad @@ -91568,8 +85968,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10077 components: - rot: 3.141592653589793 rad @@ -91578,8 +85976,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10078 components: - rot: 3.141592653589793 rad @@ -91588,8 +85984,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10079 components: - rot: 3.141592653589793 rad @@ -91598,8 +85992,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10080 components: - rot: 3.141592653589793 rad @@ -91608,8 +86000,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10081 components: - rot: 3.141592653589793 rad @@ -91794,8 +86184,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10110 components: - rot: 1.5707963267948966 rad @@ -91804,8 +86192,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10111 components: - rot: 1.5707963267948966 rad @@ -91814,8 +86200,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10112 components: - rot: 1.5707963267948966 rad @@ -91824,8 +86208,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10113 components: - rot: 1.5707963267948966 rad @@ -91834,8 +86216,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10114 components: - rot: 1.5707963267948966 rad @@ -91844,8 +86224,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10115 components: - rot: 1.5707963267948966 rad @@ -91854,8 +86232,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10116 components: - rot: 1.5707963267948966 rad @@ -91864,8 +86240,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10117 components: - rot: 1.5707963267948966 rad @@ -91874,8 +86248,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10118 components: - rot: 1.5707963267948966 rad @@ -91884,8 +86256,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10119 components: - rot: 1.5707963267948966 rad @@ -92247,8 +86617,6 @@ entities: - pos: 0.5,20.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 10838 components: - rot: 3.141592653589793 rad @@ -92325,8 +86693,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11539 components: - rot: 1.5707963267948966 rad @@ -92723,8 +87089,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12609 components: - rot: -1.5707963267948966 rad @@ -93289,8 +87653,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12742 components: - rot: 1.5707963267948966 rad @@ -94421,8 +88783,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12946 components: - rot: -1.5707963267948966 rad @@ -95236,8 +89596,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13087 components: - rot: -1.5707963267948966 rad @@ -95246,8 +89604,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13088 components: - rot: -1.5707963267948966 rad @@ -95256,8 +89612,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13089 components: - rot: -1.5707963267948966 rad @@ -95266,8 +89620,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13092 components: - rot: 1.5707963267948966 rad @@ -95894,8 +90246,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13196 components: - rot: 1.5707963267948966 rad @@ -96035,8 +90385,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13221 components: - rot: -1.5707963267948966 rad @@ -96782,8 +91130,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13352 components: - rot: 3.141592653589793 rad @@ -97820,8 +92166,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13531 components: - rot: -1.5707963267948966 rad @@ -98255,8 +92599,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13602 components: - rot: 3.141592653589793 rad @@ -98289,8 +92631,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13607 components: - pos: -33.5,-15.5 @@ -98496,8 +92836,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13640 components: - rot: 3.141592653589793 rad @@ -98530,8 +92868,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13644 components: - rot: 3.141592653589793 rad @@ -99155,8 +93491,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13747 components: - pos: 2.5,-13.5 @@ -99356,8 +93690,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13779 components: - rot: 1.5707963267948966 rad @@ -100303,8 +94635,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13938 components: - rot: 1.5707963267948966 rad @@ -100360,8 +94690,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 13953 components: - rot: -1.5707963267948966 rad @@ -100526,8 +94854,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14184 components: - pos: 21.5,-59.5 @@ -101809,8 +96135,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14683 components: - pos: 3.5,-36.5 @@ -101881,8 +96205,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14702 components: - rot: 3.141592653589793 rad @@ -102040,8 +96362,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14730 components: - pos: -10.5,-32.5 @@ -103180,8 +97500,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14960 components: - rot: -1.5707963267948966 rad @@ -103263,8 +97581,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 14979 components: - pos: -39.5,-30.5 @@ -103464,8 +97780,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15429 components: - rot: 3.141592653589793 rad @@ -103482,8 +97796,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15431 components: - rot: 3.141592653589793 rad @@ -103524,8 +97836,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15439 components: - rot: -1.5707963267948966 rad @@ -103534,8 +97844,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15440 components: - rot: -1.5707963267948966 rad @@ -103544,8 +97852,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15441 components: - rot: -1.5707963267948966 rad @@ -103593,8 +97899,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15452 components: - rot: -1.5707963267948966 rad @@ -103603,8 +97907,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15453 components: - rot: -1.5707963267948966 rad @@ -103613,8 +97915,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15460 components: - pos: -56.5,-23.5 @@ -103622,8 +97922,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15461 components: - pos: -56.5,-24.5 @@ -103659,8 +97957,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15468 components: - rot: 1.5707963267948966 rad @@ -103685,8 +97981,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 15471 components: - rot: 1.5707963267948966 rad @@ -103790,8 +98084,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 18571 components: - rot: 1.5707963267948966 rad @@ -105000,8 +99292,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19319 components: - rot: 3.141592653589793 rad @@ -105010,8 +99300,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19320 components: - rot: 3.141592653589793 rad @@ -105020,8 +99308,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19321 components: - rot: 3.141592653589793 rad @@ -105030,8 +99316,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19322 components: - rot: 3.141592653589793 rad @@ -105040,8 +99324,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19323 components: - rot: 3.141592653589793 rad @@ -105050,8 +99332,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19324 components: - rot: 3.141592653589793 rad @@ -105060,8 +99340,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19325 components: - rot: 3.141592653589793 rad @@ -105070,8 +99348,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19326 components: - rot: 3.141592653589793 rad @@ -105080,8 +99356,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19327 components: - rot: 3.141592653589793 rad @@ -105090,8 +99364,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19328 components: - rot: 3.141592653589793 rad @@ -105100,8 +99372,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19329 components: - rot: 3.141592653589793 rad @@ -105110,8 +99380,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 19802 components: - pos: 72.5,3.5 @@ -105688,8 +99956,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20013 components: - pos: 54.5,-22.5 @@ -105697,8 +99963,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20014 components: - pos: 54.5,-23.5 @@ -105706,8 +99970,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20015 components: - pos: 54.5,-24.5 @@ -105715,8 +99977,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20016 components: - pos: 54.5,-25.5 @@ -105724,8 +99984,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20017 components: - pos: 54.5,-26.5 @@ -105733,8 +99991,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20018 components: - pos: 54.5,-27.5 @@ -105742,8 +99998,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20019 components: - pos: 54.5,-28.5 @@ -105751,8 +100005,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20020 components: - pos: 54.5,-29.5 @@ -105760,8 +100012,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20021 components: - pos: 54.5,-30.5 @@ -105769,8 +100019,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20022 components: - pos: 54.5,-31.5 @@ -105778,8 +100026,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20023 components: - pos: 54.5,-32.5 @@ -105787,8 +100033,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 20026 components: - pos: 54.5,-35.5 @@ -105904,32 +100148,24 @@ entities: pos: 56.5,-30.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20049 components: - rot: 3.141592653589793 rad pos: 55.5,-31.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20050 components: - rot: 3.141592653589793 rad pos: 55.5,-32.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20051 components: - rot: 3.141592653589793 rad pos: 55.5,-33.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 20053 components: - rot: 3.141592653589793 rad @@ -106177,8 +100413,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 24549 components: - rot: 1.5707963267948966 rad @@ -106234,15 +100468,11 @@ entities: - pos: 29.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25803 components: - pos: 31.5,76.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 25804 components: - pos: 29.5,74.5 @@ -106375,8 +100605,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 736 components: - rot: -1.5707963267948966 rad @@ -106385,24 +100613,18 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 747 components: - rot: 3.141592653589793 rad pos: 11.5,14.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 749 components: - rot: 1.5707963267948966 rad pos: 9.5,15.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 766 components: - rot: -1.5707963267948966 rad @@ -106411,8 +100633,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 799 components: - pos: 8.5,11.5 @@ -106420,8 +100640,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 800 components: - pos: 6.5,11.5 @@ -106429,8 +100647,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 801 components: - pos: 0.5,11.5 @@ -106438,8 +100654,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 802 components: - pos: 2.5,11.5 @@ -106447,8 +100661,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 809 components: - pos: 12.5,11.5 @@ -106456,8 +100668,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 810 components: - pos: 14.5,11.5 @@ -106465,8 +100675,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 811 components: - rot: 3.141592653589793 rad @@ -106475,8 +100683,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 812 components: - rot: 3.141592653589793 rad @@ -106485,8 +100691,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 813 components: - rot: 3.141592653589793 rad @@ -106495,8 +100699,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 814 components: - rot: 3.141592653589793 rad @@ -106505,8 +100707,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 819 components: - pos: -0.5,13.5 @@ -106514,8 +100714,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 820 components: - rot: 3.141592653589793 rad @@ -106524,8 +100722,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 824 components: - pos: 15.5,13.5 @@ -106533,8 +100729,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 873 components: - rot: 3.141592653589793 rad @@ -106543,8 +100737,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 874 components: - pos: 3.5,13.5 @@ -106552,8 +100744,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 875 components: - pos: 5.5,13.5 @@ -106561,8 +100751,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 876 components: - pos: 11.5,13.5 @@ -106570,8 +100758,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 877 components: - pos: 9.5,13.5 @@ -106579,8 +100765,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 887 components: - rot: 3.141592653589793 rad @@ -106589,8 +100773,6 @@ entities: type: Transform - color: '#680285FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 899 components: - pos: -4.5,16.5 @@ -106598,8 +100780,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 902 components: - rot: -1.5707963267948966 rad @@ -106608,8 +100788,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 903 components: - rot: -1.5707963267948966 rad @@ -106618,8 +100796,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1163 components: - pos: 37.5,20.5 @@ -106736,8 +100912,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1867 components: - rot: 3.141592653589793 rad @@ -106746,8 +100920,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1879 components: - rot: 3.141592653589793 rad @@ -106756,8 +100928,6 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2540 components: - rot: 1.5707963267948966 rad @@ -106929,8 +101099,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 10082 components: - rot: -1.5707963267948966 rad @@ -108594,8 +102762,6 @@ entities: pos: 54.5,-34.5 parent: 82 type: Transform - - enabled: True - type: AmbientSound - uid: 19842 components: - pos: 61.5,4.5 @@ -109179,8 +103345,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 377 components: - pos: 2.5,8.5 @@ -109188,8 +103352,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 378 components: - pos: 6.5,8.5 @@ -109197,8 +103359,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 379 components: - pos: 8.5,8.5 @@ -109206,8 +103366,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 380 components: - pos: 12.5,8.5 @@ -109215,8 +103373,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 381 components: - pos: 14.5,8.5 @@ -109224,8 +103380,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 678 components: - pos: -1.5,17.5 @@ -109233,8 +103387,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 763 @@ -109269,8 +103421,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - uid: 1869 @@ -109281,8 +103431,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - uid: 1878 @@ -109293,8 +103441,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - proto: GasVentPump @@ -109305,8 +103451,6 @@ entities: pos: 20.5,11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1259 @@ -109315,8 +103459,6 @@ entities: pos: 28.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1262 @@ -109325,8 +103467,6 @@ entities: pos: 32.5,12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 1263 @@ -109335,8 +103475,6 @@ entities: pos: 26.5,8.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 2821 @@ -109348,8 +103486,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 5525 @@ -109358,8 +103494,6 @@ entities: pos: 27.5,-31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 7278 @@ -109367,8 +103501,6 @@ entities: - pos: 18.5,72.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 7735 @@ -109377,8 +103509,6 @@ entities: pos: 72.5,-6.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 7736 @@ -109387,8 +103517,6 @@ entities: pos: 85.5,-6.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 7883 @@ -109400,8 +103528,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 9709 @@ -109410,71 +103536,53 @@ entities: pos: 20.5,-91.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9817 components: - rot: 1.5707963267948966 rad pos: 31.5,-89.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9818 components: - pos: 20.5,-86.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9819 components: - rot: -1.5707963267948966 rad pos: 9.5,-89.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9820 components: - rot: -1.5707963267948966 rad pos: 9.5,-98.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9821 components: - rot: 1.5707963267948966 rad pos: 31.5,-98.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9822 components: - rot: 3.141592653589793 rad pos: 17.5,-103.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9823 components: - rot: 3.141592653589793 rad pos: 23.5,-103.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 12592 components: - rot: 3.141592653589793 rad pos: 37.5,19.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12610 @@ -109483,8 +103591,6 @@ entities: pos: 40.5,27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12611 @@ -109493,8 +103599,6 @@ entities: pos: 44.5,27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12617 @@ -109503,8 +103607,6 @@ entities: pos: 32.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12623 @@ -109513,8 +103615,6 @@ entities: pos: 12.5,56.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12637 @@ -109523,8 +103623,6 @@ entities: pos: 36.5,28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12657 @@ -109533,8 +103631,6 @@ entities: pos: 39.5,33.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12671 @@ -109542,8 +103638,6 @@ entities: - pos: 44.5,35.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12685 @@ -109552,8 +103646,6 @@ entities: pos: 32.5,44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12754 @@ -109561,8 +103653,6 @@ entities: - pos: 28.5,55.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12755 @@ -109570,8 +103660,6 @@ entities: - pos: 23.5,55.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12785 @@ -109579,8 +103667,6 @@ entities: - pos: 27.5,64.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12786 @@ -109589,8 +103675,6 @@ entities: pos: 25.5,59.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12787 @@ -109599,8 +103683,6 @@ entities: pos: 19.5,59.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12818 @@ -109608,8 +103690,6 @@ entities: - pos: 22.5,65.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12853 @@ -109618,8 +103698,6 @@ entities: pos: 28.5,69.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12859 @@ -109628,8 +103706,6 @@ entities: pos: 14.5,64.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12879 @@ -109638,8 +103714,6 @@ entities: pos: 23.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12902 @@ -109648,8 +103722,6 @@ entities: pos: 7.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12968 @@ -109658,8 +103730,6 @@ entities: pos: -3.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 12969 @@ -109668,8 +103738,6 @@ entities: pos: 0.5,43.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13006 @@ -109677,8 +103745,6 @@ entities: - pos: -13.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13008 @@ -109687,8 +103753,6 @@ entities: pos: -11.5,44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13009 @@ -109697,8 +103761,6 @@ entities: pos: -13.5,38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13041 @@ -109707,8 +103769,6 @@ entities: pos: -19.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13044 @@ -109717,8 +103777,6 @@ entities: pos: -25.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13058 @@ -109727,8 +103785,6 @@ entities: pos: -24.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13091 @@ -109737,8 +103793,6 @@ entities: pos: -26.5,41.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13105 @@ -109747,8 +103801,6 @@ entities: pos: -24.5,38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13117 @@ -109757,8 +103809,6 @@ entities: pos: -19.5,38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13142 @@ -109767,8 +103817,6 @@ entities: pos: -20.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13177 @@ -109777,8 +103825,6 @@ entities: pos: 5.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13197 @@ -109787,8 +103833,6 @@ entities: pos: -0.5,35.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13198 @@ -109797,8 +103841,6 @@ entities: pos: -4.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13214 @@ -109806,8 +103848,6 @@ entities: - pos: 9.5,37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13257 @@ -109816,8 +103856,6 @@ entities: pos: -41.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13265 @@ -109826,8 +103864,6 @@ entities: pos: -40.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13316 @@ -109835,8 +103871,6 @@ entities: - pos: -57.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13359 @@ -109845,8 +103879,6 @@ entities: pos: -24.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13376 @@ -109855,8 +103887,6 @@ entities: pos: -58.5,45.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13377 @@ -109865,8 +103895,6 @@ entities: pos: -60.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13405 @@ -109875,8 +103903,6 @@ entities: pos: -22.5,20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13423 @@ -109885,8 +103911,6 @@ entities: pos: -15.5,19.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13456 @@ -109895,8 +103919,6 @@ entities: pos: -22.5,2.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13466 @@ -109905,8 +103927,6 @@ entities: pos: -24.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13526 @@ -109914,8 +103934,6 @@ entities: - pos: -36.5,-10.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13546 @@ -109924,8 +103942,6 @@ entities: pos: -18.5,-12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13553 @@ -109934,8 +103950,6 @@ entities: pos: -31.5,-12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13595 @@ -109944,8 +103958,6 @@ entities: pos: -42.5,-16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13599 @@ -109954,8 +103966,6 @@ entities: pos: -37.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13606 @@ -109964,8 +103974,6 @@ entities: pos: -41.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13618 @@ -109974,8 +103982,6 @@ entities: pos: -27.5,4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13646 @@ -109983,8 +103989,6 @@ entities: - pos: -8.5,1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13647 @@ -109993,8 +103997,6 @@ entities: pos: -7.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13725 @@ -110003,8 +104005,6 @@ entities: pos: 19.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13767 @@ -110013,8 +104013,6 @@ entities: pos: 4.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13768 @@ -110023,8 +104021,6 @@ entities: pos: 10.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13849 @@ -110032,8 +104028,6 @@ entities: - pos: 24.5,-18.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13868 @@ -110042,8 +104036,6 @@ entities: pos: 34.5,-19.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13885 @@ -110052,8 +104044,6 @@ entities: pos: 19.5,-18.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13943 @@ -110061,8 +104051,6 @@ entities: - pos: 27.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13947 @@ -110071,8 +104059,6 @@ entities: pos: 12.5,-14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13948 @@ -110081,8 +104067,6 @@ entities: pos: 3.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 13954 @@ -110091,8 +104075,6 @@ entities: pos: 9.5,-17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14217 @@ -110101,8 +104083,6 @@ entities: pos: 20.5,-46.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14218 @@ -110111,8 +104091,6 @@ entities: pos: 15.5,-48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14237 @@ -110121,8 +104099,6 @@ entities: pos: 20.5,-61.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14519 @@ -110131,8 +104107,6 @@ entities: pos: 23.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14576 @@ -110141,8 +104115,6 @@ entities: pos: 6.5,-24.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14600 @@ -110151,8 +104123,6 @@ entities: pos: -5.5,-25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14636 @@ -110161,8 +104131,6 @@ entities: pos: -4.5,-13.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14691 @@ -110171,8 +104139,6 @@ entities: pos: 3.5,-35.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14692 @@ -110181,8 +104147,6 @@ entities: pos: 11.5,-35.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14693 @@ -110191,8 +104155,6 @@ entities: pos: 6.5,-40.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14724 @@ -110201,8 +104163,6 @@ entities: pos: -13.5,-33.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14725 @@ -110210,8 +104170,6 @@ entities: - pos: -11.5,-30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14783 @@ -110220,8 +104178,6 @@ entities: pos: -5.5,-38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14793 @@ -110230,8 +104186,6 @@ entities: pos: -10.5,-52.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14811 @@ -110240,8 +104194,6 @@ entities: pos: -5.5,-60.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14822 @@ -110250,8 +104202,6 @@ entities: pos: -17.5,-25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14836 @@ -110260,8 +104210,6 @@ entities: pos: -25.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14837 @@ -110273,8 +104221,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14854 @@ -110282,8 +104228,6 @@ entities: - pos: -17.5,-29.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14907 @@ -110295,8 +104239,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14940 @@ -110305,8 +104247,6 @@ entities: pos: -35.5,-23.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 14941 @@ -110315,8 +104255,6 @@ entities: pos: -23.5,-17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 15273 @@ -110328,8 +104266,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 15410 @@ -110341,8 +104277,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 15419 @@ -110350,8 +104284,6 @@ entities: - pos: -49.5,-28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 15474 @@ -110360,8 +104292,6 @@ entities: pos: -55.5,-28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 18838 @@ -110370,8 +104300,6 @@ entities: pos: -13.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 18843 @@ -110380,8 +104308,6 @@ entities: pos: -26.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19206 @@ -110390,8 +104316,6 @@ entities: pos: 44.5,1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19228 @@ -110399,8 +104323,6 @@ entities: - pos: 38.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19229 @@ -110409,8 +104331,6 @@ entities: pos: 40.5,0.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19279 @@ -110419,8 +104339,6 @@ entities: pos: 37.5,-12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19286 @@ -110428,8 +104346,6 @@ entities: - pos: 50.5,-1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19287 @@ -110438,8 +104354,6 @@ entities: pos: 55.5,-5.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19290 @@ -110447,8 +104361,6 @@ entities: - pos: 59.5,-1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19386 @@ -110457,8 +104369,6 @@ entities: pos: 42.5,16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19841 @@ -110467,8 +104377,6 @@ entities: pos: 61.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19843 @@ -110477,8 +104385,6 @@ entities: pos: 74.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19888 @@ -110487,8 +104393,6 @@ entities: pos: 79.5,9.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19889 @@ -110496,8 +104400,6 @@ entities: - pos: 75.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19890 @@ -110505,8 +104407,6 @@ entities: - pos: 82.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19915 @@ -110515,8 +104415,6 @@ entities: pos: 55.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 19916 @@ -110525,8 +104423,6 @@ entities: pos: 61.5,-18.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 20032 @@ -110535,8 +104431,6 @@ entities: pos: 54.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 20045 @@ -110545,8 +104439,6 @@ entities: pos: 46.5,-45.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 20547 @@ -110555,8 +104447,6 @@ entities: pos: 11.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 20638 @@ -110568,8 +104458,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 22404 @@ -110578,8 +104466,6 @@ entities: pos: -57.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 22780 @@ -110588,8 +104474,6 @@ entities: pos: 13.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 24481 @@ -110598,8 +104482,6 @@ entities: pos: 28.5,24.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 25723 @@ -110607,8 +104489,6 @@ entities: - pos: 23.5,74.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - uid: 26241 @@ -110617,8 +104497,6 @@ entities: pos: -29.5,16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#0055CCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -110628,30 +104506,22 @@ entities: - pos: 1.5,4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 396 components: - pos: 7.5,4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 397 components: - pos: 13.5,4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 1000 components: - rot: 3.141592653589793 rad pos: -4.5,11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1260 @@ -110659,8 +104529,6 @@ entities: - pos: 32.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 1261 @@ -110669,8 +104537,6 @@ entities: pos: 27.5,8.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2852 @@ -110682,8 +104548,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 2868 @@ -110694,8 +104558,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 3278 @@ -110707,8 +104569,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 4455 @@ -110717,8 +104577,6 @@ entities: pos: -40.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 7337 @@ -110726,8 +104584,6 @@ entities: - pos: 19.5,72.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 7738 @@ -110736,8 +104592,6 @@ entities: pos: 73.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 7739 @@ -110746,8 +104600,6 @@ entities: pos: 86.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 9896 @@ -110756,70 +104608,52 @@ entities: pos: 8.5,-97.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9897 components: - pos: 9.5,-88.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9898 components: - rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9899 components: - rot: 3.141592653589793 rad pos: 24.5,-87.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9900 components: - pos: 31.5,-88.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9901 components: - rot: -1.5707963267948966 rad pos: 32.5,-97.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9902 components: - rot: 3.141592653589793 rad pos: 20.5,-100.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 9903 components: - rot: 1.5707963267948966 rad pos: 20.5,-105.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 10271 components: - rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10982 @@ -110828,8 +104662,6 @@ entities: pos: -58.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10985 @@ -110837,8 +104669,6 @@ entities: - pos: 26.5,59.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10989 @@ -110847,8 +104677,6 @@ entities: pos: 42.5,15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 10993 @@ -110856,8 +104684,6 @@ entities: - pos: -4.5,-24.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12519 @@ -110866,8 +104692,6 @@ entities: pos: 27.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12558 @@ -110876,8 +104700,6 @@ entities: pos: 46.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12581 @@ -110886,8 +104708,6 @@ entities: pos: 44.5,28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12585 @@ -110896,8 +104716,6 @@ entities: pos: 39.5,28.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12591 @@ -110905,8 +104723,6 @@ entities: - pos: 36.5,20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12625 @@ -110915,8 +104731,6 @@ entities: pos: 19.5,58.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12630 @@ -110925,8 +104739,6 @@ entities: pos: 32.5,25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12631 @@ -110935,8 +104747,6 @@ entities: pos: 36.5,25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12665 @@ -110944,8 +104754,6 @@ entities: - pos: 40.5,33.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12678 @@ -110953,8 +104761,6 @@ entities: - pos: 45.5,34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12684 @@ -110963,8 +104769,6 @@ entities: pos: 32.5,42.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12757 @@ -110973,8 +104777,6 @@ entities: pos: 24.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12768 @@ -110983,8 +104785,6 @@ entities: pos: 12.5,55.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12817 @@ -110993,8 +104793,6 @@ entities: pos: 21.5,64.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12862 @@ -111002,8 +104800,6 @@ entities: - pos: 36.5,49.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12903 @@ -111011,8 +104807,6 @@ entities: - pos: 6.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12970 @@ -111020,8 +104814,6 @@ entities: - pos: 1.5,44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12971 @@ -111030,8 +104822,6 @@ entities: pos: -4.5,49.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 12991 @@ -111040,8 +104830,6 @@ entities: pos: -12.5,38.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13005 @@ -111049,8 +104837,6 @@ entities: - pos: -12.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13007 @@ -111058,8 +104844,6 @@ entities: - pos: -14.5,44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13042 @@ -111067,8 +104851,6 @@ entities: - pos: -19.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13043 @@ -111077,8 +104859,6 @@ entities: pos: -25.5,53.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13057 @@ -111086,8 +104866,6 @@ entities: - pos: -26.5,48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13103 @@ -111096,8 +104874,6 @@ entities: pos: -23.5,41.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13104 @@ -111106,8 +104882,6 @@ entities: pos: -24.5,37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13116 @@ -111116,8 +104890,6 @@ entities: pos: -19.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13134 @@ -111126,8 +104898,6 @@ entities: pos: -18.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13141 @@ -111136,8 +104906,6 @@ entities: pos: -19.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13178 @@ -111145,8 +104913,6 @@ entities: - pos: 4.5,31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13213 @@ -111155,8 +104921,6 @@ entities: pos: 9.5,36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13258 @@ -111164,8 +104928,6 @@ entities: - pos: -39.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13266 @@ -111174,8 +104936,6 @@ entities: pos: -39.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13302 @@ -111184,8 +104944,6 @@ entities: pos: -56.5,30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13318 @@ -111193,8 +104951,6 @@ entities: - pos: -61.5,54.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13324 @@ -111203,8 +104959,6 @@ entities: pos: -62.5,49.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13358 @@ -111212,8 +104966,6 @@ entities: - pos: -20.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13375 @@ -111222,8 +104974,6 @@ entities: pos: -60.5,45.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13404 @@ -111232,8 +104982,6 @@ entities: pos: -22.5,17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13422 @@ -111242,8 +104990,6 @@ entities: pos: -15.5,14.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13455 @@ -111252,8 +104998,6 @@ entities: pos: -22.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13504 @@ -111262,8 +105006,6 @@ entities: pos: -21.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13513 @@ -111272,8 +105014,6 @@ entities: pos: -18.5,-16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13545 @@ -111281,8 +105021,6 @@ entities: - pos: -31.5,-13.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13559 @@ -111291,8 +105029,6 @@ entities: pos: -36.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13596 @@ -111301,8 +105037,6 @@ entities: pos: -40.5,-16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13597 @@ -111310,8 +105044,6 @@ entities: - pos: -40.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13598 @@ -111320,8 +105052,6 @@ entities: pos: -33.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13610 @@ -111330,8 +105060,6 @@ entities: pos: -33.5,-18.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13617 @@ -111340,8 +105068,6 @@ entities: pos: -28.5,1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13645 @@ -111349,8 +105075,6 @@ entities: - pos: -4.5,2.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13648 @@ -111359,8 +105083,6 @@ entities: pos: -5.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13724 @@ -111369,8 +105091,6 @@ entities: pos: 19.5,-5.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13769 @@ -111378,8 +105098,6 @@ entities: - pos: 2.5,-10.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13770 @@ -111387,8 +105105,6 @@ entities: - pos: 12.5,-10.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13848 @@ -111397,8 +105113,6 @@ entities: pos: 24.5,-21.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13869 @@ -111407,8 +105121,6 @@ entities: pos: 34.5,-20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13884 @@ -111417,8 +105129,6 @@ entities: pos: 19.5,-21.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13934 @@ -111426,8 +105136,6 @@ entities: - pos: 27.5,-34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13942 @@ -111436,8 +105144,6 @@ entities: pos: 26.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13946 @@ -111446,8 +105152,6 @@ entities: pos: 11.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13949 @@ -111456,8 +105160,6 @@ entities: pos: 2.5,-15.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 13955 @@ -111466,8 +105168,6 @@ entities: pos: 12.5,-17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14223 @@ -111476,8 +105176,6 @@ entities: pos: 16.5,-43.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14224 @@ -111485,8 +105183,6 @@ entities: - pos: 15.5,-49.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14225 @@ -111495,8 +105191,6 @@ entities: pos: 20.5,-45.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14236 @@ -111505,8 +105199,6 @@ entities: pos: 20.5,-60.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14520 @@ -111515,8 +105207,6 @@ entities: pos: 28.5,-7.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14567 @@ -111524,8 +105214,6 @@ entities: - pos: 8.5,-24.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14677 @@ -111533,8 +105221,6 @@ entities: - pos: 1.5,-32.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14678 @@ -111542,8 +105228,6 @@ entities: - pos: 7.5,-32.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14679 @@ -111551,8 +105235,6 @@ entities: - pos: 13.5,-32.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14685 @@ -111561,8 +105243,6 @@ entities: pos: -1.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14686 @@ -111571,8 +105251,6 @@ entities: pos: 3.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14687 @@ -111581,8 +105259,6 @@ entities: pos: 11.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14688 @@ -111591,8 +105267,6 @@ entities: pos: 16.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14689 @@ -111600,8 +105274,6 @@ entities: - pos: 0.5,-34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14690 @@ -111609,8 +105281,6 @@ entities: - pos: 14.5,-34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14694 @@ -111619,8 +105289,6 @@ entities: pos: 8.5,-40.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14726 @@ -111628,8 +105296,6 @@ entities: - pos: -10.5,-30.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14744 @@ -111638,8 +105304,6 @@ entities: pos: -13.5,-42.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14755 @@ -111648,8 +105312,6 @@ entities: pos: -5.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14792 @@ -111657,8 +105319,6 @@ entities: - pos: -10.5,-48.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14810 @@ -111667,8 +105327,6 @@ entities: pos: -5.5,-61.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14823 @@ -111676,8 +105334,6 @@ entities: - pos: -14.5,-25.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14868 @@ -111686,8 +105342,6 @@ entities: pos: -25.5,-31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14880 @@ -111698,8 +105352,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14886 @@ -111711,8 +105363,6 @@ entities: - ShutdownSubscribers: - 24525 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 14942 @@ -111721,8 +105371,6 @@ entities: pos: -21.5,-17.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15400 @@ -111733,8 +105381,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15401 @@ -111743,8 +105389,6 @@ entities: pos: -44.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15411 @@ -111755,8 +105399,6 @@ entities: - ShutdownSubscribers: - 24530 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15475 @@ -111765,8 +105407,6 @@ entities: pos: -55.5,-31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15476 @@ -111775,8 +105415,6 @@ entities: pos: -55.5,-27.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 15503 @@ -111785,8 +105423,6 @@ entities: pos: -43.5,-34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 18842 @@ -111795,8 +105431,6 @@ entities: pos: -25.5,26.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19167 @@ -111804,8 +105438,6 @@ entities: - pos: 41.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19168 @@ -111814,8 +105446,6 @@ entities: pos: 46.5,1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19226 @@ -111824,8 +105454,6 @@ entities: pos: 40.5,-0.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19227 @@ -111833,8 +105461,6 @@ entities: - pos: 42.5,-4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19264 @@ -111843,8 +105469,6 @@ entities: pos: 45.5,-11.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19265 @@ -111853,8 +105477,6 @@ entities: pos: 48.5,-8.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19285 @@ -111862,8 +105484,6 @@ entities: - pos: 53.5,-1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19289 @@ -111871,8 +105491,6 @@ entities: - pos: 61.5,-1.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19840 @@ -111880,8 +105498,6 @@ entities: - pos: 59.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19844 @@ -111889,8 +105505,6 @@ entities: - pos: 77.5,3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19885 @@ -111899,8 +105513,6 @@ entities: pos: 79.5,6.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19891 @@ -111908,8 +105520,6 @@ entities: - pos: 76.5,13.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19892 @@ -111917,8 +105527,6 @@ entities: - pos: 83.5,13.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 19917 @@ -111927,8 +105535,6 @@ entities: pos: 61.5,-20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 20062 @@ -111937,31 +105543,23 @@ entities: pos: 59.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 20068 components: - rot: 1.5707963267948966 rad pos: 52.5,-42.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 20069 components: - rot: -1.5707963267948966 rad pos: 58.5,-41.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 20671 components: - pos: 3.5,-3.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22441 @@ -111970,8 +105568,6 @@ entities: pos: 55.5,-16.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22494 @@ -111979,8 +105575,6 @@ entities: - pos: 14.5,31.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22572 @@ -111988,8 +105582,6 @@ entities: - pos: 56.5,-4.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22593 @@ -111998,8 +105590,6 @@ entities: pos: -4.5,34.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 22656 @@ -112008,8 +105598,6 @@ entities: pos: -4.5,-12.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 24548 @@ -112017,8 +105605,6 @@ entities: - pos: 22.5,50.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 25724 @@ -112026,8 +105612,6 @@ entities: - pos: 24.5,74.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - uid: 26240 @@ -112035,8 +105619,6 @@ entities: - pos: -29.5,19.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - color: '#990000FF' type: AtmosPipeColor - proto: GasVolumePump @@ -125099,8 +118681,6 @@ entities: - pos: 15.5,74.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 3194 @@ -128974,8 +122554,6 @@ entities: pos: -29.5,-36.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 3407 components: - rot: 3.141592653589793 rad @@ -129042,8 +122620,6 @@ entities: - pos: 2.5,20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 7245 components: - rot: 3.141592653589793 rad @@ -129143,8 +122719,6 @@ entities: - pos: 12.5,20.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 11188 components: - rot: 1.5707963267948966 rad @@ -129174,8 +122748,6 @@ entities: pos: -33.5,-44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 11500 components: - pos: 66.5,-18.5 @@ -129212,24 +122784,18 @@ entities: pos: -42.5,-44.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 15520 components: - rot: -1.5707963267948966 rad pos: -36.5,-40.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 15912 components: - rot: 1.5707963267948966 rad pos: -37.5,-43.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 16944 components: - rot: 1.5707963267948966 rad @@ -130713,8 +124279,6 @@ entities: pos: -39.5,-37.5 parent: 82 type: Transform - - enabled: False - type: AmbientSound - uid: 22634 components: - rot: -1.5707963267948966 rad @@ -141336,9 +134900,14 @@ entities: - pos: 58.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141347,9 +134916,14 @@ entities: - pos: 59.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141359,9 +134933,14 @@ entities: pos: 3.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141371,9 +134950,14 @@ entities: pos: 2.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141382,9 +134966,14 @@ entities: - pos: 1.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141393,9 +134982,14 @@ entities: - pos: 2.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141404,9 +134998,14 @@ entities: - pos: 3.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141415,9 +135014,14 @@ entities: - pos: 5.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141426,9 +135030,14 @@ entities: - pos: 6.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141437,9 +135046,14 @@ entities: - pos: 7.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141448,9 +135062,14 @@ entities: - pos: 8.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141459,9 +135078,14 @@ entities: - pos: 9.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141470,9 +135094,14 @@ entities: - pos: 11.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141481,9 +135110,14 @@ entities: - pos: 12.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141492,9 +135126,14 @@ entities: - pos: 13.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141503,9 +135142,14 @@ entities: - pos: 14.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141515,9 +135159,14 @@ entities: pos: 16.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141527,9 +135176,14 @@ entities: pos: 16.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141539,9 +135193,14 @@ entities: pos: -1.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141551,9 +135210,14 @@ entities: pos: -1.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141563,9 +135227,14 @@ entities: pos: 25.5,64.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141598,9 +135267,14 @@ entities: - pos: 62.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141609,9 +135283,14 @@ entities: - pos: -8.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141620,9 +135299,14 @@ entities: - pos: -9.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141631,9 +135315,14 @@ entities: - pos: -7.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141643,9 +135332,14 @@ entities: pos: -6.5,34.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141655,9 +135349,14 @@ entities: pos: -6.5,35.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141666,9 +135365,14 @@ entities: - pos: 60.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141678,9 +135382,14 @@ entities: pos: 44.5,12.5 parent: 82 type: Transform - - SecondsUntilStateChange: -89448.695 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 14025 type: DeviceLinkSink @@ -141690,9 +135399,14 @@ entities: pos: 44.5,13.5 parent: 82 type: Transform - - SecondsUntilStateChange: -89448.695 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 14025 type: DeviceLinkSink @@ -141702,9 +135416,14 @@ entities: pos: -46.5,-34.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141714,9 +135433,14 @@ entities: pos: 12.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141726,9 +135450,14 @@ entities: pos: 11.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141738,9 +135467,14 @@ entities: pos: 10.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141750,9 +135484,14 @@ entities: pos: 4.5,-19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141761,9 +135500,14 @@ entities: - pos: 0.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -501142.78 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25958 type: DeviceLinkSink @@ -141773,9 +135517,14 @@ entities: pos: 44.5,14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -89448.695 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 14025 type: DeviceLinkSink @@ -141785,9 +135534,14 @@ entities: pos: -6.5,33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141796,9 +135550,14 @@ entities: - pos: -10.5,32.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141808,9 +135567,14 @@ entities: pos: 25.5,65.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141819,9 +135583,14 @@ entities: - pos: 28.5,67.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141830,9 +135599,14 @@ entities: - pos: 27.5,67.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141841,9 +135615,14 @@ entities: - pos: 28.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141852,9 +135631,14 @@ entities: - pos: 26.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141863,9 +135647,14 @@ entities: - pos: 27.5,62.5 parent: 82 type: Transform - - SecondsUntilStateChange: -401259.6 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25178 type: DeviceLinkSink @@ -141875,9 +135664,14 @@ entities: pos: -6.5,36.5 parent: 82 type: Transform - - SecondsUntilStateChange: -399951.5 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25181 type: DeviceLinkSink @@ -141887,9 +135681,14 @@ entities: pos: -46.5,-35.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141898,9 +135697,14 @@ entities: - pos: -45.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141909,9 +135713,14 @@ entities: - pos: -44.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141920,9 +135729,14 @@ entities: - pos: -42.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141931,9 +135745,14 @@ entities: - pos: -41.5,-33.5 parent: 82 type: Transform - - SecondsUntilStateChange: -392892.66 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 25230 type: DeviceLinkSink @@ -141942,9 +135761,14 @@ entities: - pos: 61.5,-6.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141954,9 +135778,14 @@ entities: pos: 57.5,-7.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141966,9 +135795,14 @@ entities: pos: 57.5,-8.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141978,9 +135812,14 @@ entities: pos: 57.5,-10.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -141990,9 +135829,14 @@ entities: pos: 57.5,-11.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -142002,9 +135846,14 @@ entities: pos: 57.5,-9.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -142014,9 +135863,14 @@ entities: pos: 59.5,-14.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -142026,9 +135880,14 @@ entities: pos: 59.5,-15.5 parent: 82 type: Transform - - SecondsUntilStateChange: -390107.34 - state: Opening + - enabled: False + type: Occluder + - canCollide: False + type: Physics + - state: Open type: Door + - airBlocked: False + type: Airtight - links: - 3190 type: DeviceLinkSink @@ -142205,9 +136064,14 @@ entities: - pos: -26.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -142216,9 +136080,14 @@ entities: - pos: -24.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -142227,9 +136096,14 @@ entities: - pos: -25.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -142238,9 +136112,14 @@ entities: - pos: -23.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -142249,9 +136128,14 @@ entities: - pos: -27.5,60.5 parent: 82 type: Transform - - SecondsUntilStateChange: -445943.38 - state: Closing + - state: Closed type: Door + - enabled: True + type: Occluder + - canCollide: True + type: Physics + - airBlocked: True + type: Airtight - links: - 24531 type: DeviceLinkSink @@ -170814,6 +164698,11 @@ entities: type: Transform - proto: WindoorSecureMedicalLocked entities: + - uid: 2867 + components: + - pos: -29.5,-36.5 + parent: 82 + type: Transform - uid: 2980 components: - rot: 3.141592653589793 rad @@ -170832,13 +164721,6 @@ entities: pos: -23.5,-30.5 parent: 82 type: Transform -- proto: WindoorSecureParamedicLocked - entities: - - uid: 2867 - components: - - pos: -29.5,-36.5 - parent: 82 - type: Transform - proto: WindoorSecureSalvageLocked entities: - uid: 6849 @@ -172523,17 +166405,27 @@ entities: - pos: -11.5,17.5 parent: 82 type: Transform - - SecondsUntilStateChange: -571050.75 - state: Opening + - state: Open type: Door + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight + - enabled: False + type: Occluder - uid: 4246 components: - pos: -11.5,19.5 parent: 82 type: Transform - - SecondsUntilStateChange: -571049 - state: Opening + - state: Open type: Door + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight + - enabled: False + type: Occluder - uid: 8013 components: - pos: -53.5,-2.5 From 56c306f9d937ced7e3a2d9b6f1b5d71c1d2c22d4 Mon Sep 17 00:00:00 2001 From: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Date: Mon, 2 Oct 2023 07:27:27 +0200 Subject: [PATCH 05/17] Rename power infra on cluster (#20655) --- Resources/Maps/cluster.yml | 164068 +++++++++++++++++----------------- 1 file changed, 80694 insertions(+), 83374 deletions(-) diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index c58e130f8c5c92..0e25239c362871 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -1,83374 +1,80694 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 2: FloorArcadeBlue2 - 11: FloorBar - 14: FloorBlueCircuit - 15: FloorBoxing - 17: FloorCarpetClown - 22: FloorDark - 23: FloorDarkDiagonal - 26: FloorDarkMini - 27: FloorDarkMono - 29: FloorDarkPavement - 34: FloorEighties - 35: FloorElevatorShaft - 37: FloorFreezer - 38: FloorGlass - 41: FloorGrassDark - 48: FloorHydro - 50: FloorLaundry - 51: FloorLino - 54: FloorMime - 59: FloorRGlass - 60: FloorReinforced - 63: FloorShowroom - 71: FloorSteel - 74: FloorSteelDiagonal - 77: FloorSteelHerringbone - 79: FloorSteelMono - 83: FloorTechMaint - 87: FloorWhite - 88: FloorWhiteDiagonal - 90: FloorWhiteHerringbone - 91: FloorWhiteMini - 92: FloorWhiteMono - 97: FloorWood - 99: Lattice - 100: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - pos: -0.484375,-0.5 - parent: 12281 - type: Transform - - chunks: - 0,0: - ind: 0,0 - tiles: VwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAVwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACVwAAAAACWAAAAAABWAAAAAAAWAAAAAADWAAAAAACVwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACVwAAAAADWAAAAAADWAAAAAAAWAAAAAACWAAAAAADVwAAAAADVwAAAAADRwAAAAADOwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAACVwAAAAACVwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAACYQAAAAAAYQAAAAADYQAAAAADYQAAAAACYQAAAAACYQAAAAADZAAAAAAARwAAAAADOwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAADYQAAAAAAYQAAAAABYQAAAAABYQAAAAABYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAABCwAAAAACCwAAAAADCwAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAACRwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAYQAAAAABYQAAAAABYQAAAAAACwAAAAAACwAAAAABCwAAAAADCwAAAAABRwAAAAADOwAAAAAARwAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACYQAAAAAAYQAAAAABYQAAAAACCwAAAAABYQAAAAACYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAABYQAAAAAAYQAAAAADYQAAAAAACwAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACCwAAAAACCwAAAAAACwAAAAACCwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAADRwAAAAABZAAAAAAAFgAAAAACFgAAAAABCwAAAAABCwAAAAACCwAAAAACZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADOwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAAFgAAAAACFgAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACFgAAAAABFgAAAAACFgAAAAAARwAAAAAAOwAAAAAARwAAAAACRwAAAAADRwAAAAABOwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAAARwAAAAADZAAAAAAAFgAAAAAAFgAAAAAC - version: 6 - -1,0: - ind: -1,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABOwAAAAAARwAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWAAAAAABWAAAAAADZAAAAAAAVwAAAAAAVwAAAAADXAAAAAADWAAAAAACWAAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAACYQAAAAADYQAAAAACWAAAAAACWAAAAAACZAAAAAAAVwAAAAACVwAAAAACXAAAAAADWAAAAAABWAAAAAACZAAAAAAARwAAAAAAOwAAAAAARwAAAAABZAAAAAAAYQAAAAACYQAAAAABYQAAAAACXAAAAAADXAAAAAADZAAAAAAAVwAAAAACVwAAAAABZAAAAAAAXAAAAAABXAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAYQAAAAADYQAAAAADYQAAAAACVwAAAAADVwAAAAAAVwAAAAADVwAAAAABVwAAAAACZAAAAAAAVwAAAAABVwAAAAABVwAAAAACRwAAAAACRwAAAAABRwAAAAADCwAAAAADCwAAAAADCwAAAAABCwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAABXAAAAAABVwAAAAACVwAAAAAAVwAAAAAARwAAAAACOwAAAAAARwAAAAACCwAAAAABCwAAAAABCwAAAAADCwAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAADVwAAAAAAXAAAAAACVwAAAAABVwAAAAABVwAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAYQAAAAACYQAAAAACCwAAAAAAVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAACZAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAYQAAAAACCwAAAAAAVwAAAAABZAAAAAAAZAAAAAAAXAAAAAACZAAAAAAAZAAAAAAAXAAAAAAAXAAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAACwAAAAADVwAAAAACZAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAADZAAAAAAARwAAAAABOwAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAAVwAAAAAAXAAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADOwAAAAAARwAAAAACRwAAAAAB - version: 6 - -1,-1: - ind: -1,-1 - tiles: TwAAAAACRwAAAAABZAAAAAAARwAAAAABRwAAAAAAFgAAAAADFgAAAAADFwAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAADTQAAAAADZAAAAAAARwAAAAAARwAAAAADFgAAAAACFgAAAAACFwAAAAADFwAAAAABFwAAAAAAFwAAAAAAFwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAACZAAAAAAARwAAAAABRwAAAAACFgAAAAAAFgAAAAADDgAAAAAAGgAAAAABDgAAAAAAFwAAAAACFwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAATQAAAAADTQAAAAADZAAAAAAARwAAAAABRwAAAAABFgAAAAACFgAAAAABDgAAAAAAGgAAAAADDgAAAAAAFwAAAAADFwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAATwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAADFgAAAAABFgAAAAABDgAAAAAAGgAAAAABDgAAAAAAFwAAAAABFwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATQAAAAAATQAAAAADZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAAATQAAAAAATQAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAADOwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAAOwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADZAAAAAAAHQAAAAACHQAAAAADMAAAAAAARwAAAAADRwAAAAADZAAAAAAAGwAAAAABGwAAAAAAZAAAAAAAGwAAAAACGwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAHQAAAAABHQAAAAACMAAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACFgAAAAABZAAAAAAARwAAAAACOwAAAAAARwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAAARwAAAAABZAAAAAAAFgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAFgAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAACGwAAAAABHQAAAAACHQAAAAADHQAAAAADRwAAAAABRwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAHQAAAAACHQAAAAADHQAAAAABRwAAAAABRwAAAAAAZAAAAAAAFgAAAAACFgAAAAACDgAAAAAADgAAAAAADgAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAHQAAAAADHQAAAAAAZAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: RwAAAAACRwAAAAACRwAAAAABZAAAAAAAYQAAAAADYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAYQAAAAACYQAAAAABYQAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAOwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABOwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAAATwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAABTwAAAAAARwAAAAABHQAAAAACHQAAAAAAHQAAAAADMAAAAAAAHQAAAAAAHQAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAATwAAAAABHQAAAAABHQAAAAADHQAAAAABMAAAAAAAHQAAAAABHQAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAABOwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMAAAAAAAHQAAAAAAHQAAAAADZAAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAFgAAAAABFgAAAAAC - version: 6 - -1,1: - ind: -1,1 - tiles: VwAAAAAAZAAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADXAAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAACWAAAAAADWAAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADWAAAAAAAWAAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAABWAAAAAACWAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABWAAAAAAAWAAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAACYQAAAAABZAAAAAAAYQAAAAACYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAPAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAADgAAAAAAFgAAAAACFgAAAAADPAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAD - version: 6 - 0,1: - ind: 0,1 - tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAFgAAAAADFgAAAAAAYQAAAAADYQAAAAAAYQAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAADZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAYQAAAAABYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAFgAAAAADRwAAAAAARwAAAAABFgAAAAADYQAAAAABYQAAAAACYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAARwAAAAABRwAAAAABZAAAAAAAYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABRwAAAAADZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: RwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADZAAAAAAAWAAAAAADWAAAAAACZAAAAAAAWAAAAAAAWAAAAAADZAAAAAAAYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAZAAAAAAAWAAAAAABWAAAAAACZAAAAAAAWAAAAAADWAAAAAADZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAZAAAAAAAXAAAAAADXAAAAAAAZAAAAAAAXAAAAAABXAAAAAABZAAAAAAAYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAADZAAAAAAAZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVwAAAAACYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAAAVwAAAAADVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAABYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAABVwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFwAAAAABFwAAAAACFwAAAAACFwAAAAACFwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAABZAAAAAAAVwAAAAADMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFwAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAADZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAAVwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFwAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAACGwAAAAAAVwAAAAAC - version: 6 - 1,0: - ind: 1,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACZAAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAYQAAAAADYQAAAAACYQAAAAAAYQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAACFgAAAAACZAAAAAAARwAAAAABFgAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAFgAAAAACRwAAAAADFgAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAC - version: 6 - 0,-2: - ind: 0,-2 - tiles: RwAAAAADRwAAAAACRwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACTwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAADTwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAATwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADTwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAATwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAAATwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: MwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFwAAAAAAFwAAAAACFwAAAAABFwAAAAADFwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAABZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAADVwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAAAKQAAAAADVwAAAAACVwAAAAAAKQAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAVwAAAAACZAAAAAAAKQAAAAACZAAAAAAAVwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAKQAAAAABVwAAAAABVwAAAAACKQAAAAAAKQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAKQAAAAADVwAAAAABZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAKQAAAAADKQAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAYwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAACFgAAAAACFgAAAAABUwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAADUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAAFgAAAAADFgAAAAADFgAAAAABUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAA - version: 6 - -2,2: - ind: -2,2 - tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,-1: - ind: -2,-1 - tiles: YQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAACTwAAAAABZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAAATwAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAACTQAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAAATwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAABTwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAATQAAAAACTwAAAAADFwAAAAADFwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFwAAAAACFwAAAAADFwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADFwAAAAAAFwAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAAFwAAAAACFwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAABDgAAAAAAGwAAAAADDgAAAAAAFgAAAAABZAAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAADRwAAAAABRwAAAAADRwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABGwAAAAADDgAAAAAAGwAAAAACFgAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAADgAAAAAAGwAAAAACDgAAAAAAFgAAAAADZAAAAAAAYQAAAAACYQAAAAADYQAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAAD - version: 6 - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAGwAAAAACFgAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAANgAAAAAANgAAAAAANgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAADZAAAAAAAYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAANgAAAAAANgAAAAAANgAAAAAAEQAAAAAAEQAAAAAAZAAAAAAAYQAAAAABYQAAAAACYQAAAAACZAAAAAAAYQAAAAADYQAAAAABYQAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAAAPwAAAAAAPwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAADPwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAABSgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAA - version: 6 - -2,-2: - ind: -2,-2 - tiles: YwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAASgAAAAACSgAAAAAASgAAAAACSgAAAAAASgAAAAABYQAAAAABYQAAAAABZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAAASgAAAAADSgAAAAADSgAAAAACSgAAAAADZAAAAAAAYQAAAAADZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASgAAAAADSgAAAAAASgAAAAABSgAAAAAASgAAAAAC - version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAASgAAAAADSgAAAAACSgAAAAACSgAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACZAAAAAAAYQAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAASgAAAAABSgAAAAABSgAAAAADSgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAAAYQAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAABYQAAAAABYQAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAACYQAAAAACYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA - version: 6 - 1,1: - ind: 1,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAZAAAAAAARwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAADRwAAAAADZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAABZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAFgAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAADFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAABZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAACRwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAA - version: 6 - 2,1: - ind: 2,1 - tiles: RwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADJgAAAAAAJgAAAAAARwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACJgAAAAAAJgAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAADFgAAAAADFgAAAAADYQAAAAABYQAAAAADYQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAACFgAAAAABFgAAAAACYQAAAAACYQAAAAAAYQAAAAACZAAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: KQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAZAAAAAAARwAAAAACKQAAAAACZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADYQAAAAAAYQAAAAADYQAAAAADYQAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAKQAAAAAAKQAAAAADKQAAAAABRwAAAAAAKQAAAAABZAAAAAAAFgAAAAACFgAAAAADYQAAAAACYQAAAAAAYQAAAAAAYQAAAAAAFgAAAAAAFgAAAAADZAAAAAAAKQAAAAACKQAAAAADZAAAAAAAKQAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: UwAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAKQAAAAABZAAAAAAAKQAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAKQAAAAAAZAAAAAAAKQAAAAACRwAAAAAAKQAAAAADZAAAAAAAKQAAAAACKQAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACKQAAAAACZAAAAAAARwAAAAABKQAAAAAAKQAAAAADKQAAAAABRwAAAAADZAAAAAAAKQAAAAADRwAAAAABZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAKQAAAAADRwAAAAACZAAAAAAAKQAAAAACZAAAAAAAZAAAAAAARwAAAAAAKQAAAAACZAAAAAAAKQAAAAAAZAAAAAAARwAAAAACRwAAAAADYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABJgAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADTwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAAATwAAAAAARwAAAAABRwAAAAACTwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACTwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADTwAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAACZAAAAAAAUwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAAAJgAAAAAAJgAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAATwAAAAAAZAAAAAAARwAAAAABRwAAAAABJgAAAAAAJgAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAADgAAAAAADgAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAADTwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAARwAAAAADTwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAARwAAAAADTwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAB - version: 6 - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAA - version: 6 - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAATwAAAAAATwAAAAADTwAAAAACTwAAAAABZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAGwAAAAACFgAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAACFgAAAAACFgAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAAB - version: 6 - 3,-1: - ind: 3,-1 - tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,-2: - ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAYQAAAAACYQAAAAAAYQAAAAADYQAAAAABYQAAAAAAYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAABYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAACYQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACYQAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAYQAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAADYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAYQAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAACYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAYQAAAAABYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAGwAAAAABFgAAAAACMwAAAAAA - version: 6 - -3,1: - ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADFgAAAAABMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABGwAAAAADGwAAAAAAGwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAABGwAAAAACGwAAAAABGwAAAAACZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAARwAAAAABGwAAAAABGwAAAAABGwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAA - version: 6 - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAIwAAAAAAZAAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAIwAAAAAAIwAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAIwAAAAAAZAAAAAAAIwAAAAAAAgAAAAAAAgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAADDwAAAAABZAAAAAAADwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAAAZAAAAAAAZAAAAAAADwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAADwAAAAACDwAAAAACDwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAADwAAAAAADwAAAAAAZAAAAAAADwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAYQAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAASgAAAAAASgAAAAABSgAAAAACSgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAAD - version: 6 - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA - version: 6 - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,3: - ind: 0,3 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAABFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,3: - ind: -1,3 - tiles: AAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABZAAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADFgAAAAADFgAAAAABAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAAAZAAAAAAAFgAAAAACAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABZAAAAAAAFgAAAAABAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAA - version: 6 - -2,-4: - ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAABYQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACYQAAAAAA - version: 6 - -1,-4: - ind: -1,-4 - tiles: YwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAAAUwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAYQAAAAACUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYQAAAAADUwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYQAAAAADYQAAAAACZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAABZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,4: - ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,4: - ind: 0,4 - tiles: ZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - type: Shuttle - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: Basalt1 - decals: - 1358: 25.881918,34.192333 - 1361: 36.05116,32.59352 - 1386: -23.029747,20.063555 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 1359: 31.894993,33.661083 - 1371: 25.780825,32.109146 - 1392: -27.154747,21.001055 - - node: - color: '#FFFFFFFF' - id: Basalt8 - decals: - 1360: 33.992474,34.93727 - 1391: -26.029747,22.04793 - - node: - color: '#A46106FF' - id: BotLeft - decals: - 1112: 22,-28 - 1113: 21,-28 - 1114: 20,-28 - 1115: 20,-27 - 1116: 21,-27 - 1117: 22,-27 - 1118: 15,-22 - 1119: 15,-23 - 1120: 15,-24 - 1121: 15,-25 - 1122: 14,-25 - 1123: 14,-24 - 1124: 14,-23 - 1125: 14,-22 - 1126: 18,-28 - 1127: 18,-27 - 1128: 17,-27 - 1129: 17,-28 - 1130: 16,-27 - 1131: 16,-28 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 1449: 6,-22 - 1450: 6,-21 - 1451: 6,-20 - 1452: 5,-20 - 1453: 4,-20 - 1454: -3,17 - 1455: -2,17 - 1456: -1,17 - 1457: 0,17 - - node: - color: '#EFB341FF' - id: BotRight - decals: - 1035: 26,-7 - 1036: 26,-6 - 1037: 26,-5 - 1038: 26,-4 - 1039: 27,-4 - 1040: 27,-5 - 1041: 27,-6 - 1042: 27,-7 - 1043: 28,-7 - 1044: 28,-6 - 1045: 28,-5 - 1046: 28,-4 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 958: -17,-9 - 973: -17,-13 - 974: -17,-11 - 975: -17,-15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 115: -4,56 - 116: -3,55 - 124: -6,46 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 113: -11,55 - 114: -10,56 - 123: -8,46 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 109: -4,48 - 110: -3,49 - 121: -6,44 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 111: -10,48 - 112: -11,49 - 122: -8,44 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndE - decals: - 838: -10,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndW - decals: - 835: -12,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 118: -4,55 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 117: -10,55 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 119: -4,49 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 120: -10,49 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 87: -3,54 - 88: -3,53 - 89: -3,52 - 90: -3,51 - 91: -3,50 - 125: -6,45 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 92: -8,56 - 93: -9,56 - 94: -7,56 - 95: -5,56 - 96: -5,56 - 97: -6,56 - 128: -7,46 - 837: -11,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 104: -9,48 - 105: -8,48 - 106: -7,48 - 107: -6,48 - 108: -5,48 - 127: -7,44 - 836: -11,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 98: -11,54 - 99: -11,53 - 100: -11,53 - 101: -11,51 - 102: -11,52 - 103: -11,50 - 126: -8,45 - - node: - color: '#334E6DFF' - id: BrickTileSteelBox - decals: - 196: 2,49 - 197: 3,49 - - node: - color: '#52B4E9FF' - id: BrickTileSteelBox - decals: - 193: -1,49 - 194: 0,49 - 195: 1,49 - - node: - color: '#9FED58FF' - id: BrickTileSteelBox - decals: - 187: -1,53 - 188: 0,53 - - node: - color: '#A46106FF' - id: BrickTileSteelBox - decals: - 185: -1,55 - 186: 0,55 - - node: - color: '#B7FF8FFF' - id: BrickTileSteelBox - decals: - 189: 2,55 - 190: 3,55 - - node: - color: '#D381C9FF' - id: BrickTileSteelBox - decals: - 191: -1,51 - 192: 0,51 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelBox - decals: - 181: 2,51 - 182: 3,51 - - node: - color: '#EFB341FF' - id: BrickTileSteelBox - decals: - 183: 2,53 - 184: 3,53 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerNe - decals: - 748: -19,16 - 749: -23,16 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNe - decals: - 896: -21,-1 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNe - decals: - 492: 29,14 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 813: 2,-5 - 814: -2,-5 - 1244: -14,-51 - 1251: -41,-18 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerNw - decals: - 746: -27,16 - 747: -21,16 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNw - decals: - 897: -23,-1 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNw - decals: - 491: 25,14 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 815: 0,-5 - 816: 4,-5 - 1245: -16,-51 - 1250: -44,-18 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerSe - decals: - 744: -19,13 - 745: -23,13 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSe - decals: - 899: -21,-4 - 969: -15,-19 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSe - decals: - 494: 29,12 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 1249: -14,-52 - 1253: -41,-21 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerSw - decals: - 750: -27,13 - 751: -21,13 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSw - decals: - 898: -23,-4 - 968: -21,-19 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSw - decals: - 493: 25,12 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 1248: -16,-52 - 1252: -44,-21 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndE - decals: - 824: 2,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndW - decals: - 825: 4,-3 - 826: 0,-3 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineE - decals: - 728: -19,14 - 729: -19,15 - 733: -23,15 - 734: -23,14 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineE - decals: - 890: -21,-2 - 891: -21,-3 - 959: -15,-17 - 960: -15,-18 - 1413: -15,-15 - 1414: -15,-14 - 1415: -15,-13 - 1416: -15,-11 - 1417: -15,-10 - 1418: -15,-9 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineE - decals: - 486: 29,13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 822: -2,-6 - 823: 2,-6 - 1256: -41,-19 - 1257: -41,-20 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineN - decals: - 730: -24,16 - 731: -25,16 - 732: -26,16 - 743: -20,16 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineN - decals: - 892: -22,-1 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineN - decals: - 487: 28,14 - 488: 27,14 - 489: 26,14 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 215: -4,26 - 817: -3,-5 - 818: 1,-5 - 819: 5,-5 - 827: 1,-3 - 830: 5,-3 - 1246: -15,-51 - 1254: -43,-18 - 1255: -42,-18 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineS - decals: - 739: -26,13 - 740: -25,13 - 741: -24,13 - 742: -20,13 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineS - decals: - 893: -22,-4 - 961: -17,-19 - 962: -16,-19 - 963: -18,-19 - 964: -19,-19 - 965: -20,-19 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineS - decals: - 483: 28,12 - 484: 27,12 - 485: 26,12 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 828: 1,-3 - 829: 5,-3 - 1247: -15,-52 - 1260: -43,-21 - 1261: -42,-21 - 1460: -3,-3 - 1461: -2,-3 - 1462: -1,-3 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineW - decals: - 735: -27,15 - 736: -27,14 - 737: -21,15 - 738: -21,14 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineW - decals: - 894: -23,-3 - 895: -23,-2 - 966: -21,-18 - 967: -21,-17 - 1419: -18,-15 - 1420: -18,-14 - 1421: -18,-13 - 1422: -18,-11 - 1423: -18,-10 - 1424: -18,-9 - 1426: -18,-12 - 1427: -18,-16 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineW - decals: - 490: 25,13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 214: 2,28 - 820: 4,-6 - 821: 0,-6 - 1258: -44,-19 - 1259: -44,-20 - - node: - color: '#EFB341FF' - id: BrickTileWhiteBox - decals: - 1107: 19,-15 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNe - decals: - 631: -21,6 - 632: -18,6 - 633: -15,6 - 777: -9,6 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteCornerNe - decals: - 1305: 46,28 - 1328: 43,27 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNe - decals: - 707: -11,21 - 710: -11,19 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNe - decals: - 1164: 11,-18 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 496: 29,18 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerNe - decals: - 1095: 20,-14 - 1111: 21,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 808: 4,2 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNw - decals: - 628: -22,6 - 629: -19,6 - 630: -16,6 - 774: -10,6 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteCornerNw - decals: - 1306: 39,28 - 1327: 42,27 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNw - decals: - 705: -12,21 - 709: -12,19 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNw - decals: - 1229: 8,-18 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 495: 27,18 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerNw - decals: - 1096: 16,-14 - 1110: 20,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 805: 1,2 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerSe - decals: - 1301: 44,33 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSe - decals: - 634: -21,5 - 635: -18,5 - 636: -15,5 - 775: -9,5 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteCornerSe - decals: - 1323: 46,25 - 1326: 43,26 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerSe - decals: - 706: -11,18 - 708: -11,20 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerSe - decals: - 1163: 11,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 497: 29,16 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSe - decals: - 1097: 20,-16 - 1108: 21,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 806: 4,1 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerSw - decals: - 1302: 41,33 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSw - decals: - 637: -22,5 - 638: -19,5 - 639: -16,5 - 776: -10,5 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteCornerSw - decals: - 1324: 39,25 - 1325: 42,26 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerSw - decals: - 704: -12,18 - 711: -12,20 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 498: 27,16 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSw - decals: - 1098: 16,-16 - 1109: 20,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 807: 1,1 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNe - decals: - 158: -2,52 - - node: - color: '#BDFF8593' - id: BrickTileWhiteInnerNe - decals: - 175: 1,54 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 149: 1,50 - - node: - color: '#EFB341FF' - id: BrickTileWhiteInnerNe - decals: - 171: 1,52 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - decals: - 1237: -5,-25 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - decals: - 165: 1,52 - - node: - color: '#A46106FF' - id: BrickTileWhiteInnerNw - decals: - 180: 1,54 - 1228: 8,-19 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerNw - decals: - 157: 1,50 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNw - decals: - 1398: -3,-25 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSe - decals: - 151: -2,52 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 148: 1,52 - - node: - color: '#EFB341FF' - id: BrickTileWhiteInnerSe - decals: - 172: 1,54 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerSw - decals: - 164: 1,54 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSw - decals: - 154: 1,52 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineE - decals: - 1300: 44,34 - - node: - color: '#7C5C98FF' - id: BrickTileWhiteLineE - decals: - 1399: 9,-2 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineE - decals: - 1313: 46,27 - 1314: 46,26 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineE - decals: - 1155: 11,-19 - 1156: 11,-20 - 1157: 11,-21 - 1158: 11,-22 - 1159: 11,-23 - 1227: 7,-18 - - node: - color: '#BDFF8593' - id: BrickTileWhiteLineE - decals: - 176: 1,55 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 147: 1,51 - 501: 29,17 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineE - decals: - 166: 1,53 - 1105: 20,-15 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineN - decals: - 1307: 40,28 - 1308: 41,28 - 1309: 42,28 - 1310: 43,28 - 1311: 44,28 - 1312: 45,28 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 159: -1,52 - 160: 0,52 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineN - decals: - 177: -1,54 - 178: 0,54 - 1153: 9,-18 - 1154: 10,-18 - - node: - color: '#BDFF8593' - id: BrickTileWhiteLineN - decals: - 173: 2,54 - 174: 3,54 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineN - decals: - 155: -1,50 - 156: 0,50 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 143: 2,50 - 144: 3,50 - 500: 28,18 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineN - decals: - 169: 2,52 - 170: 3,52 - 1099: 17,-14 - 1100: 18,-14 - 1101: 19,-14 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 809: 2,2 - 810: 3,2 - 831: 3,-1 - 832: 4,-1 - 1236: -4,-25 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineS - decals: - 141: 2,50 - 142: 3,50 - 1297: 42,33 - 1298: 43,33 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineS - decals: - 138: -1,50 - 139: 0,50 - 140: 1,50 - 1333: -4,-34 - - node: - color: '#7C5C98FF' - id: BrickTileWhiteLineS - decals: - 1404: 14,1 - 1405: 15,1 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineS - decals: - 1315: 45,25 - 1316: 44,25 - 1317: 43,25 - 1318: 42,25 - 1319: 41,25 - 1320: 40,25 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 161: -1,54 - 162: 0,54 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineS - decals: - 1160: 8,-24 - 1161: 9,-24 - 1162: 10,-24 - 1334: -3,-34 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineS - decals: - 152: -1,52 - 153: 0,52 - 1335: -5,-34 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 145: 2,52 - 146: 3,52 - 499: 28,16 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineS - decals: - 167: 2,54 - 168: 3,54 - 1102: 17,-16 - 1103: 18,-16 - 1104: 19,-16 - 1332: -2,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 811: 2,1 - 812: 3,1 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 1329: -7,-32 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineW - decals: - 1299: 41,34 - - node: - color: '#70707093' - id: BrickTileWhiteLineW - decals: - 1331: -7,-34 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteLineW - decals: - 1321: 39,26 - 1322: 39,27 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 163: 1,53 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineW - decals: - 179: 1,55 - - node: - color: '#C78B1993' - id: BrickTileWhiteLineW - decals: - 1330: -7,-33 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineW - decals: - 150: 1,51 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 502: 27,17 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineW - decals: - 1106: 16,-15 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 1354: 28.377537,33.036083 - 1384: -25.060997,23.98543 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 1349: 22.922419,33.036083 - 1350: 19.880083,33.942333 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 1383: -23.045372,22.032305 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 1351: 18.98016,34.92671 - 1352: 19.38641,32.098583 - 1353: 24.355186,34.536083 - - node: - color: '#FFFFFFFF' - id: Bushc2 - decals: - 1375: 34.975742,34.972504 - 1393: -22.967247,20.969805 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 1373: 28.499575,31.984146 - 1374: 36.95945,33.952896 - 1385: -26.967247,21.92293 - 1387: -23.998497,23.938555 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 1390: -26.014122,20.92293 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 1372: 27.04645,31.937271 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 1355: 31.565037,34.80171 - 1356: 32.45566,32.92671 - 1357: 29.877537,34.89546 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 981: -27,-6 - 1134: 11,-28 - 1135: 13,-28 - 1235: -41,16 - - node: - color: '#000000FF' - id: CheckerNESW - decals: - 778: 0,3 - 779: 1,3 - 780: 2,3 - 781: 3,3 - 782: 4,3 - 783: 5,3 - 784: 5,2 - 785: 0,2 - 786: 0,1 - 787: 5,1 - 788: 5,0 - 789: 4,0 - 790: 3,0 - 791: 2,0 - 792: 1,0 - 793: 0,0 - 794: 4,4 - 795: 3,4 - 796: 6,2 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 640: -17,12 - 641: -16,12 - 642: -17,13 - 643: -16,13 - 644: -17,14 - 645: -16,14 - 646: -17,15 - 647: -16,15 - 648: -16,16 - 649: -17,16 - - node: - color: '#A4610696' - id: CheckerNESW - decals: - 1218: 6,-28 - 1219: 6,-27 - 1220: 6,-26 - 1221: 5,-26 - 1222: 5,-27 - 1223: 5,-28 - 1224: 4,-28 - 1225: 4,-27 - 1226: 4,-26 - - node: - color: '#D381C996' - id: CheckerNESW - decals: - 940: -13,-7 - 941: -13,-6 - 942: -12,-6 - 943: -12,-7 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 381: 18,12 - 382: 18,13 - 383: 18,14 - 384: 18,15 - 385: 19,15 - 386: 19,14 - 387: 19,13 - 388: 19,12 - 389: 20,12 - 390: 20,13 - 391: 20,14 - 392: 20,15 - 393: 21,15 - 394: 21,14 - 395: 21,13 - 396: 21,12 - 397: 22,12 - 398: 22,13 - 399: 22,15 - 400: 22,14 - 401: 23,15 - 402: 23,14 - 403: 23,13 - 404: 23,12 - 405: 20,11 - 406: 21,11 - 563: 15,11 - 564: 14,12 - 565: 15,12 - 566: 16,12 - 567: 16,13 - 568: 15,13 - 569: 14,13 - 570: 14,14 - 571: 15,14 - 572: 16,14 - 573: 16,15 - 574: 15,15 - 575: 14,15 - 576: 13,14 - 577: 13,13 - 582: 10,13 - 583: 10,14 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 692: -8,8 - 693: -9,8 - 694: -10,8 - 695: -10,9 - 696: -9,9 - 697: -8,9 - 698: -8,10 - 699: -9,10 - 700: -10,10 - 701: -10,11 - 702: -9,11 - 703: -8,11 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 561: 34,11 - 562: 35,11 - 600: 15,7 - 601: 18,7 - 602: 12,7 - - node: - color: '#EF5C1F93' - id: CheckerNWSE - decals: - 519: 32,23 - 520: 33,23 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 1008: 17,-5 - 1009: 16,-5 - 1010: 15,-5 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 979: -21,-14 - 980: -21,-10 - 1262: -6,52 - 1263: -7,53 - 1264: -8,52 - 1265: -7,51 - 1395: 11,27 - 1396: 12,27 - 1397: 13,27 - - node: - color: '#000000FF' - id: DiagonalCheckerAOverlay - decals: - 797: 2,2 - 798: 3,1 - 799: 1,1 - 800: 4,2 - 801: 2,1 - 802: 1,2 - 803: 3,2 - 804: 4,1 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 308: -7,29 - 309: -13,30 - 310: -16,30 - 321: 4,20 - 322: 4,17 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 482: 22,4 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 503: 30,13 - 504: 30,17 - 509: 32,19 - 510: 33,19 - - node: - color: '#EF5C1F93' - id: FullTileOverlayGreyscale - decals: - 513: 32,22 - 514: 33,22 - 515: 32,24 - 516: 33,24 - 535: 26,25 - 536: 26,27 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 1344: 25.518755,33.161083 - 1345: 28.102278,34.536083 - 1346: 30.90701,33.067333 - 1388: -24.060997,21.969805 - - node: - color: '#FFFFFFFF' - id: Grassc1 - decals: - 1347: 33.051407,34.442333 - 1348: 35.00453,33.848583 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 1343: 22.28438,34.23921 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 1369: 28.9527,33.984146 - 1370: 26.85895,32.952896 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 1368: 21.980526,32.077896 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 1365: 23.027401,35.28102 - 1366: 24.996151,35.327896 - 1367: 23.902401,32.12477 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 1362: 20.983843,34.62477 - 1363: 19.968218,33.077896 - 1364: 23.34307,34.234146 - 1389: -25.998497,19.938555 - - node: - color: '#2BAF9D93' - id: HalfTileOverlayGreyscale - decals: - 1433: 32,-17 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 305: -11,31 - 306: -10,31 - 307: -9,31 - 319: 4,19 - 323: 4,16 - 324: 3,16 - 325: 5,16 - 342: 2,25 - 343: 3,25 - 344: 4,25 - 345: -2,32 - 346: -3,32 - 347: 0,31 - 348: -5,31 - 372: -3,17 - 373: -2,17 - 374: -1,17 - 375: 0,17 - 376: 1,17 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 469: 21,7 - 470: 22,7 - 473: 22,3 - 716: -17,21 - 717: -16,21 - 718: -15,21 - 719: -14,21 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 37: 3,-8 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 845: -11,-2 - 846: -10,-2 - 900: -18,-1 - 901: -17,-1 - 902: -16,-1 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 468: 32,18 - 556: 37,13 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale - decals: - 511: 32,21 - 512: 33,21 - 525: 28,28 - 526: 29,28 - 527: 30,28 - 528: 31,28 - 529: 32,28 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 1080: 12,-11 - 1081: 13,-11 - 1082: 14,-11 - 1083: 15,-11 - - node: - color: '#2BAF9D93' - id: HalfTileOverlayGreyscale180 - decals: - 1434: 32,-19 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 294: -11,26 - 295: -9,26 - 296: -10,26 - 320: 4,18 - 349: 4,21 - 350: 2,23 - 351: 1,23 - 352: -1,27 - 353: -2,27 - 354: -5,27 - 355: -4,27 - 356: -3,27 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 471: 21,5 - 472: 22,5 - 712: -17,18 - 713: -16,18 - 714: -15,18 - 715: -14,18 - - node: - color: '#707070FF' - id: HalfTileOverlayGreyscale180 - decals: - 57: -9,-10 - 58: -8,-10 - 59: -8,-10 - 60: -7,-10 - - node: - color: '#79150096' - id: HalfTileOverlayGreyscale180 - decals: - 286: 1,14 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 847: -12,-4 - 848: -11,-4 - 849: -10,-4 - 907: -16,-7 - 908: -17,-7 - 909: -18,-7 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 507: 32,20 - 508: 33,20 - 555: 37,10 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale180 - decals: - 521: 32,25 - 522: 31,25 - 523: 29,24 - 524: 28,24 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 1077: 15,-12 - 1078: 12,-13 - 1079: 13,-13 - - node: - color: '#2BAF9D93' - id: HalfTileOverlayGreyscale270 - decals: - 1436: 31,-18 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 301: -12,27 - 302: -12,28 - 303: -12,29 - 304: -12,30 - 365: -6,28 - 366: -6,29 - 367: -6,30 - 368: 0,26 - 369: 0,25 - 370: 0,24 - 371: 3,22 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 475: 20,6 - 671: -27,10 - 722: -18,20 - 727: -18,19 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 18: 7,2 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 1203: 8,-27 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 851: -13,-3 - 852: -13,-2 - 910: -19,-6 - 911: -19,-5 - 912: -19,-4 - 913: -19,-3 - 914: -19,-2 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 559: 36,11 - 560: 36,12 - 586: 11,13 - 587: 11,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale270 - decals: - 532: 27,25 - 533: 27,26 - 534: 27,27 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 1021: 15,-8 - 1084: 11,-12 - - node: - color: '#2BAF9D93' - id: HalfTileOverlayGreyscale90 - decals: - 1435: 33,-18 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 297: -8,27 - 298: -8,28 - 299: -8,29 - 300: -8,30 - 357: 5,22 - 358: 5,23 - 359: 5,24 - 360: 1,26 - 361: 1,27 - 362: 1,28 - 363: 1,29 - 364: 1,30 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 474: 23,6 - 669: -12,10 - 670: -12,9 - 720: -13,20 - 721: -13,19 - - node: - color: '#707070FF' - id: HalfTileOverlayGreyscale90 - decals: - 62: -12,-12 - 63: -12,-13 - 64: -12,-14 - 65: -12,-16 - 66: -12,-15 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 287: -5,2 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 1144: 6,-23 - 1145: 6,-22 - 1146: 6,-21 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 850: -9,-3 - 903: -15,-2 - 904: -15,-4 - 905: -15,-5 - 906: -15,-6 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 557: 38,11 - 558: 38,12 - 584: 12,13 - 585: 12,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale90 - decals: - 530: 33,26 - 531: 33,27 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 985: 13,-8 - 986: 13,-7 - 987: 13,-6 - 1020: 16,-8 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1458: 1,17 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1459: 6,-23 - - node: - color: '#D381C9FF' - id: MiniTileSteelCornerNe - decals: - 885: -32,-7 - - node: - color: '#D381C9FF' - id: MiniTileSteelCornerNw - decals: - 887: -31,-7 - - node: - color: '#D381C9FF' - id: MiniTileSteelCornerSe - decals: - 880: -25,-4 - - node: - color: '#D381C9FF' - id: MiniTileSteelCornerSw - decals: - 881: -29,-4 - - node: - color: '#D381C9FF' - id: MiniTileSteelInnerNw - decals: - 886: -30,-7 - - node: - color: '#D381C9FF' - id: MiniTileSteelLineE - decals: - 877: -25,-3 - 878: -25,-2 - 879: -25,-1 - 889: -32,-8 - - node: - color: '#D381C9FF' - id: MiniTileSteelLineS - decals: - 874: -28,-4 - 875: -27,-4 - 876: -26,-4 - 883: -32,-6 - 884: -31,-6 - - node: - color: '#D381C9FF' - id: MiniTileSteelLineW - decals: - 871: -29,-1 - 872: -29,-2 - 873: -29,-3 - 888: -31,-8 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNe - decals: - 613: -24,7 - - node: - color: '#EF7241FF' - id: MiniTileWhiteCornerNe - decals: - 752: -11,16 - 753: -9,14 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNw - decals: - 612: -27,7 - - node: - color: '#EF7241FF' - id: MiniTileWhiteCornerNw - decals: - 756: -14,16 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSe - decals: - 614: -24,5 - - node: - color: '#D381C9FF' - id: MiniTileWhiteCornerSe - decals: - 926: -25,-8 - - node: - color: '#EF7241FF' - id: MiniTileWhiteCornerSe - decals: - 754: -9,13 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSw - decals: - 615: -27,5 - - node: - color: '#D381C9FF' - id: MiniTileWhiteCornerSw - decals: - 927: -29,-8 - - node: - color: '#EF7241FF' - id: MiniTileWhiteCornerSw - decals: - 755: -14,13 - - node: - color: '#7C5C98FF' - id: MiniTileWhiteInnerNe - decals: - 1402: 9,-3 - - node: - color: '#EF7241FF' - id: MiniTileWhiteInnerNe - decals: - 766: -11,14 - - node: - color: '#7C5C98FF' - id: MiniTileWhiteInnerSe - decals: - 1400: 13,1 - 1401: 9,-1 - - node: - color: '#7C5C98FF' - id: MiniTileWhiteInnerSw - decals: - 1403: 16,1 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineE - decals: - 604: -24,6 - - node: - color: '#D381C9FF' - id: MiniTileWhiteLineE - decals: - 919: -25,-6 - 920: -25,-7 - - node: - color: '#EF7241FF' - id: MiniTileWhiteLineE - decals: - 761: -11,15 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 609: -26,7 - 610: -25,7 - - node: - color: '#D381C9FF' - id: MiniTileWhiteLineN - decals: - 928: -21,-6 - 929: -22,-6 - 930: -23,-6 - - node: - color: '#EF7241FF' - id: MiniTileWhiteLineN - decals: - 764: -13,16 - 765: -12,16 - 767: -10,14 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineS - decals: - 605: -26,5 - 606: -26,5 - 607: -25,5 - - node: - color: '#D381C9FF' - id: MiniTileWhiteLineS - decals: - 921: -26,-8 - 922: -27,-8 - 923: -28,-8 - 931: -23,-7 - 932: -22,-7 - 933: -21,-7 - - node: - color: '#EF7241FF' - id: MiniTileWhiteLineS - decals: - 757: -13,13 - 758: -12,13 - 759: -11,13 - 760: -10,13 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineW - decals: - 608: -27,6 - - node: - color: '#D381C9FF' - id: MiniTileWhiteLineW - decals: - 924: -29,-7 - 925: -29,-6 - - node: - color: '#EF7241FF' - id: MiniTileWhiteLineW - decals: - 762: -14,14 - 763: -14,15 - - node: - color: '#334E6DC8' - id: MonoOverlay - decals: - 1338: -8,-32 - - node: - color: '#52B4E996' - id: MonoOverlay - decals: - 624: -11,10 - 625: -11,9 - 626: -11,6 - 627: -11,5 - 768: -10,7 - 769: -9,7 - 770: -13,12 - 771: -10,12 - 772: -9,12 - 773: -15,15 - 1337: -4,-35 - - node: - color: '#52B4E9FF' - id: MonoOverlay - decals: - 611: -25,8 - - node: - color: '#70707093' - id: MonoOverlay - decals: - 1340: -8,-34 - - node: - color: '#A14F9793' - id: MonoOverlay - decals: - 867: -27,-3 - 868: -28,-2 - 869: -27,-1 - 870: -26,-2 - 882: -27,-5 - - node: - color: '#A4610696' - id: MonoOverlay - decals: - 1165: 5,-25 - 1166: 7,-27 - 1167: 9,-25 - 1168: 10,-25 - 1169: 12,-23 - 1170: 12,-22 - 1171: 7,-22 - 1172: 7,-21 - 1173: 7,-24 - 1176: 17,-22 - 1177: 17,-23 - 1342: -3,-35 - - node: - color: '#A46106FF' - id: MonoOverlay - decals: - 1174: 20,-25 - 1175: 21,-25 - - node: - color: '#C78B1993' - id: MonoOverlay - decals: - 1339: -8,-33 - - node: - color: '#D381C996' - id: MonoOverlay - decals: - 944: -13,-8 - 945: -12,-8 - 946: -11,-7 - 947: -11,-6 - 948: -12,-5 - 949: -13,-5 - 950: -17,-8 - 1336: -5,-35 - - node: - color: '#D381C9FF' - id: MonoOverlay - decals: - 934: -24,-6 - 935: -24,-7 - 936: -20,-6 - 937: -20,-7 - 938: -14,-7 - 939: -14,-6 - - node: - color: '#EF663193' - id: MonoOverlay - decals: - 1378: 34,23 - - node: - color: '#EFB34196' - id: MonoOverlay - decals: - 1022: 14,-8 - 1023: 14,-7 - 1024: 15,-6 - 1025: 16,-6 - 1026: 22,-10 - 1027: 23,-10 - 1028: 24,-8 - 1029: 27,-10 - 1030: 17,-11 - 1031: 17,-12 - 1032: 25,-13 - 1033: 30,-12 - 1034: 30,-11 - 1341: -2,-35 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 327: 6,16 - 328: -4,31 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 477: 23,3 - 616: -7,7 - 617: -7,8 - 618: -7,9 - 619: -7,10 - 620: -7,11 - 621: -7,12 - 622: -7,13 - 623: -7,14 - 687: -13,7 - 688: -13,6 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 260: 7,4 - 261: 7,5 - 262: 7,6 - 263: 7,7 - 264: 7,8 - 265: 7,9 - 266: 7,10 - 275: 7,11 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 20: 7,1 - 28: 7,-8 - 29: -4,-8 - 30: -3,-8 - 31: -2,-8 - 32: -1,-8 - 33: 0,-8 - 34: 1,-8 - 39: 2,-8 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 1150: 5,-20 - 1151: 4,-20 - 1152: 3,-20 - 1192: 13,-21 - 1193: 13,-22 - 1194: 13,-24 - 1195: 13,-23 - 1196: 13,-25 - 1197: 13,-26 - 1198: 12,-26 - 1199: 11,-26 - 1200: 10,-26 - 1201: 9,-26 - 1202: 8,-26 - - node: - color: '#B02E26FF' - id: QuarterTileOverlayGreyscale - decals: - 1303: 42,29 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 48: -10,-10 - 49: -10,-9 - 50: -10,-8 - 51: -10,-7 - 52: -10,-6 - 53: -9,-6 - 54: -8,-6 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 463: 31,10 - 1465: 10,-5 - 1466: 11,-5 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale - decals: - 518: 34,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 988: 12,-5 - 990: 18,-5 - 991: 18,-4 - 992: 19,-4 - 993: 20,-4 - 994: 21,-4 - 995: 22,-4 - 1005: 18,-8 - 1006: 18,-7 - 1007: 18,-6 - 1057: 28,-11 - 1058: 27,-11 - 1059: 26,-11 - 1060: 25,-11 - 1061: 24,-11 - 1086: 25,-8 - 1087: 25,-7 - 1088: 25,-6 - 1089: 25,-5 - 1090: 25,-4 - - node: - color: '#F9801DFF' - id: QuarterTileOverlayGreyscale - decals: - 1292: 45,34 - - node: - color: '#3C44AAFF' - id: QuarterTileOverlayGreyscale180 - decals: - 1285: 43,30 - 1286: 43,31 - 1287: 43,32 - 1288: 44,32 - 1289: 45,32 - 1290: 46,32 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 672: -26,9 - 673: -25,9 - 674: -24,9 - 675: -23,9 - 678: -21,8 - 679: -20,8 - 680: -19,8 - 681: -18,8 - 682: -17,8 - 683: -15,8 - 684: -16,8 - 685: -14,8 - 689: -12,8 - 690: -12,7 - 691: -12,6 - - node: - color: '#707070FF' - id: QuarterTileOverlayGreyscale180 - decals: - 55: -10,-10 - 61: -12,-11 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - decals: - 276: -4,12 - 277: -3,13 - 283: -2,14 - 284: -1,14 - 285: 0,14 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 41: -5,-7 - 42: -5,-6 - 43: -5,-5 - 44: -5,-4 - 45: -5,-3 - 46: -5,-2 - 47: -5,-1 - 289: -5,3 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 426: 13,8 - 427: 14,8 - 428: 15,8 - 429: 16,8 - 430: 17,8 - 431: 18,8 - 432: 20,8 - 433: 19,8 - 434: 21,8 - 435: 22,8 - 436: 23,8 - 437: 24,8 - 438: 25,8 - 439: 26,8 - 440: 27,8 - 441: 28,8 - 442: 29,8 - 443: 30,8 - 444: 31,8 - 445: 32,8 - 446: 33,8 - 447: 33,9 - 448: 33,10 - 449: 33,11 - 450: 33,12 - 451: 33,13 - 452: 33,14 - 453: 33,15 - 454: 33,17 - 455: 33,16 - 505: 31,20 - 603: 12,8 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale180 - decals: - 550: 30,25 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 996: 23,-5 - 997: 23,-6 - 998: 23,-7 - 999: 23,-8 - 1000: 23,-9 - 1001: 22,-9 - 1002: 21,-9 - 1003: 20,-9 - 1004: 19,-9 - 1051: 23,-12 - 1052: 22,-12 - 1053: 21,-12 - 1054: 20,-12 - 1055: 19,-12 - 1075: 14,-12 - 1091: 26,-9 - 1092: 27,-9 - 1093: 28,-9 - 1094: 29,-9 - - node: - color: '#F9801DFF' - id: QuarterTileOverlayGreyscale180 - decals: - 1291: 46,33 - - node: - color: '#2BAF9D93' - id: QuarterTileOverlayGreyscale270 - decals: - 1447: 32,-12 - 1448: 31,-12 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 330: 0,27 - 331: 3,23 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 676: -22,9 - 686: -13,8 - 1463: 10,-9 - 1464: 11,-9 - - node: - color: '#707070FF' - id: QuarterTileOverlayGreyscale270 - decals: - 56: -6,-10 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 278: 6,12 - 279: 5,13 - 280: 4,14 - 281: 3,14 - 282: 2,14 - - node: - color: '#9D9D97FF' - id: QuarterTileOverlayGreyscale270 - decals: - 1295: 39,33 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 19: 7,3 - 21: 7,-1 - 22: 7,-2 - 23: 7,-3 - 24: 7,-4 - 25: 7,-5 - 26: 7,-6 - 27: 7,-7 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 1147: 5,-24 - 1148: 4,-24 - 1149: 3,-24 - 1178: 8,-28 - 1179: 9,-28 - 1210: 18,-22 - 1211: 18,-23 - 1212: 18,-24 - 1213: 19,-24 - 1214: 20,-24 - 1215: 21,-24 - - node: - color: '#B02E26FF' - id: QuarterTileOverlayGreyscale270 - decals: - 1279: 39,32 - 1280: 40,32 - 1281: 41,32 - 1282: 42,32 - 1283: 42,31 - 1284: 42,30 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 456: 31,17 - 457: 31,16 - 458: 31,15 - 459: 31,14 - 460: 31,13 - 461: 31,12 - 462: 31,11 - 506: 34,20 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 989: 12,-9 - 1047: 28,-12 - 1048: 27,-12 - 1049: 26,-12 - 1050: 25,-12 - 1056: 24,-12 - 1442: 31,-11 - 1443: 32,-11 - - node: - color: '#2BAF9D93' - id: QuarterTileOverlayGreyscale90 - decals: - 1441: 31,-11 - 1445: 32,-12 - 1446: 32,-11 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 326: 2,16 - 329: -1,31 - 341: 1,25 - - node: - color: '#3C44AAFF' - id: QuarterTileOverlayGreyscale90 - decals: - 1304: 43,29 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 476: 21,3 - 650: -12,11 - 651: -13,11 - 652: -15,11 - 653: -14,11 - 654: -16,11 - 655: -17,11 - 656: -18,11 - 657: -19,11 - 658: -20,11 - 659: -21,11 - 660: -22,11 - 661: -23,11 - 662: -24,11 - 663: -25,11 - 664: -26,11 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - decals: - 267: -5,4 - 268: -5,5 - 269: -5,6 - 270: -5,7 - 271: -5,8 - 272: -5,9 - 273: -5,10 - 274: -5,11 - - node: - color: '#9D9D97FF' - id: QuarterTileOverlayGreyscale90 - decals: - 1296: 40,34 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 35: 6,-8 - 36: 5,-8 - 38: 4,-8 - 40: -5,-8 - 288: -5,1 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 1180: 22,-26 - 1181: 21,-26 - 1182: 20,-26 - 1183: 19,-26 - 1184: 18,-26 - 1185: 16,-26 - 1186: 17,-26 - 1187: 16,-25 - 1188: 16,-24 - 1189: 16,-23 - 1190: 16,-22 - 1191: 16,-21 - 1205: 22,-21 - 1206: 21,-21 - 1207: 20,-21 - 1208: 19,-21 - 1209: 22,-22 - 1469: 22,-23 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 844: -12,-2 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 377: 9,15 - 378: 9,14 - 379: 9,13 - 380: 9,12 - 407: 30,10 - 408: 29,10 - 409: 27,10 - 410: 28,10 - 411: 26,10 - 412: 24,10 - 413: 25,10 - 414: 23,10 - 415: 22,10 - 416: 21,10 - 417: 20,10 - 418: 19,10 - 419: 18,10 - 420: 17,10 - 421: 16,10 - 422: 15,10 - 423: 14,10 - 424: 13,10 - 425: 12,10 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale90 - decals: - 517: 31,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 1062: 23,-11 - 1063: 22,-11 - 1064: 21,-11 - 1065: 20,-11 - 1066: 19,-11 - 1444: 31,-12 - - node: - color: '#FFFFFFFF' - id: Rock01 - decals: - 1379: -27.060997,22.876055 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 1380: -25.107872,21.001055 - - node: - color: '#FFFFFFFF' - id: Rock06 - decals: - 1381: -25.060997,22.89168 - - node: - color: '#FFFFFFFF' - id: Rock07 - decals: - 1382: -23.045372,24.001055 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 976: -17,-7 - 977: -8,-10 - 978: -8,-15 - 982: -27,-4 - 1132: 10,-27 - 1133: 14,-27 - 1394: 12,26 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 1234: -40,22 - - node: - color: '#2BAF9D93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1438: 31,-17 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 291: -12,31 - 311: -15,31 - 317: 3,19 - 336: -4,32 - 337: -6,31 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 478: 20,7 - 666: -27,11 - 723: -18,21 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1216: 18,-21 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 843: -13,-1 - 915: -19,-1 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 465: 11,10 - 467: 31,18 - 551: 36,13 - 579: 11,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 537: 27,28 - 544: 24,28 - 545: 24,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 591: 11,6 - 592: 14,6 - 593: 17,6 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1017: 15,-7 - 1068: 18,-11 - 1073: 11,-11 - - node: - color: '#2BAF9D93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1440: 33,-19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 293: -8,26 - 314: -14,30 - 315: 5,18 - 340: 5,21 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 481: 23,5 - 668: -12,5 - 726: -13,18 - - node: - color: '#9D9D97FF' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1294: 40,33 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1143: 6,-24 - 1217: 22,-24 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 840: -9,-4 - 918: -15,-7 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 554: 38,10 - 581: 12,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 540: 30,24 - 541: 33,25 - 542: 25,24 - 543: 25,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 597: 12,5 - 598: 15,5 - 599: 18,5 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 984: 13,-9 - 1019: 16,-9 - 1070: 29,-12 - 1071: 16,-12 - 1076: 14,-13 - - node: - color: '#2BAF9D93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1439: 31,-19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 292: -12,26 - 313: -15,30 - 318: 3,18 - 332: 3,21 - 338: 0,23 - 339: -6,27 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 480: 20,5 - 665: -27,9 - 667: -13,5 - 677: -22,8 - 725: -18,18 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 839: -13,-4 - 917: -19,-7 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 464: 11,8 - 553: 36,10 - 578: 11,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 539: 27,24 - 548: 24,24 - 549: 24,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 594: 11,5 - 595: 14,5 - 596: 17,5 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1011: 18,-9 - 1018: 15,-9 - 1069: 18,-12 - 1074: 11,-13 - 1085: 25,-9 - - node: - color: '#F9801DFF' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1293: 45,33 - - node: - color: '#2BAF9D93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1437: 33,-17 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 290: -8,31 - 312: -14,31 - 316: 5,19 - 333: 5,25 - 334: 1,31 - 335: -1,32 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 479: 23,7 - 724: -13,21 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1142: 6,-20 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 841: -9,-2 - 842: -12,-1 - 916: -15,-1 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 466: 33,18 - 552: 38,13 - 580: 12,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 538: 33,28 - 546: 25,28 - 547: 25,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 588: 12,6 - 589: 15,6 - 590: 18,6 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 983: 13,-5 - 1012: 23,-4 - 1016: 16,-7 - 1067: 29,-11 - 1072: 16,-11 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 972: -21,-18 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 129: -1,46 - 1270: -7,52 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 134: -2,46 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 5: -9,-15 - 133: -1,45 - 1406: -12,-52 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 209: -2,23 - 1013: 17,-4 - 1376: -41,23 - 1467: 18,-1 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 853: -11,-1 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 81: -8,49 - 82: -9,50 - 135: -3,46 - 866: -29,-4 - 1233: -40,20 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 6: -6,-15 - 79: -6,49 - 80: -5,50 - 198: -2,23 - 213: -4,24 - 865: -25,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 83: -9,54 - 84: -8,55 - 1140: 9,-28 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 85: -6,55 - 86: -5,54 - 210: -4,26 - 1141: 15,-28 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 13: -10,-16 - 14: -10,-15 - 15: -10,-14 - 16: -10,-13 - 17: -10,-12 - 74: -9,53 - 75: -9,52 - 76: -9,51 - 136: -2,45 - 137: -2,44 - 207: -2,24 - 208: -2,25 - 862: -29,-3 - 863: -29,-2 - 864: -29,-1 - 1230: -40,21 - 1231: -40,22 - 1232: -40,23 - 1269: -6,52 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 67: -13,-8 - 68: -12,-8 - 77: -7,55 - 130: -2,47 - 131: -1,47 - 204: -5,23 - 205: -4,23 - 206: -3,23 - 854: -10,-1 - 855: -9,-1 - 1014: 16,-4 - 1015: 15,-4 - 1136: 11,-28 - 1137: 13,-28 - 1138: 14,-28 - 1139: 12,-28 - 1204: 10,-28 - 1266: -7,51 - 1377: -42,23 - 1409: -17,-12 - 1410: -16,-12 - 1428: -18,-16 - 1429: -17,-16 - 1430: -16,-16 - 1431: -18,-12 - 1468: 17,-1 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 0: -11,-12 - 1: -11,-13 - 2: -11,-14 - 3: -11,-15 - 4: -11,-16 - 7: -9,-16 - 8: -6,-13 - 9: -6,-12 - 10: -6,-14 - 71: -5,52 - 72: -5,51 - 73: -5,53 - 132: -1,44 - 199: -2,25 - 200: -2,24 - 211: -4,25 - 856: -25,-1 - 857: -25,-2 - 858: -25,-3 - 1267: -8,52 - 1407: -12,-53 - 1408: -12,-54 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 11: -8,-15 - 12: -7,-15 - 69: -13,-8 - 70: -12,-8 - 78: -7,49 - 201: -5,23 - 202: -4,23 - 203: -3,23 - 212: -5,24 - 859: -28,-4 - 860: -27,-4 - 861: -26,-4 - 951: -17,-9 - 952: -16,-9 - 953: -18,-17 - 954: -17,-17 - 955: -16,-17 - 956: -19,-17 - 957: -20,-17 - 970: -21,-17 - 971: -15,-17 - 1268: -7,53 - 1411: -17,-12 - 1412: -16,-12 - 1425: -18,-9 - 1432: -18,-12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 1272: 41,31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 1271: 44,31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 257: -4,9 - 258: -1,8 - 259: 3,9 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 254: 6,9 - 255: 3,8 - 256: -1,9 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 251: -1,12 - 252: -4,8 - 253: 3,12 - 1242: -8,-27 - 1243: -4,-27 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 248: 6,8 - 249: -1,12 - 250: 3,12 - 1240: -6,-27 - 1241: -2,-27 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 243: -1,11 - 244: -1,10 - 245: -1,9 - 246: 3,10 - 247: 3,11 - 1274: 41,30 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 234: 0,8 - 235: 1,8 - 236: 2,8 - 237: -3,9 - 238: -2,9 - 239: 4,9 - 240: 5,9 - 833: 3,4 - 834: 4,4 - 1275: 40,31 - 1276: 39,31 - 1277: 45,31 - 1278: 46,31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 216: -3,8 - 217: -2,8 - 218: -1,8 - 219: 0,8 - 220: 1,8 - 221: 1,8 - 222: 2,8 - 223: 3,8 - 224: 4,8 - 225: 5,8 - 226: 5,8 - 227: 0,12 - 228: 1,12 - 229: 2,12 - 1238: -7,-27 - 1239: -3,-27 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 230: 3,11 - 231: 3,11 - 232: 3,9 - 233: 3,10 - 241: -1,10 - 242: -1,11 - 1273: 44,30 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 32767 - 1: 32768 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -8,0: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - 4,0: - 0: 65535 - 5,0: - 0: 65535 - 6,0: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - -8,4: - 0: 65535 - -7,4: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - 0,8: - 0: 32095 - 1,8: - 0: 6559 - -4,8: - 0: 44911 - -3,8: - 0: 28655 - -2,8: - 0: 58287 - -1,8: - 0: 61951 - -5,8: - 0: 28495 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -1,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65533 - -6,-3: - 0: 65533 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -4,-5: - 0: 65535 - -3,-5: - 0: 65535 - -2,-5: - 0: 65535 - -1,-5: - 0: 65535 - -6,-5: - 0: 65535 - -5,-5: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 1,-4: - 0: 65535 - 2,-4: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 0,-8: - 0: 65535 - 1,-8: - 0: 65521 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65534 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -6,7: - 0: 16383 - -7,-4: - 0: 65279 - 2: 256 - -4,-6: - 0: 65535 - -4,-8: - 0: 65534 - -4,-7: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -7,-5: - 0: 65535 - -7,-6: - 0: 65535 - -6,-6: - 0: 65535 - -5,-6: - 0: 65535 - 4,4: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 61951 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - 9,2: - 0: 65535 - 9,3: - 0: 65535 - 10,0: - 0: 65535 - 10,1: - 0: 65535 - 10,2: - 0: 65535 - 10,3: - 0: 65535 - 11,0: - 0: 65535 - 11,1: - 0: 65535 - 11,2: - 0: 65535 - 11,3: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,4: - 0: 65535 - 9,5: - 0: 65535 - 9,6: - 0: 65535 - 9,7: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 11,4: - 0: 65535 - 8,8: - 0: 65535 - 9,8: - 0: 65535 - 5,8: - 0: 65535 - 6,8: - 0: 65535 - 7,8: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 10,-4: - 0: 63479 - 3: 8 - 4: 2048 - 10,-3: - 0: 63479 - 4: 2056 - 10,-2: - 0: 63479 - 5: 8 - 6: 2048 - 10,-1: - 0: 65535 - 11,-4: - 3: 3 - 0: 64764 - 4: 768 - 11,-3: - 4: 771 - 0: 64764 - 11,-2: - 5: 3 - 0: 64764 - 6: 768 - 11,-1: - 0: 65535 - 4,-8: - 0: 65534 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 65327 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-8: - 0: 61696 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 28672 - 7,-7: - 0: 23933 - 7,-6: - 0: 63447 - 7,-5: - 0: 65535 - 12,0: - 0: 4369 - 12,1: - 0: 4369 - 12,2: - 0: 4369 - 12,3: - 0: 4369 - 8,-7: - 0: 65327 - 8,-6: - 0: 65331 - 4: 204 - 8,-5: - 0: 65535 - 9,-7: - 0: 32559 - 9,-6: - 4: 17 - 0: 63462 - 9,-5: - 0: 65535 - 10,-7: - 0: 4369 - 10,-6: - 0: 16145 - 10,-5: - 0: 63487 - 4: 2048 - 11,-6: - 0: 40704 - 11,-5: - 0: 64767 - 4: 768 - 0,-9: - 0: 65535 - -3,-9: - 0: 63984 - -2,-9: - 0: 65533 - -1,-9: - 0: 65535 - 12,-4: - 0: 12834 - 12,-3: - 0: 12834 - 12,-2: - 0: 8994 - 12,-1: - 0: 12850 - 12,4: - 0: 12561 - 12,-6: - 0: 8960 - 12,-5: - 0: 8754 - -9,0: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - -8,7: - 0: 61182 - -7,7: - 0: 65535 - 0,9: - 0: 48826 - 0,10: - 0: 21621 - 0,11: - 0: 63477 - 1,9: - 0: 1 - 1,11: - 0: 64240 - 3,8: - 0: 20479 - -4,9: - 0: 52390 - -4,11: - 0: 41580 - -4,10: - 0: 34952 - -3,9: - 0: 27503 - -3,10: - 0: 65199 - -3,11: - 0: 65518 - -2,9: - 0: 58361 - -2,10: - 0: 64245 - -2,11: - 0: 65535 - -1,9: - 0: 62712 - -1,10: - 0: 62706 - -1,11: - 0: 65535 - -8,8: - 0: 65327 - -8,9: - 0: 65327 - -8,10: - 0: 11183 - -8,11: - 0: 14 - -7,8: - 0: 65375 - -7,9: - 0: 65311 - -7,10: - 0: 43839 - -7,11: - 0: 15 - -6,8: - 0: 32079 - -6,9: - 0: 21845 - -6,10: - 0: 1863 - -8,-4: - 0: 65535 - -8,-8: - 0: 65525 - -8,-7: - 0: 65525 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-8: - 0: 44962 - -7,-7: - 0: 65530 - -6,-8: - 0: 65529 - -6,-7: - 0: 65535 - -5,-8: - 0: 64186 - -5,-7: - 0: 65535 - -12,-4: - 0: 2794 - -11,-4: - 0: 61439 - -11,-3: - 0: 61166 - -11,-2: - 0: 61182 - -11,-1: - 0: 61423 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 10,6: - 0: 65535 - 8,9: - 0: 2047 - 9,9: - 0: 4095 - 4,8: - 0: 61439 - 4,9: - 0: 3823 - 5,9: - 0: 3583 - 6,9: - 0: 2047 - 7,9: - 0: 3327 - -4,-12: - 0: 12031 - -4,-11: - 0: 44722 - -4,-10: - 0: 43770 - -4,-9: - 0: 58610 - -3,-12: - 0: 3007 - -12,0: - 0: 34824 - -12,1: - 0: 2184 - -12,2: - 0: 34816 - -12,3: - 0: 2184 - -11,0: - 0: 65518 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 61439 - -10,0: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -11,4: - 0: 61182 - -11,5: - 0: 61167 - -11,6: - 0: 36527 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 61167 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 35002 - -12,-6: - 0: 43054 - -12,-5: - 0: 43754 - -11,-7: - 0: 65439 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-7: - 0: 64393 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -10,-8: - 0: 34952 - -9,-8: - 0: 61410 - -9,-7: - 0: 65508 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -10,-10: - 0: 32768 - -10,-9: - 0: 34952 - -9,-10: - 0: 45792 - -9,-9: - 0: 65258 - -8,-10: - 0: 63984 - -8,-9: - 0: 65523 - -7,-10: - 0: 12288 - -7,-9: - 0: 58146 - -6,-12: - 0: 3754 - -6,-11: - 0: 34944 - -6,-10: - 0: 34952 - -6,-9: - 0: 63624 - -5,-12: - 0: 60335 - -5,-11: - 0: 60330 - -5,-10: - 0: 60090 - -5,-9: - 0: 64186 - -9,8: - 0: 17484 - -9,9: - 0: 17484 - -9,10: - 0: 3140 - 0,12: - 0: 65535 - 0,13: - 0: 65535 - 0,14: - 0: 62207 - 0,15: - 0: 48757 - 1,12: - 0: 65471 - 1,13: - 0: 49147 - 1,14: - 0: 63935 - -4,12: - 0: 43694 - -4,13: - 0: 60142 - -4,14: - 0: 28330 - -4,15: - 0: 12 - -3,12: - 0: 65535 - -3,13: - 0: 65535 - -3,14: - 0: 16383 - -3,15: - 0: 15 - -2,12: - 0: 65535 - -2,13: - 0: 65535 - -2,14: - 0: 40959 - -2,15: - 0: 34831 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 61439 - -1,15: - 0: 53151 - -6,-14: - 0: 34952 - -6,-13: - 0: 60138 - -5,-14: - 0: 65519 - -5,-13: - 0: 65535 - -5,-16: - 0: 11852 - -5,-15: - 0: 44714 - -4,-16: - 0: 32543 - -4,-15: - 0: 12287 - -4,-14: - 0: 65535 - -4,-13: - 0: 65535 - -3,-16: - 0: 8977 - -3,-15: - 0: 8754 - -3,-14: - 0: 49075 - -3,-13: - 0: 48123 - 10,7: - 0: 65535 - 11,5: - 0: 65535 - 11,6: - 0: 65535 - 11,7: - 0: 65535 - 10,8: - 0: 65535 - 10,9: - 0: 239 - 11,8: - 0: 65535 - 11,9: - 0: 255 - 12,5: - 0: 13107 - 12,6: - 0: 13107 - 12,7: - 0: 13107 - 12,8: - 0: 13107 - 12,9: - 0: 49 - 1,-9: - 0: 4369 - -12,-2: - 0: 34952 - -12,-1: - 0: 34952 - -3,-10: - 0: 49152 - -2,-10: - 0: 7936 - -1,-10: - 0: 9984 - -12,-7: - 0: 17484 - 2,8: - 0: 4095 - 3,9: - 0: 14 - -5,9: - 0: 15 - -12,4: - 0: 34952 - -12,5: - 0: 34952 - -12,6: - 0: 136 - -11,7: - 0: 136 - -10,7: - 0: 242 - -2,16: - 0: 34952 - -2,17: - 0: 8 - -1,16: - 0: 52847 - 3: 128 - -1,17: - 0: 245 - 0,16: - 0: 39931 - 0,17: - 0: 124 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - id: Cluster - type: BecomesStation - - type: SpreaderGrid - - type: GridPathfinding - - uid: 12281 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids -- proto: AcousticGuitarInstrument - entities: - - uid: 5973 - components: - - pos: 3.5402613,7.6028175 - parent: 1 - type: Transform -- proto: AdvancedCapacitorStockPart - entities: - - uid: 9498 - components: - - pos: -2.8552828,-31.280602 - parent: 1 - type: Transform - - uid: 9500 - components: - - pos: -3.7302828,-31.280602 - parent: 1 - type: Transform -- proto: AdvancedMatterBinStockPart - entities: - - uid: 9499 - components: - - pos: -3.3396578,-31.327477 - parent: 1 - type: Transform -- proto: AirAlarm - entities: - - uid: 8049 - components: - - pos: 29.5,11.5 - parent: 1 - type: Transform - - devices: - - 3203 - - 3204 - - 3205 - - 3219 - - 3327 - - 3217 - - 3213 - - 3214 - - 3215 - - 11609 - - 11608 - - 10602 - - 10601 - - 10599 - - 10600 - - 10548 - - 10550 - type: DeviceList - - uid: 11592 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,27.5 - parent: 1 - type: Transform - - devices: - - 3197 - - 3194 - - 3198 - - 10762 - - 10763 - type: DeviceList - - uid: 11593 - components: - - rot: 3.141592653589793 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - devices: - - 3193 - - 3192 - - 3196 - - 3194 - - 3195 - - 10748 - - 10751 - - 10749 - - 10750 - - 10724 - - 10727 - - 10725 - - 10726 - type: DeviceList - - uid: 11594 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,22.5 - parent: 1 - type: Transform - - devices: - - 3185 - - 3191 - - 3193 - - 3192 - - 3186 - - 10696 - - 10697 - - 10812 - - 10706 - - 10707 - - 10813 - type: DeviceList - - uid: 11598 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,16.5 - parent: 1 - type: Transform - - devices: - - 5009 - - 5010 - - 5011 - - 3190 - - 3199 - - 3191 - - 3134 - - 3133 - - 46 - - 5004 - - 5003 - - 5002 - - 5000 - - 5001 - - 10665 - - 10664 - - 10821 - - 10814 - type: DeviceList - - uid: 11601 - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - devices: - - 3200 - - 3201 - - 3202 - - 1766 - - 1765 - - 3209 - - 3208 - - 3206 - - 3207 - - 3203 - - 3204 - - 3205 - - 10552 - - 10551 - - 10547 - - 10549 - - 10514 - - 10511 - - 10513 - - 10510 - - 10512 - - 10509 - - 11605 - - 11604 - type: DeviceList - - uid: 11611 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,25.5 - parent: 1 - type: Transform - - devices: - - 3224 - - 3225 - - 3226 - - 3227 - - 3228 - - 3220 - - 3221 - - 3222 - - 3223 - - 10658 - - 10663 - - 10662 - - 10660 - - 10661 - - 10659 - type: DeviceList - - uid: 11612 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1 - type: Transform - - devices: - - 3134 - - 3133 - - 46 - - 3135 - - 3136 - - 3138 - - 3137 - - 11622 - - 11621 - - 11620 - - 11619 - - 11618 - - 11617 - - 11616 - - 11615 - - 11614 - - 10778 - - 10786 - - 10785 - - 10772 - type: DeviceList - - uid: 11623 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - type: Transform - - devices: - - 3143 - - 3141 - - 3142 - - 3139 - - 3140 - - 10247 - - 11176 - - 10773 - - 10246 - type: DeviceList - - uid: 11625 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - devices: - - 3145 - - 3146 - - 3143 - - 3142 - - 11337 - - 10248 - type: DeviceList - - uid: 11630 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 1 - type: Transform - - devices: - - 3120 - - 3119 - - 3118 - - 3149 - - 3150 - - 3151 - - 5508 - - 5498 - - 5495 - - 5008 - - 5003 - - 5002 - - 5004 - - 3135 - - 3136 - - 10994 - - 10995 - type: DeviceList - - uid: 11632 - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform - - devices: - - 3183 - - 3184 - - 3171 - - 3170 - - 3169 - - 3168 - - 3167 - - 3166 - - 3165 - - 3189 - - 3164 - - 3173 - - 3172 - - 10879 - - 10880 - - 10902 - - 10900 - - 11646 - - 11645 - - 10903 - - 10901 - - 10924 - - 10921 - type: DeviceList - - uid: 11634 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 1 - type: Transform - - uid: 11636 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,14.5 - parent: 1 - type: Transform - - devices: - - 10923 - - 10922 - - 3164 - - 3188 - type: DeviceList - - uid: 11638 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 1 - type: Transform - - devices: - - 3187 - - 11637 - - 11643 - - 10967 - - 10972 - - 10971 - - 10969 - - 10968 - - 10970 - type: DeviceList - - uid: 11642 - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform - - devices: - - 3178 - - 3179 - - 3180 - - 3181 - - 10899 - - 10944 - type: DeviceList - - uid: 11647 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - devices: - - 3151 - - 3150 - - 3149 - - 3155 - - 3156 - - 3157 - - 11054 - - 11057 - type: DeviceList - - uid: 11649 - components: - - pos: -27.5,4.5 - parent: 1 - type: Transform - - devices: - - 3151 - - 3150 - - 3149 - - 3155 - - 3156 - - 3157 - - 11054 - - 11057 - - 2284 - - 2094 - - 3160 - - 3272 - - 3273 - - 3158 - - 3159 - - 3161 - - 11058 - - 11055 - - 11059 - - 11042 - type: DeviceList - - uid: 11651 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 1 - type: Transform - - devices: - - 11085 - - 11083 - - 11084 - - 11082 - - 3158 - - 3159 - - 3161 - - 11653 - type: DeviceList - - uid: 11655 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,6.5 - parent: 1 - type: Transform - - devices: - - 2284 - - 2094 - - 3160 - - 3162 - - 3163 - - 11149 - - 11147 - - 11151 - - 11150 - type: DeviceList - - uid: 11657 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-3.5 - parent: 1 - type: Transform - - devices: - - 11162 - - 11174 - - 11163 - - 11175 - - 3272 - - 3273 - type: DeviceList - - uid: 11658 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 1 - type: Transform - - devices: - - 11195 - - 11332 - - 3115 - - 3116 - - 3117 - - 3104 - - 3103 - - 3102 - - 3096 - - 3097 - - 3100 - - 3101 - - 3118 - - 3119 - - 3120 - type: DeviceList - - uid: 11660 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 1 - type: Transform - - devices: - - 11234 - - 11233 - - 3094 - - 3095 - - 3102 - - 3103 - - 3104 - - 3105 - type: DeviceList - - uid: 11661 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform - - devices: - - 11667 - type: DeviceList - - uid: 11662 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 1 - type: Transform - - devices: - - 11666 - type: DeviceList - - uid: 11664 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 1 - type: Transform - - devices: - - 11286 - - 11284 - - 11283 - - 11285 - - 3111 - - 3112 - - 3113 - - 3106 - - 3107 - - 3108 - - 3109 - type: DeviceList - - uid: 11670 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform - - devices: - - 1979 - - 2283 - - 996 - - 11321 - - 11322 - - 11320 - - 11323 - type: DeviceList - - uid: 11672 - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform - - devices: - - 3091 - - 3090 - - 3109 - - 3093 - - 3092 - - 11260 - - 11261 - - 11331 - - 11330 - type: DeviceList - - uid: 11674 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 1 - type: Transform - - devices: - - 3117 - - 3116 - - 3115 - - 3145 - - 3121 - - 3122 - - 3123 - - 3266 - - 3265 - - 3264 - - 11366 - - 11367 - type: DeviceList - - uid: 11676 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - devices: - - 3123 - - 3122 - - 3121 - - 11629 - - 11628 - - 11627 - - 3125 - - 3124 - - 3126 - - 3243 - - 10197 - - 10204 - - 3828 - - 7182 - - 10219 - - 10220 - - 1832 - - 3055 - type: DeviceList - - uid: 11678 - components: - - pos: 21.5,-2.5 - parent: 1 - type: Transform - - devices: - - 3229 - - 3230 - - 3233 - - 3232 - - 10160 - - 10161 - - 10112 - - 10113 - - 11687 - - 11688 - type: DeviceList - - uid: 11680 - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform - - devices: - - 3231 - - 3232 - - 3233 - - 3241 - - 3242 - - 10145 - - 10144 - - 10143 - - 10142 - type: DeviceList - - uid: 11682 - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform - - devices: - - 3235 - - 3234 - - 3232 - - 3233 - - 3240 - - 10114 - - 10115 - - 11687 - - 11688 - - 11689 - type: DeviceList - - uid: 11684 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 1 - type: Transform - - devices: - - 7152 - - 7151 - - 3236 - - 3237 - - 1222 - - 11686 - type: DeviceList - - uid: 11690 - components: - - pos: 19.5,4.5 - parent: 1 - type: Transform - - devices: - - 3129 - - 3128 - - 3127 - - 3498 - - 3499 - - 10358 - - 10361 - type: DeviceList - - uid: 11692 - components: - - pos: 32.5,4.5 - parent: 1 - type: Transform - - devices: - - 3499 - - 3498 - - 3501 - - 3502 - - 3503 - - 10362 - - 10359 - type: DeviceList - - uid: 11694 - components: - - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 1 - type: Transform - - devices: - - 3503 - - 3502 - - 3501 - - 3504 - - 3505 - - 3506 - - 10360 - - 10363 - type: DeviceList - - uid: 11697 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,10.5 - parent: 1 - type: Transform - - devices: - - 3506 - - 3505 - - 3504 - - 3507 - - 4898 - - 10388 - - 10390 - - 10389 - - 10391 - type: DeviceList - - uid: 11698 - components: - - rot: 3.141592653589793 rad - pos: 40.5,20.5 - parent: 1 - type: Transform - - devices: - - 10413 - - 10414 - type: DeviceList - - uid: 11699 - components: - - rot: 3.141592653589793 rad - pos: 43.5,24.5 - parent: 1 - type: Transform - - devices: - - 4898 - - 4897 - - 11703 - - 11704 - - 10432 - - 10433 - type: DeviceList - - uid: 11700 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,32.5 - parent: 1 - type: Transform - - devices: - - 11703 - - 11704 - - 10448 - - 10450 - - 10449 - - 10451 - type: DeviceList - - uid: 11705 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 1 - type: Transform - - devices: - - 3262 - - 3261 - - 3263 - - 3264 - - 3265 - - 3266 - - 11410 - - 11408 - type: DeviceList - - uid: 11707 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-27.5 - parent: 1 - type: Transform - - devices: - - 3260 - - 3259 - - 3258 - - 3267 - - 3270 - - 3269 - - 3271 - - 3268 - - 11476 - - 11472 - - 11473 - - 11477 - - 11471 - - 11479 - - 11481 - - 11482 - - 11478 - - 11474 - - 11480 - - 11475 - type: DeviceList - - uid: 11709 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - devices: - - 3584 - - 3585 - - 3586 - - 3587 - - 3263 - - 3262 - - 3261 - - 3260 - - 3259 - - 3258 - - 7083 - - 7084 - - 7085 - - 11409 - - 11411 - type: DeviceList - - uid: 11711 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1 - type: Transform - - devices: - - 7086 - - 7083 - - 7084 - - 7085 - - 11507 - - 11510 - type: DeviceList - - uid: 11714 - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform - - devices: - - 3247 - - 3246 - - 3250 - - 3251 - - 3252 - - 3253 - - 2186 - - 11719 - - 11720 - type: DeviceList - - uid: 11718 - components: - - pos: 19.5,-19.5 - parent: 1 - type: Transform - - devices: - - 7250 - - 7249 - - 3595 - - 7301 - - 3257 - - 11589 - - 11587 - - 11588 - - 11590 - type: DeviceList -- proto: AirCanister - entities: - - uid: 6999 - components: - - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 7000 - components: - - pos: 37.5,-3.5 - parent: 1 - type: Transform - - uid: 7004 - components: - - pos: 37.5,-2.5 - parent: 1 - type: Transform - - uid: 7204 - components: - - pos: 10.5,-8.5 - parent: 1 - type: Transform - - uid: 8862 - components: - - pos: -15.5,-20.5 - parent: 1 - type: Transform - - uid: 8867 - components: - - pos: -27.5,-10.5 - parent: 1 - type: Transform - - uid: 8868 - components: - - pos: -34.5,-19.5 - parent: 1 - type: Transform - - uid: 9126 - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - uid: 9180 - components: - - pos: 26.5,-0.5 - parent: 1 - type: Transform - - uid: 9250 - components: - - pos: 33.5,32.5 - parent: 1 - type: Transform - - uid: 9336 - components: - - pos: 35.5,18.5 - parent: 1 - type: Transform - - uid: 9337 - components: - - pos: 21.5,25.5 - parent: 1 - type: Transform - - uid: 9338 - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 9691 - components: - - pos: -17.5,23.5 - parent: 1 - type: Transform - - uid: 9692 - components: - - pos: -7.5,22.5 - parent: 1 - type: Transform - - uid: 12006 - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform -- proto: Airlock - entities: - - uid: 3575 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 3576 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-27.5 - parent: 1 - type: Transform - - uid: 3577 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - uid: 3600 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-26.5 - parent: 1 - type: Transform - - uid: 3601 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 - parent: 1 - type: Transform - - uid: 3602 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 1 - type: Transform -- proto: AirlockArmoryLocked - entities: - - uid: 3314 - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 3347 - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform - - uid: 3348 - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform -- proto: AirlockBrigGlassLocked - entities: - - uid: 3321 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 3322 - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 3323 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 3324 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 4899 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,29.5 - parent: 1 - type: Transform - - uid: 4901 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,29.5 - parent: 1 - type: Transform -- proto: AirlockCaptainLocked - entities: - - uid: 3282 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 9651 - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform -- proto: AirlockCargoGlassLocked - entities: - - uid: 3588 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - type: Transform - - uid: 3589 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 3590 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 1 - type: Transform - - uid: 3591 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1 - type: Transform - - uid: 3592 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 1 - type: Transform - - uid: 3593 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform -- proto: AirlockChapelLocked - entities: - - uid: 3445 - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform -- proto: AirlockChemistryLocked - entities: - - uid: 3400 - components: - - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 1 - type: Transform -- proto: AirlockChiefEngineerGlassLocked - entities: - - uid: 3344 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 3399 - components: - - rot: 3.141592653589793 rad - pos: -17.5,15.5 - parent: 1 - type: Transform -- proto: AirlockCommandGlassLocked - entities: - - uid: 3275 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 3276 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 3277 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 3278 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 3279 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 3609 - components: - - rot: 3.141592653589793 rad - pos: -9.5,44.5 - parent: 1 - type: Transform - - uid: 4906 - components: - - rot: 3.141592653589793 rad - pos: 43.5,22.5 - parent: 1 - type: Transform -- proto: AirlockCommandLocked - entities: - - uid: 3611 - components: - - rot: 3.141592653589793 rad - pos: -4.5,45.5 - parent: 1 - type: Transform -- proto: AirlockDetectiveLocked - entities: - - uid: 3325 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 3333 - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 3334 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 3335 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 3336 - components: - - pos: 24.5,-7.5 - parent: 1 - type: Transform - - uid: 3337 - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - - uid: 3338 - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 3339 - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform - - uid: 3340 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 3341 - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 3342 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 3343 - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform - - uid: 3345 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - uid: 3346 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 1 - type: Transform -- proto: AirlockEngineeringLocked - entities: - - uid: 3357 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 1 - type: Transform - - uid: 3359 - components: - - rot: 3.141592653589793 rad - pos: 10.5,20.5 - parent: 1 - type: Transform - - uid: 3360 - components: - - rot: 3.141592653589793 rad - pos: -19.5,25.5 - parent: 1 - type: Transform - - uid: 3361 - components: - - rot: 3.141592653589793 rad - pos: -25.5,28.5 - parent: 1 - type: Transform - - uid: 3362 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 1 - type: Transform - - uid: 3363 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-22.5 - parent: 1 - type: Transform - - uid: 3364 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 1 - type: Transform - - uid: 3557 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,18.5 - parent: 1 - type: Transform - - uid: 4510 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,19.5 - parent: 1 - type: Transform - - uid: 7082 - components: - - name: Tech Vault - type: MetaData - - pos: -0.5,-32.5 - parent: 1 - type: Transform -- proto: AirlockExternal - entities: - - uid: 3550 - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform - - uid: 8327 - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 50 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 1 - type: Transform - - uid: 57 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,22.5 - parent: 1 - type: Transform - - uid: 2862 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-47.5 - parent: 1 - type: Transform - - uid: 3051 - components: - - rot: 3.141592653589793 rad - pos: 23.5,36.5 - parent: 1 - type: Transform - - uid: 3052 - components: - - rot: 3.141592653589793 rad - pos: 25.5,36.5 - parent: 1 - type: Transform - - uid: 3053 - components: - - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 1 - type: Transform - - uid: 3054 - components: - - rot: 3.141592653589793 rad - pos: 33.5,36.5 - parent: 1 - type: Transform - - uid: 3067 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,13.5 - parent: 1 - type: Transform - - uid: 3068 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,11.5 - parent: 1 - type: Transform - - uid: 3069 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,5.5 - parent: 1 - type: Transform - - uid: 3070 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,3.5 - parent: 1 - type: Transform - - uid: 5547 - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform - - uid: 12282 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,12.5 - parent: 1 - type: Transform - - uid: 12283 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,5.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 1523 - components: - - pos: 23.5,-23.5 - parent: 1 - type: Transform - - uid: 1717 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-28.5 - parent: 1 - type: Transform - - uid: 1720 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 1 - type: Transform - - uid: 1752 - components: - - pos: 25.5,-25.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassEngineeringLocked - entities: - - uid: 3571 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-24.5 - parent: 1 - type: Transform - - uid: 3572 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-22.5 - parent: 1 - type: Transform - - uid: 3573 - components: - - rot: 3.141592653589793 rad - pos: -29.5,31.5 - parent: 1 - type: Transform - - uid: 3574 - components: - - rot: 3.141592653589793 rad - pos: -28.5,30.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassLocked - entities: - - uid: 3284 - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform - - uid: 3285 - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - uid: 3286 - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform - - uid: 3354 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 1 - type: Transform - - uid: 3355 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-20.5 - parent: 1 - type: Transform - - uid: 3607 - components: - - rot: 3.141592653589793 rad - pos: -9.5,43.5 - parent: 1 - type: Transform - - uid: 3608 - components: - - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 1268 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,5.5 - parent: 1 - type: Transform - - uid: 1278 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,12.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 3059 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,3.5 - parent: 1 - type: Transform - - uid: 3060 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform - - uid: 3061 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 1 - type: Transform - - uid: 3062 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,13.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 2998 - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform - - uid: 4815 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,22.5 - parent: 1 - type: Transform - - uid: 5553 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-10.5 - parent: 1 - type: Transform - - uid: 8326 - components: - - rot: 3.141592653589793 rad - pos: 10.5,34.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 1728 - components: - - pos: 11.5,-31.5 - parent: 1 - type: Transform - - uid: 1729 - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform - - uid: 3047 - components: - - rot: 3.141592653589793 rad - pos: 33.5,38.5 - parent: 1 - type: Transform - - uid: 3048 - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - uid: 3049 - components: - - rot: 3.141592653589793 rad - pos: 25.5,38.5 - parent: 1 - type: Transform - - uid: 3050 - components: - - rot: 3.141592653589793 rad - pos: 23.5,38.5 - parent: 1 - type: Transform -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 3367 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 3368 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform -- proto: AirlockGlass - entities: - - uid: 1348 - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform - - uid: 3381 - components: - - rot: 3.141592653589793 rad - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 3382 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 3383 - components: - - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 3384 - components: - - rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 3385 - components: - - rot: 3.141592653589793 rad - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 3387 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 3437 - components: - - pos: -35.5,4.5 - parent: 1 - type: Transform - - uid: 3438 - components: - - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 3439 - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - uid: 3440 - components: - - pos: -36.5,0.5 - parent: 1 - type: Transform - - uid: 3441 - components: - - pos: -37.5,0.5 - parent: 1 - type: Transform - - uid: 3486 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 3487 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 3488 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 3489 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 3490 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 3491 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - uid: 3492 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 3493 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 3494 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 3495 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 1 - type: Transform - - uid: 3496 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 3497 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,3.5 - parent: 1 - type: Transform - - uid: 3542 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - uid: 3543 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 3544 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - uid: 3579 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 3580 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform - - uid: 3581 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 3582 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 1 - type: Transform - - uid: 3796 - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform - - uid: 4909 - components: - - rot: 3.141592653589793 rad - pos: 45.5,24.5 - parent: 1 - type: Transform - - uid: 6295 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 3287 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 3288 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 3313 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform -- proto: AirlockHydroponicsLocked - entities: - - uid: 3144 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- proto: AirlockJanitorLocked - entities: - - uid: 3366 - components: - - name: Jani Closet - type: MetaData - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform -- proto: AirlockMaint - entities: - - uid: 1021 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-18.5 - parent: 1 - type: Transform - - uid: 3545 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-23.5 - parent: 1 - type: Transform - - uid: 3546 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-23.5 - parent: 1 - type: Transform - - uid: 3547 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-15.5 - parent: 1 - type: Transform - - uid: 3548 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 - parent: 1 - type: Transform - - uid: 3551 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 3552 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1 - type: Transform - - uid: 3553 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,31.5 - parent: 1 - type: Transform - - uid: 3554 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,31.5 - parent: 1 - type: Transform - - uid: 3555 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,31.5 - parent: 1 - type: Transform - - uid: 12517 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-27.5 - parent: 1 - type: Transform -- proto: AirlockMaintAtmoLocked - entities: - - uid: 1305 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-17.5 - parent: 1 - type: Transform - - uid: 6988 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 1 - type: Transform -- proto: AirlockMaintCargoLocked - entities: - - uid: 3598 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 1 - type: Transform - - uid: 3599 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 1 - type: Transform -- proto: AirlockMaintChapelLocked - entities: - - uid: 3444 - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform -- proto: AirlockMaintCommandLocked - entities: - - uid: 3280 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,25.5 - parent: 1 - type: Transform - - uid: 3281 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 1 - type: Transform - - uid: 4907 - components: - - rot: 3.141592653589793 rad - pos: 38.5,22.5 - parent: 1 - type: Transform -- proto: AirlockMaintEngiLocked - entities: - - uid: 3330 - components: - - pos: 20.5,-2.5 - parent: 1 - type: Transform - - uid: 3331 - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - uid: 3332 - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform -- proto: AirlockMaintJanitorLocked - entities: - - uid: 3365 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 1 - type: Transform -- proto: AirlockMaintLocked - entities: - - uid: 1666 - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform - - uid: 3291 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - uid: 3292 - components: - - pos: 30.5,20.5 - parent: 1 - type: Transform - - uid: 3293 - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform - - uid: 3294 - components: - - pos: 35.5,20.5 - parent: 1 - type: Transform - - uid: 3295 - components: - - pos: 35.5,21.5 - parent: 1 - type: Transform - - uid: 3296 - components: - - pos: 43.5,15.5 - parent: 1 - type: Transform - - uid: 3297 - components: - - pos: 31.5,4.5 - parent: 1 - type: Transform - - uid: 3298 - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform - - uid: 3299 - components: - - pos: 44.5,0.5 - parent: 1 - type: Transform - - uid: 3300 - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform - - uid: 3301 - components: - - pos: 31.5,-12.5 - parent: 1 - type: Transform - - uid: 3302 - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform - - uid: 3303 - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform - - uid: 3304 - components: - - pos: -19.5,-23.5 - parent: 1 - type: Transform - - uid: 3305 - components: - - pos: -35.5,-6.5 - parent: 1 - type: Transform - - uid: 3306 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - uid: 3307 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - uid: 3308 - components: - - pos: -38.5,15.5 - parent: 1 - type: Transform - - uid: 3309 - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - uid: 3840 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 1 - type: Transform - - uid: 4896 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,26.5 - parent: 1 - type: Transform -- proto: AirlockMaintMedLocked - entities: - - uid: 3394 - components: - - rot: 3.141592653589793 rad - pos: -27.5,10.5 - parent: 1 - type: Transform - - uid: 3395 - components: - - rot: 3.141592653589793 rad - pos: -23.5,17.5 - parent: 1 - type: Transform - - uid: 3396 - components: - - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 1 - type: Transform -- proto: AirlockMaintRnDLocked - entities: - - uid: 3428 - components: - - pos: -25.5,-8.5 - parent: 1 - type: Transform - - uid: 3429 - components: - - pos: -13.5,-17.5 - parent: 1 - type: Transform - - uid: 3431 - components: - - pos: -11.5,-16.5 - parent: 1 - type: Transform -- proto: AirlockMaintSalvageLocked - entities: - - uid: 3597 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 1 - type: Transform -- proto: AirlockMaintSecLocked - entities: - - uid: 3328 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - uid: 3329 - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform -- proto: AirlockMedicalGlassLocked - entities: - - uid: 1859 - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 1860 - components: - - pos: -14.5,7.5 - parent: 1 - type: Transform - - uid: 3388 - components: - - rot: 3.141592653589793 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 3389 - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 3390 - components: - - rot: 3.141592653589793 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 3391 - components: - - rot: 3.141592653589793 rad - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 3392 - components: - - rot: 3.141592653589793 rad - pos: -24.5,8.5 - parent: 1 - type: Transform -- proto: AirlockMedicalLocked - entities: - - uid: 734 - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform - - uid: 3393 - components: - - rot: 3.141592653589793 rad - pos: -23.5,12.5 - parent: 1 - type: Transform - - uid: 3560 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,21.5 - parent: 1 - type: Transform -- proto: AirlockQuartermasterLocked - entities: - - uid: 3596 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform -- proto: AirlockResearchDirectorLocked - entities: - - uid: 3411 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform -- proto: AirlockSalvageGlassLocked - entities: - - uid: 1530 - components: - - pos: 17.5,-22.5 - parent: 1 - type: Transform - - uid: 7248 - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform -- proto: AirlockScienceGlassLocked - entities: - - uid: 3412 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - uid: 3413 - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - uid: 3414 - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - uid: 3415 - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform - - uid: 3416 - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform - - uid: 3417 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 3418 - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 3419 - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform - - uid: 3420 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 3421 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 3422 - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform - - uid: 3423 - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 3424 - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform - - uid: 3425 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 3426 - components: - - pos: -18.5,-13.5 - parent: 1 - type: Transform - - uid: 3427 - components: - - pos: -18.5,-9.5 - parent: 1 - type: Transform -- proto: AirlockSecurityGlassLocked - entities: - - uid: 3310 - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 3311 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - uid: 3312 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - uid: 3315 - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 3316 - components: - - pos: 33.5,19.5 - parent: 1 - type: Transform - - uid: 3317 - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform - - uid: 3318 - components: - - pos: 33.5,22.5 - parent: 1 - type: Transform - - uid: 3319 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 3320 - components: - - pos: 33.5,24.5 - parent: 1 - type: Transform -- proto: AirlockSecurityLocked - entities: - - uid: 2351 - components: - - pos: 18.5,21.5 - parent: 1 - type: Transform -- proto: AirlockServiceGlassLocked - entities: - - uid: 3369 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 3370 - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 3371 - components: - - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 3373 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 3374 - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform -- proto: AirlockServiceLocked - entities: - - uid: 3442 - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform - - uid: 3443 - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform -- proto: AirlockTheatreLocked - entities: - - uid: 3578 - components: - - name: Theatre Room - type: MetaData - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 - parent: 1 - type: Transform -- proto: AirlockVirologyLocked - entities: - - uid: 3397 - components: - - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 1 - type: Transform - - uid: 3398 - components: - - rot: 3.141592653589793 rad - pos: -15.5,17.5 - parent: 1 - type: Transform -- proto: AirSensor - entities: - - uid: 11666 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-13.5 - parent: 1 - type: Transform - - uid: 11667 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 1 - type: Transform -- proto: AltarSpawner - entities: - - uid: 3467 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform -- proto: AmeController - entities: - - uid: 6778 - components: - - pos: 29.5,-6.5 - parent: 1 - type: Transform -- proto: AmePart - entities: - - uid: 6775 - components: - - flags: InContainer - type: MetaData - - parent: 6774 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 6776 - components: - - flags: InContainer - type: MetaData - - parent: 6774 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 6777 - components: - - flags: InContainer - type: MetaData - - parent: 6774 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: AnalysisComputerCircuitboard - entities: - - uid: 9509 - components: - - pos: -4.5700207,-34.400963 - parent: 1 - type: Transform -- proto: AnomalyScanner - entities: - - uid: 6083 - components: - - pos: -28.443977,-5.4184704 - parent: 1 - type: Transform - - uid: 6084 - components: - - pos: -28.568977,-5.2934704 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 1872 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 1886 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - uid: 1887 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 1889 - components: - - rot: 3.141592653589793 rad - pos: -14.5,17.5 - parent: 1 - type: Transform - - uid: 1929 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 1 - type: Transform - - uid: 1930 - components: - - rot: 3.141592653589793 rad - pos: -0.5,26.5 - parent: 1 - type: Transform - - uid: 1931 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 1932 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-19.5 - parent: 1 - type: Transform - - uid: 1933 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 1934 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 1935 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 1942 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 1945 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 1946 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 1947 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 1 - type: Transform - - uid: 1948 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,27.5 - parent: 1 - type: Transform - - uid: 2442 - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - uid: 2870 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 - parent: 1 - type: Transform - - uid: 3685 - components: - - rot: 3.141592653589793 rad - pos: -2.5,43.5 - parent: 1 - type: Transform - - uid: 3686 - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform - - uid: 3687 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,52.5 - parent: 1 - type: Transform - - uid: 6248 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - type: Transform - - uid: 6278 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 6521 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 1 - type: Transform - - uid: 6522 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-27.5 - parent: 1 - type: Transform - - uid: 6523 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 1 - type: Transform - - uid: 6525 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 1 - type: Transform - - uid: 6526 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 1 - type: Transform - - uid: 6527 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 1 - type: Transform - - uid: 6780 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 7088 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 7089 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 1 - type: Transform - - uid: 7090 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-21.5 - parent: 1 - type: Transform - - uid: 7555 - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform - - uid: 7574 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,9.5 - parent: 1 - type: Transform - - uid: 7575 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - type: Transform - - uid: 7580 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform - - uid: 7766 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 1 - type: Transform - - uid: 8020 - components: - - rot: 3.141592653589793 rad - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 8021 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 1 - type: Transform - - uid: 8022 - components: - - pos: 41.5,24.5 - parent: 1 - type: Transform - - uid: 8023 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,28.5 - parent: 1 - type: Transform - - uid: 8189 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - uid: 8330 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 1 - type: Transform - - uid: 8383 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-18.5 - parent: 1 - type: Transform - - uid: 8415 - components: - - rot: 3.141592653589793 rad - pos: 34.5,32.5 - parent: 1 - type: Transform - - uid: 9183 - components: - - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 1 - type: Transform - - uid: 9740 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,24.5 - parent: 1 - type: Transform - - uid: 12568 - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform -- proto: APCElectronics - entities: - - uid: 9513 - components: - - pos: -1.6168957,-34.369713 - parent: 1 - type: Transform - - uid: 9514 - components: - - pos: -1.6168957,-34.604088 - parent: 1 - type: Transform -- proto: AppleSeeds - entities: - - uid: 5464 - components: - - pos: 29.131155,27.228777 - parent: 1 - type: Transform - - uid: 5465 - components: - - pos: 28.162405,27.582066 - parent: 1 - type: Transform -- proto: AppraisalTool - entities: - - uid: 7423 - components: - - pos: 11.436758,-20.269583 - parent: 1 - type: Transform - - uid: 7424 - components: - - pos: 11.639883,-20.394583 - parent: 1 - type: Transform -- proto: ArtifactAnalyzerMachineCircuitboard - entities: - - uid: 9508 - components: - - pos: -4.4293957,-34.588463 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 1949 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,12.5 - parent: 1 - type: Transform - - uid: 1950 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,5.5 - parent: 1 - type: Transform - - uid: 1954 - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform - - uid: 1955 - components: - - pos: 11.5,-31.5 - parent: 1 - type: Transform - - uid: 3001 - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform - - uid: 3063 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,13.5 - parent: 1 - type: Transform - - uid: 3064 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 1 - type: Transform - - uid: 3065 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform - - uid: 3066 - components: - - rot: -1.5707963267948966 rad - pos: -44.5,3.5 - parent: 1 - type: Transform - - uid: 3147 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 3148 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 4816 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,22.5 - parent: 1 - type: Transform - - uid: 7073 - components: - - pos: -42.5,-10.5 - parent: 1 - type: Transform - - uid: 8324 - components: - - pos: 10.5,34.5 - parent: 1 - type: Transform - - uid: 12494 - components: - - rot: 3.141592653589793 rad - pos: 23.5,38.5 - parent: 1 - type: Transform - - uid: 12495 - components: - - rot: 3.141592653589793 rad - pos: 25.5,38.5 - parent: 1 - type: Transform - - uid: 12496 - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - uid: 12497 - components: - - rot: 3.141592653589793 rad - pos: 33.5,38.5 - parent: 1 - type: Transform -- proto: AtmosFixBlockerMarker - entities: - - uid: 7260 - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform - - uid: 7261 - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform - - uid: 7262 - components: - - pos: 45.5,-9.5 - parent: 1 - type: Transform - - uid: 7263 - components: - - pos: 43.5,-11.5 - parent: 1 - type: Transform - - uid: 7264 - components: - - pos: 44.5,-11.5 - parent: 1 - type: Transform - - uid: 7265 - components: - - pos: 45.5,-11.5 - parent: 1 - type: Transform - - uid: 7266 - components: - - pos: 43.5,-13.5 - parent: 1 - type: Transform - - uid: 7267 - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform - - uid: 7268 - components: - - pos: 45.5,-13.5 - parent: 1 - type: Transform - - uid: 7269 - components: - - pos: 43.5,-17.5 - parent: 1 - type: Transform - - uid: 7270 - components: - - pos: 44.5,-17.5 - parent: 1 - type: Transform - - uid: 7271 - components: - - pos: 45.5,-17.5 - parent: 1 - type: Transform - - uid: 7272 - components: - - pos: 34.5,-22.5 - parent: 1 - type: Transform - - uid: 7273 - components: - - pos: 34.5,-23.5 - parent: 1 - type: Transform - - uid: 7274 - components: - - pos: 35.5,-22.5 - parent: 1 - type: Transform - - uid: 7275 - components: - - pos: 35.5,-23.5 - parent: 1 - type: Transform - - uid: 7276 - components: - - pos: 36.5,-22.5 - parent: 1 - type: Transform - - uid: 7277 - components: - - pos: 36.5,-23.5 - parent: 1 - type: Transform -- proto: AtmosFixNitrogenMarker - entities: - - uid: 7251 - components: - - pos: 43.5,-5.5 - parent: 1 - type: Transform - - uid: 7252 - components: - - pos: 44.5,-5.5 - parent: 1 - type: Transform - - uid: 7253 - components: - - pos: 45.5,-5.5 - parent: 1 - type: Transform -- proto: AtmosFixOxygenMarker - entities: - - uid: 7254 - components: - - pos: 43.5,-7.5 - parent: 1 - type: Transform - - uid: 7255 - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform - - uid: 7256 - components: - - pos: 45.5,-7.5 - parent: 1 - type: Transform -- proto: AtmosFixPlasmaMarker - entities: - - uid: 7257 - components: - - pos: 43.5,-15.5 - parent: 1 - type: Transform - - uid: 7258 - components: - - pos: 44.5,-15.5 - parent: 1 - type: Transform - - uid: 7259 - components: - - pos: 45.5,-15.5 - parent: 1 - type: Transform - - uid: 12339 - components: - - pos: -0.5,65.5 - parent: 1 - type: Transform -- proto: Autolathe - entities: - - uid: 1024 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 1878 - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform - - uid: 3808 - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- proto: BananaPhoneInstrument - entities: - - uid: 12404 - components: - - pos: -9.729915,-30.052383 - parent: 1 - type: Transform -- proto: BananaSeeds - entities: - - uid: 5467 - components: - - pos: 31.256155,27.175816 - parent: 1 - type: Transform -- proto: BannerNanotrasen - entities: - - uid: 4059 - components: - - pos: -9.5,31.5 - parent: 1 - type: Transform -- proto: BannerSecurity - entities: - - uid: 5303 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform -- proto: Barricade - entities: - - uid: 8278 - components: - - pos: -25.5,-20.5 - parent: 1 - type: Transform -- proto: BarSign - entities: - - uid: 60 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- proto: BassGuitarInstrument - entities: - - uid: 12290 - components: - - pos: -27.503199,41.532513 - parent: 1 - type: Transform -- proto: Beaker - entities: - - uid: 6085 - components: - - pos: -27.912727,-5.4184704 - parent: 1 - type: Transform - - uid: 6086 - components: - - pos: -27.662727,-5.1840954 - parent: 1 - type: Transform -- proto: Bed - entities: - - uid: 1805 - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform - - uid: 1806 - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 1810 - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform - - uid: 1818 - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform - - uid: 1851 - components: - - pos: -20.5,-3.5 - parent: 1 - type: Transform - - uid: 3482 - components: - - pos: -31.5,13.5 - parent: 1 - type: Transform - - uid: 4098 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 4962 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 5361 - components: - - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 5438 - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform - - uid: 5439 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 5440 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 5663 - components: - - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 7442 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 7714 - components: - - pos: -5.5,-29.5 - parent: 1 - type: Transform - - uid: 7715 - components: - - pos: -1.5,-29.5 - parent: 1 - type: Transform - - uid: 8261 - components: - - pos: -17.5,-53.5 - parent: 1 - type: Transform - - uid: 9017 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform - - uid: 9620 - components: - - pos: 15.5,27.5 - parent: 1 - type: Transform - - uid: 12405 - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform - - uid: 12406 - components: - - pos: -10.5,-31.5 - parent: 1 - type: Transform - - uid: 12407 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform -- proto: BedsheetCaptain - entities: - - uid: 4099 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform -- proto: BedsheetCE - entities: - - uid: 5662 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform -- proto: BedsheetClown - entities: - - uid: 12410 - components: - - pos: -10.5,-31.5 - parent: 1 - type: Transform -- proto: BedsheetCMO - entities: - - uid: 1861 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,16.5 - parent: 1 - type: Transform -- proto: BedsheetCosmos - entities: - - uid: 8262 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-53.5 - parent: 1 - type: Transform - - uid: 12408 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform -- proto: BedsheetCult - entities: - - uid: 3481 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 1 - type: Transform -- proto: BedsheetGreen - entities: - - uid: 5619 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 5620 - components: - - rot: 3.141592653589793 rad - pos: -10.5,21.5 - parent: 1 - type: Transform -- proto: BedsheetHOP - entities: - - uid: 4963 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform -- proto: BedsheetHOS - entities: - - uid: 5373 - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform -- proto: BedsheetMedical - entities: - - uid: 5621 - components: - - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 5622 - components: - - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 1 - type: Transform -- proto: BedsheetMime - entities: - - uid: 12409 - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform -- proto: BedsheetOrange - entities: - - uid: 5441 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 5442 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 5443 - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform -- proto: BedsheetQM - entities: - - uid: 7441 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 1 - type: Transform -- proto: BedsheetRD - entities: - - uid: 1850 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-3.5 - parent: 1 - type: Transform -- proto: BedsheetRed - entities: - - uid: 1807 - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 5362 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform -- proto: BedsheetSpawner - entities: - - uid: 7716 - components: - - pos: -5.5,-29.5 - parent: 1 - type: Transform - - uid: 7717 - components: - - pos: -1.5,-29.5 - parent: 1 - type: Transform - - uid: 9018 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform -- proto: BedsheetSyndie - entities: - - uid: 1814 - components: - - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 1 - type: Transform - - uid: 1817 - components: - - rot: 3.141592653589793 rad - pos: 25.5,24.5 - parent: 1 - type: Transform - - uid: 9621 - components: - - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 1 - type: Transform -- proto: Bible - entities: - - uid: 7547 - components: - - pos: -31.507103,14.620898 - parent: 1 - type: Transform -- proto: BiomassReclaimer - entities: - - uid: 1921 - components: - - pos: -22.5,14.5 - parent: 1 - type: Transform -- proto: BlastDoor - entities: - - uid: 3218 - components: - - pos: 34.5,11.5 - parent: 1 - type: Transform - - links: - - 5388 - - 5389 - type: DeviceLinkSink - - uid: 3434 - components: - - pos: -21.5,-9.5 - parent: 1 - type: Transform - - links: - - 6338 - type: DeviceLinkSink - - uid: 3435 - components: - - pos: -21.5,-13.5 - parent: 1 - type: Transform - - links: - - 6337 - type: DeviceLinkSink - - uid: 3561 - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform - - links: - - 1978 - type: DeviceLinkSink - - uid: 3795 - components: - - pos: 35.5,-24.5 - parent: 1 - type: Transform - - uid: 7432 - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform - - links: - - 7436 - type: DeviceLinkSink - - uid: 7433 - components: - - pos: 10.5,-31.5 - parent: 1 - type: Transform - - links: - - 7436 - type: DeviceLinkSink - - uid: 7434 - components: - - pos: 14.5,-31.5 - parent: 1 - type: Transform - - links: - - 7437 - type: DeviceLinkSink - - uid: 7435 - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform - - links: - - 7437 - type: DeviceLinkSink -- proto: BlastDoorOpen - entities: - - uid: 4064 - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform - - links: - - 4100 - type: DeviceLinkSink - - uid: 4065 - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform - - links: - - 4100 - type: DeviceLinkSink - - uid: 4066 - components: - - pos: 3.5,32.5 - parent: 1 - type: Transform - - links: - - 4100 - type: DeviceLinkSink -- proto: BlockGameArcade - entities: - - uid: 4945 - components: - - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 1 - type: Transform -- proto: Bloodpack - entities: - - uid: 9642 - components: - - pos: -26.340826,24.655668 - parent: 1 - type: Transform - - uid: 9643 - components: - - pos: -26.622076,24.452543 - parent: 1 - type: Transform -- proto: BodyBag_Container - entities: - - uid: 8242 - components: - - pos: -23.819975,23.448257 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: BookRandom - entities: - - uid: 5577 - components: - - pos: -37.35744,-3.616012 - parent: 1 - type: Transform - - uid: 5578 - components: - - pos: -37.623066,-3.397262 - parent: 1 - type: Transform - - uid: 5579 - components: - - pos: -37.41994,-3.100387 - parent: 1 - type: Transform -- proto: BooksBag - entities: - - uid: 5580 - components: - - pos: -37.421623,-3.3253686 - parent: 1 - type: Transform -- proto: BookshelfFilled - entities: - - uid: 1262 - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - uid: 1271 - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - uid: 1287 - components: - - pos: -41.5,-3.5 - parent: 1 - type: Transform - - uid: 1952 - components: - - pos: -39.5,-3.5 - parent: 1 - type: Transform - - uid: 1961 - components: - - pos: -41.5,-2.5 - parent: 1 - type: Transform - - uid: 1962 - components: - - pos: -39.5,-2.5 - parent: 1 - type: Transform - - uid: 2785 - components: - - pos: -18.5,-48.5 - parent: 1 - type: Transform - - uid: 2802 - components: - - pos: -17.5,-48.5 - parent: 1 - type: Transform - - uid: 4858 - components: - - pos: -39.5,-0.5 - parent: 1 - type: Transform - - uid: 4862 - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - uid: 4870 - components: - - pos: -41.5,-0.5 - parent: 1 - type: Transform - - uid: 4879 - components: - - pos: -38.5,-0.5 - parent: 1 - type: Transform -- proto: BoozeDispenser - entities: - - uid: 5950 - components: - - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 8270 - components: - - pos: -14.5,-48.5 - parent: 1 - type: Transform - - uid: 8292 - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform -- proto: BorgCharger - entities: - - uid: 658 - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform - - uid: 659 - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform -- proto: BoxBeaker - entities: - - uid: 5920 - components: - - pos: -10.486181,15.653046 - parent: 1 - type: Transform - - uid: 6050 - components: - - pos: -14.475516,-1.6162148 - parent: 1 - type: Transform -- proto: BoxBeanbag - entities: - - uid: 5430 - components: - - pos: 38.515625,12.538095 - parent: 1 - type: Transform -- proto: BoxBodyBag - entities: - - uid: 5351 - components: - - pos: 23.488127,5.639096 - parent: 1 - type: Transform - - uid: 5699 - components: - - pos: -22.480776,15.689974 - parent: 1 - type: Transform -- proto: BoxFlashbang - entities: - - uid: 5306 - components: - - pos: 21.502325,15.64172 - parent: 1 - type: Transform -- proto: BoxFolderBase - entities: - - uid: 3983 - components: - - rot: 1.5707963267948966 rad - pos: -10.572755,50.565598 - parent: 1 - type: Transform - - uid: 3984 - components: - - rot: 1.5707963267948966 rad - pos: -10.43213,50.690598 - parent: 1 - type: Transform - - uid: 3987 - components: - - rot: 3.141592653589793 rad - pos: -3.5883799,48.565598 - parent: 1 - type: Transform - - uid: 3988 - components: - - pos: -5.510255,56.62389 - parent: 1 - type: Transform - - uid: 3989 - components: - - pos: -5.33838,56.545765 - parent: 1 - type: Transform - - uid: 3992 - components: - - rot: 3.141592653589793 rad - pos: -8.385255,48.646393 - parent: 1 - type: Transform - - uid: 3993 - components: - - rot: 3.141592653589793 rad - pos: -8.510255,48.552643 - parent: 1 - type: Transform - - uid: 6055 - components: - - pos: -16.543133,-2.3470023 - parent: 1 - type: Transform - - uid: 6056 - components: - - pos: -16.746258,-2.5345023 - parent: 1 - type: Transform - - uid: 6057 - components: - - pos: -16.402508,-2.6438773 - parent: 1 - type: Transform -- proto: BoxFolderBlack - entities: - - uid: 5698 - components: - - pos: -22.449526,16.580599 - parent: 1 - type: Transform - - uid: 9636 - components: - - pos: 18.643274,25.583164 - parent: 1 - type: Transform -- proto: BoxFolderBlue - entities: - - uid: 4103 - components: - - pos: -9.648237,29.409079 - parent: 1 - type: Transform - - uid: 4975 - components: - - pos: 4.828023,27.549826 - parent: 1 - type: Transform - - uid: 5094 - components: - - pos: -4.4542303,19.564632 - parent: 1 - type: Transform - - uid: 5338 - components: - - pos: 28.444067,8.501565 - parent: 1 - type: Transform - - uid: 9584 - components: - - pos: 44.920597,31.694736 - parent: 1 - type: Transform - - uid: 9585 - components: - - pos: 44.420597,31.569736 - parent: 1 - type: Transform -- proto: BoxFolderGrey - entities: - - uid: 1883 - components: - - pos: -21.598257,-1.4382241 - parent: 1 - type: Transform - - uid: 1884 - components: - - pos: -21.473257,-1.3444741 - parent: 1 - type: Transform - - uid: 6069 - components: - - pos: -9.343652,-12.375296 - parent: 1 - type: Transform - - uid: 6075 - components: - - pos: -9.593652,-12.547171 - parent: 1 - type: Transform -- proto: BoxFolderRed - entities: - - uid: 4105 - components: - - pos: -9.335737,27.815329 - parent: 1 - type: Transform - - uid: 5096 - components: - - pos: -4.5636053,19.549007 - parent: 1 - type: Transform - - uid: 5337 - components: - - pos: 28.678442,8.532815 - parent: 1 - type: Transform - - uid: 5390 - components: - - pos: 27.618711,13.570517 - parent: 1 - type: Transform - - uid: 5397 - components: - - pos: 28.399961,16.572828 - parent: 1 - type: Transform - - uid: 9586 - components: - - pos: 41.576847,31.538486 - parent: 1 - type: Transform - - uid: 9587 - components: - - pos: 41.029972,31.710361 - parent: 1 - type: Transform -- proto: BoxFolderWhite - entities: - - uid: 1879 - components: - - pos: -19.351341,14.63665 - parent: 1 - type: Transform - - uid: 1880 - components: - - pos: -19.445091,14.558525 - parent: 1 - type: Transform - - uid: 5880 - components: - - pos: -14.371586,5.6317506 - parent: 1 - type: Transform - - uid: 5881 - components: - - pos: -17.378174,5.612771 - parent: 1 - type: Transform -- proto: BoxFolderYellow - entities: - - uid: 5095 - components: - - pos: -4.5011053,19.564632 - parent: 1 - type: Transform - - uid: 5677 - components: - - pos: 18.605122,-14.452038 - parent: 1 - type: Transform - - uid: 6787 - components: - - pos: 12.643603,-12.352579 - parent: 1 - type: Transform - - uid: 6788 - components: - - pos: 12.565478,-12.461954 - parent: 1 - type: Transform - - uid: 7304 - components: - - pos: 13.624326,-23.294518 - parent: 1 - type: Transform - - uid: 7305 - components: - - pos: 13.389951,-23.325768 - parent: 1 - type: Transform - - uid: 7401 - components: - - pos: 5.547744,-21.14656 - parent: 1 - type: Transform - - uid: 7402 - components: - - pos: 5.438369,-21.39656 - parent: 1 - type: Transform - - uid: 7403 - components: - - pos: 11.688369,-18.30281 - parent: 1 - type: Transform - - uid: 7404 - components: - - pos: 11.422744,-18.443436 - parent: 1 - type: Transform - - uid: 7448 - components: - - pos: 5.6525464,-15.315514 - parent: 1 - type: Transform - - uid: 7449 - components: - - pos: 5.4181714,-15.456139 - parent: 1 - type: Transform - - uid: 9600 - components: - - rot: 3.141592653589793 rad - pos: 42.779972,33.663486 - parent: 1 - type: Transform - - uid: 9601 - components: - - rot: 3.141592653589793 rad - pos: 42.358097,33.58536 - parent: 1 - type: Transform -- proto: BoxForensicPad - entities: - - uid: 9318 - components: - - pos: 13.474606,21.591854 - parent: 1 - type: Transform -- proto: BoxHandcuff - entities: - - uid: 5308 - components: - - pos: 21.022184,15.646895 - parent: 1 - type: Transform -- proto: BoxLatexGloves - entities: - - uid: 5903 - components: - - pos: -22.54765,11.635829 - parent: 1 - type: Transform - - uid: 5907 - components: - - pos: -12.516884,19.876278 - parent: 1 - type: Transform -- proto: BoxLethalshot - entities: - - uid: 5428 - components: - - pos: 38.48653,12.471226 - parent: 1 - type: Transform - - uid: 5429 - components: - - pos: 38.502155,12.596226 - parent: 1 - type: Transform -- proto: BoxLightbulb - entities: - - uid: 7667 - components: - - pos: 12.361424,-0.38664222 - parent: 1 - type: Transform -- proto: BoxLightMixed - entities: - - uid: 8911 - components: - - pos: -24.485905,-14.450869 - parent: 1 - type: Transform -- proto: BoxLighttube - entities: - - uid: 7669 - components: - - pos: 12.611424,-0.37101722 - parent: 1 - type: Transform -- proto: BoxMagazinePistol - entities: - - uid: 5423 - components: - - pos: 37.484375,13.569345 - parent: 1 - type: Transform -- proto: BoxMagazinePistolSubMachineGun - entities: - - uid: 5421 - components: - - pos: 36.5625,13.600595 - parent: 1 - type: Transform -- proto: BoxMouthSwab - entities: - - uid: 5906 - components: - - pos: -12.390701,20.206486 - parent: 1 - type: Transform - - uid: 5908 - components: - - pos: -12.415903,19.683134 - parent: 1 - type: Transform - - uid: 12456 - components: - - pos: -1.403451,-0.3365245 - parent: 1 - type: Transform -- proto: BoxPillCanister - entities: - - uid: 5918 - components: - - pos: -10.658056,15.653046 - parent: 1 - type: Transform -- proto: BoxSterileMask - entities: - - uid: 5905 - components: - - pos: -12.531326,20.581486 - parent: 1 - type: Transform - - uid: 6054 - components: - - pos: -14.459891,-1.7880898 - parent: 1 - type: Transform - - uid: 7183 - components: - - pos: -22.431108,11.63326 - parent: 1 - type: Transform -- proto: BoxSyringe - entities: - - uid: 5919 - components: - - pos: -10.345556,15.653046 - parent: 1 - type: Transform - - uid: 6049 - components: - - pos: -14.459891,-1.9287148 - parent: 1 - type: Transform -- proto: BoxZiptie - entities: - - uid: 5309 - components: - - pos: 20.533396,15.646895 - parent: 1 - type: Transform -- proto: BrbSign - entities: - - uid: 12484 - components: - - pos: 0.4449376,21.546635 - parent: 1 - type: Transform -- proto: BriefcaseBrownFilled - entities: - - uid: 5336 - components: - - pos: 28.490942,8.501565 - parent: 1 - type: Transform -- proto: BrigTimer - entities: - - uid: 12485 - components: - - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5535: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 12486 - components: - - rot: 3.141592653589793 rad - pos: 14.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5536: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 12487 - components: - - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5537: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource -- proto: Brutepack - entities: - - uid: 9629 - components: - - pos: 18.279701,27.765732 - parent: 1 - type: Transform -- proto: Bucket - entities: - - uid: 12549 - components: - - pos: -0.29377937,-4.689143 - parent: 1 - type: Transform - - uid: 12550 - components: - - pos: -0.6531544,-4.407893 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 27 - components: - - pos: -12.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1943 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 2792 - components: - - pos: -18.5,-49.5 - parent: 1 - type: Transform - - uid: 2797 - components: - - pos: -17.5,-49.5 - parent: 1 - type: Transform - - uid: 2863 - components: - - pos: -11.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2876 - components: - - pos: -10.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2877 - components: - - pos: -11.5,-49.5 - parent: 1 - type: Transform - - uid: 2878 - components: - - pos: -12.5,-49.5 - parent: 1 - type: Transform - - uid: 2879 - components: - - pos: -13.5,-49.5 - parent: 1 - type: Transform - - uid: 2880 - components: - - pos: -14.5,-49.5 - parent: 1 - type: Transform - - uid: 2881 - components: - - pos: -15.5,-49.5 - parent: 1 - type: Transform - - uid: 2882 - components: - - pos: -16.5,-49.5 - parent: 1 - type: Transform - - uid: 2883 - components: - - pos: -16.5,-50.5 - parent: 1 - type: Transform - - uid: 2884 - components: - - pos: -16.5,-51.5 - parent: 1 - type: Transform - - uid: 2885 - components: - - pos: -16.5,-52.5 - parent: 1 - type: Transform - - uid: 2886 - components: - - pos: -13.5,-50.5 - parent: 1 - type: Transform - - uid: 2887 - components: - - pos: -13.5,-51.5 - parent: 1 - type: Transform - - uid: 2888 - components: - - pos: -13.5,-52.5 - parent: 1 - type: Transform - - uid: 2889 - components: - - pos: -11.5,-48.5 - parent: 1 - type: Transform - - uid: 2890 - components: - - pos: -11.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3386 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 3718 - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3719 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - uid: 3720 - components: - - pos: -2.5,45.5 - parent: 1 - type: Transform - - uid: 3721 - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform - - uid: 3722 - components: - - pos: -4.5,45.5 - parent: 1 - type: Transform - - uid: 3723 - components: - - pos: -3.5,45.5 - parent: 1 - type: Transform - - uid: 3724 - components: - - pos: -5.5,45.5 - parent: 1 - type: Transform - - uid: 3725 - components: - - pos: -6.5,45.5 - parent: 1 - type: Transform - - uid: 3726 - components: - - pos: -7.5,45.5 - parent: 1 - type: Transform - - uid: 3727 - components: - - pos: -8.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3728 - components: - - pos: -9.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3729 - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3730 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - uid: 3731 - components: - - pos: -6.5,55.5 - parent: 1 - type: Transform - - uid: 3732 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - uid: 3733 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - uid: 3734 - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 3735 - components: - - pos: -4.5,53.5 - parent: 1 - type: Transform - - uid: 3736 - components: - - pos: -4.5,52.5 - parent: 1 - type: Transform - - uid: 3737 - components: - - pos: -4.5,51.5 - parent: 1 - type: Transform - - uid: 3738 - components: - - pos: -4.5,50.5 - parent: 1 - type: Transform - - uid: 3739 - components: - - pos: -4.5,49.5 - parent: 1 - type: Transform - - uid: 3740 - components: - - pos: -5.5,49.5 - parent: 1 - type: Transform - - uid: 3741 - components: - - pos: -6.5,49.5 - parent: 1 - type: Transform - - uid: 3742 - components: - - pos: -7.5,49.5 - parent: 1 - type: Transform - - uid: 3743 - components: - - pos: -8.5,49.5 - parent: 1 - type: Transform - - uid: 3744 - components: - - pos: -8.5,50.5 - parent: 1 - type: Transform - - uid: 3745 - components: - - pos: -8.5,51.5 - parent: 1 - type: Transform - - uid: 3746 - components: - - pos: -8.5,52.5 - parent: 1 - type: Transform - - uid: 3747 - components: - - pos: -8.5,53.5 - parent: 1 - type: Transform - - uid: 3748 - components: - - pos: -8.5,54.5 - parent: 1 - type: Transform - - uid: 3749 - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform - - uid: 3750 - components: - - pos: -7.5,55.5 - parent: 1 - type: Transform - - uid: 3751 - components: - - pos: -9.5,52.5 - parent: 1 - type: Transform - - uid: 3752 - components: - - pos: -3.5,52.5 - parent: 1 - type: Transform - - uid: 3753 - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform - - uid: 3754 - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3755 - components: - - pos: 3.5,52.5 - parent: 1 - type: Transform - - uid: 3756 - components: - - pos: 2.5,52.5 - parent: 1 - type: Transform - - uid: 3757 - components: - - pos: 1.5,52.5 - parent: 1 - type: Transform - - uid: 3758 - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform - - uid: 3759 - components: - - pos: -0.5,52.5 - parent: 1 - type: Transform - - uid: 3760 - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform - - uid: 3761 - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform - - uid: 3762 - components: - - pos: 1.5,54.5 - parent: 1 - type: Transform - - uid: 3763 - components: - - pos: 1.5,55.5 - parent: 1 - type: Transform - - uid: 3764 - components: - - pos: 1.5,51.5 - parent: 1 - type: Transform - - uid: 3765 - components: - - pos: 1.5,50.5 - parent: 1 - type: Transform - - uid: 3766 - components: - - pos: 1.5,49.5 - parent: 1 - type: Transform - - uid: 4168 - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4169 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 4170 - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform - - uid: 4171 - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 4172 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 4173 - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4174 - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4175 - components: - - pos: -17.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4176 - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - uid: 4177 - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 4178 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4179 - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform - - uid: 4180 - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform - - uid: 4181 - components: - - pos: -9.5,27.5 - parent: 1 - type: Transform - - uid: 4182 - components: - - pos: -9.5,26.5 - parent: 1 - type: Transform - - uid: 4183 - components: - - pos: -0.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4184 - components: - - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 4185 - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 4186 - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 4187 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 4188 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 4189 - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 4190 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 4191 - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform - - uid: 4192 - components: - - pos: -3.5,27.5 - parent: 1 - type: Transform - - uid: 4193 - components: - - pos: -3.5,26.5 - parent: 1 - type: Transform - - uid: 4194 - components: - - pos: -3.5,25.5 - parent: 1 - type: Transform - - uid: 4195 - components: - - pos: -3.5,24.5 - parent: 1 - type: Transform - - uid: 4196 - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform - - uid: 4197 - components: - - pos: -1.5,30.5 - parent: 1 - type: Transform - - uid: 4198 - components: - - pos: -1.5,31.5 - parent: 1 - type: Transform - - uid: 4199 - components: - - pos: -4.5,30.5 - parent: 1 - type: Transform - - uid: 4200 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 4201 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 4202 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4203 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 4204 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 4205 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 4206 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 4207 - components: - - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 4208 - components: - - pos: 3.5,28.5 - parent: 1 - type: Transform - - uid: 4209 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 4210 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - uid: 4211 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 4212 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4213 - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - uid: 4214 - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform - - uid: 4215 - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - uid: 4216 - components: - - pos: -0.5,20.5 - parent: 1 - type: Transform - - uid: 4217 - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform - - uid: 4218 - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform - - uid: 4219 - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - uid: 4220 - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform - - uid: 4221 - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform - - uid: 4222 - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform - - uid: 4223 - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform - - uid: 4224 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - uid: 4225 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 4226 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 4227 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 4228 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 4229 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 4230 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 4231 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - uid: 4232 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 4233 - components: - - pos: -9.5,31.5 - parent: 1 - type: Transform - - uid: 4234 - components: - - pos: -4.5,31.5 - parent: 1 - type: Transform - - uid: 4235 - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform - - uid: 4236 - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 4801 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4802 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 4803 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4804 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4805 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4806 - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 5156 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5157 - components: - - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 5158 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 5159 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 5160 - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 5161 - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - uid: 5162 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 5163 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - - uid: 5164 - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 5165 - components: - - pos: 11.5,14.5 - parent: 1 - type: Transform - - uid: 5166 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 5167 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 5168 - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform - - uid: 5169 - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 5170 - components: - - pos: 15.5,12.5 - parent: 1 - type: Transform - - uid: 5171 - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform - - uid: 5172 - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform - - uid: 5173 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 5174 - components: - - pos: 11.5,6.5 - parent: 1 - type: Transform - - uid: 5175 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5176 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5177 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5178 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5179 - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform - - uid: 5180 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5181 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5182 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 5183 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5184 - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - uid: 5185 - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - uid: 5186 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5187 - components: - - pos: 15.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5188 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 5189 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 5190 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - uid: 5191 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 5192 - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - - uid: 5193 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5194 - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - uid: 5195 - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform - - uid: 5196 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5197 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5198 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5199 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 5200 - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5201 - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5202 - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 5203 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5204 - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5205 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 5206 - components: - - pos: 19.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5207 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - uid: 5208 - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform - - uid: 5209 - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - uid: 5210 - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform - - uid: 5211 - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform - - uid: 5212 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 5213 - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform - - uid: 5214 - components: - - pos: 22.5,14.5 - parent: 1 - type: Transform - - uid: 5215 - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform - - uid: 5216 - components: - - pos: 22.5,15.5 - parent: 1 - type: Transform - - uid: 5217 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5218 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 5219 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - uid: 5220 - components: - - pos: 25.5,9.5 - parent: 1 - type: Transform - - uid: 5221 - components: - - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 5222 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 5223 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 5224 - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 5225 - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 5226 - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform - - uid: 5227 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 5228 - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform - - uid: 5229 - components: - - pos: 23.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5230 - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5231 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - uid: 5232 - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 5233 - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 5234 - components: - - pos: 30.5,9.5 - parent: 1 - type: Transform - - uid: 5235 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 5236 - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 5237 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 5238 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - uid: 5239 - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - uid: 5240 - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform - - uid: 5241 - components: - - pos: 32.5,8.5 - parent: 1 - type: Transform - - uid: 5242 - components: - - pos: 34.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5243 - components: - - pos: 33.5,17.5 - parent: 1 - type: Transform - - uid: 5244 - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform - - uid: 5245 - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 5246 - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 5247 - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform - - uid: 5248 - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform - - uid: 5249 - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform - - uid: 5250 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 5251 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 5252 - components: - - pos: 34.5,11.5 - parent: 1 - type: Transform - - uid: 5253 - components: - - pos: 35.5,11.5 - parent: 1 - type: Transform - - uid: 5254 - components: - - pos: 36.5,11.5 - parent: 1 - type: Transform - - uid: 5255 - components: - - pos: 37.5,11.5 - parent: 1 - type: Transform - - uid: 5256 - components: - - pos: 37.5,12.5 - parent: 1 - type: Transform - - uid: 5257 - components: - - pos: 31.5,13.5 - parent: 1 - type: Transform - - uid: 5258 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform - - uid: 5259 - components: - - pos: 29.5,13.5 - parent: 1 - type: Transform - - uid: 5260 - components: - - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 5261 - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - uid: 5262 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 5263 - components: - - pos: 31.5,17.5 - parent: 1 - type: Transform - - uid: 5264 - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform - - uid: 5265 - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform - - uid: 5266 - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 5267 - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform - - uid: 5268 - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 5269 - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform - - uid: 5270 - components: - - pos: 34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5271 - components: - - pos: 33.5,27.5 - parent: 1 - type: Transform - - uid: 5272 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - uid: 5273 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 5274 - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - uid: 5275 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 5276 - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - uid: 5277 - components: - - pos: 31.5,27.5 - parent: 1 - type: Transform - - uid: 5278 - components: - - pos: 30.5,27.5 - parent: 1 - type: Transform - - uid: 5279 - components: - - pos: 29.5,27.5 - parent: 1 - type: Transform - - uid: 5280 - components: - - pos: 28.5,27.5 - parent: 1 - type: Transform - - uid: 5281 - components: - - pos: 27.5,27.5 - parent: 1 - type: Transform - - uid: 5282 - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform - - uid: 5283 - components: - - pos: 25.5,27.5 - parent: 1 - type: Transform - - uid: 5284 - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform - - uid: 5285 - components: - - pos: 28.5,25.5 - parent: 1 - type: Transform - - uid: 5286 - components: - - pos: 27.5,25.5 - parent: 1 - type: Transform - - uid: 5287 - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform - - uid: 5288 - components: - - pos: 25.5,25.5 - parent: 1 - type: Transform - - uid: 5289 - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - uid: 5290 - components: - - pos: 30.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5291 - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5292 - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5293 - components: - - pos: 31.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5294 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5295 - components: - - pos: 33.5,20.5 - parent: 1 - type: Transform - - uid: 5296 - components: - - pos: 33.5,23.5 - parent: 1 - type: Transform - - uid: 5323 - components: - - pos: -33.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5744 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5745 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 5746 - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform - - uid: 5747 - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform - - uid: 5748 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 5749 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform - - uid: 5750 - components: - - pos: -24.5,6.5 - parent: 1 - type: Transform - - uid: 5751 - components: - - pos: -25.5,6.5 - parent: 1 - type: Transform - - uid: 5761 - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 5762 - components: - - pos: -24.5,14.5 - parent: 1 - type: Transform - - uid: 5763 - components: - - pos: -24.5,15.5 - parent: 1 - type: Transform - - uid: 5764 - components: - - pos: -25.5,15.5 - parent: 1 - type: Transform - - uid: 5765 - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform - - uid: 5766 - components: - - pos: -25.5,10.5 - parent: 1 - type: Transform - - uid: 5767 - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform - - uid: 5768 - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform - - uid: 5769 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform - - uid: 5770 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform - - uid: 5771 - components: - - pos: -19.5,10.5 - parent: 1 - type: Transform - - uid: 5772 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 5773 - components: - - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 5774 - components: - - pos: -18.5,9.5 - parent: 1 - type: Transform - - uid: 5775 - components: - - pos: -18.5,8.5 - parent: 1 - type: Transform - - uid: 5776 - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 5777 - components: - - pos: -18.5,6.5 - parent: 1 - type: Transform - - uid: 5778 - components: - - pos: -21.5,9.5 - parent: 1 - type: Transform - - uid: 5779 - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform - - uid: 5780 - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 5781 - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform - - uid: 5782 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5783 - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 5784 - components: - - pos: -11.5,8.5 - parent: 1 - type: Transform - - uid: 5785 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 5786 - components: - - pos: -11.5,10.5 - parent: 1 - type: Transform - - uid: 5787 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - uid: 5788 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 5789 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 5790 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - uid: 5791 - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 5792 - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - uid: 5793 - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 5794 - components: - - pos: -15.5,6.5 - parent: 1 - type: Transform - - uid: 5795 - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 5796 - components: - - pos: -9.5,10.5 - parent: 1 - type: Transform - - uid: 5797 - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 5798 - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 5799 - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - uid: 5800 - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 5801 - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform - - uid: 5802 - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 5803 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5804 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - uid: 5805 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 5806 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 5807 - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform - - uid: 5808 - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 5809 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform - - uid: 5810 - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform - - uid: 5811 - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 5812 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 5813 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - uid: 5814 - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5815 - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform - - uid: 5816 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 5817 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 5818 - components: - - pos: -17.5,15.5 - parent: 1 - type: Transform - - uid: 5819 - components: - - pos: -18.5,15.5 - parent: 1 - type: Transform - - uid: 5820 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 5821 - components: - - pos: -19.5,14.5 - parent: 1 - type: Transform - - uid: 5822 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 5823 - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 5824 - components: - - pos: -14.5,19.5 - parent: 1 - type: Transform - - uid: 5825 - components: - - pos: -15.5,19.5 - parent: 1 - type: Transform - - uid: 5826 - components: - - pos: -16.5,19.5 - parent: 1 - type: Transform - - uid: 5827 - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform - - uid: 5828 - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform - - uid: 5829 - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform - - uid: 5830 - components: - - pos: -12.5,21.5 - parent: 1 - type: Transform - - uid: 5831 - components: - - pos: -11.5,21.5 - parent: 1 - type: Transform - - uid: 5832 - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform - - uid: 5833 - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform - - uid: 5834 - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform - - uid: 5835 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - uid: 5836 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 5837 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform - - uid: 5838 - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform - - uid: 5839 - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform - - uid: 5840 - components: - - pos: -26.5,10.5 - parent: 1 - type: Transform - - uid: 5842 - components: - - pos: -17.5,19.5 - parent: 1 - type: Transform - - uid: 6200 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 6201 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 6202 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 6203 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 6204 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 6206 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform - - uid: 6207 - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 6208 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 6227 - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6228 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 6229 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - - uid: 6230 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6231 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 6232 - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 6233 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 6234 - components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 6235 - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - uid: 6236 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 6237 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 6238 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 6239 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 6240 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 6241 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 6242 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 6243 - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - - uid: 6244 - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - uid: 6245 - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform - - uid: 6246 - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform - - uid: 6247 - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 6249 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 6250 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 6251 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 6252 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 6253 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 6254 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 6255 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 6256 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 6257 - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 6258 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 6259 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 6260 - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 6261 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 6262 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6263 - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - uid: 6264 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 6265 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 6266 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 6267 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 6268 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 6269 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 6270 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 6271 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 6272 - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - uid: 6273 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 6274 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 6275 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 6276 - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform - - uid: 6277 - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 6279 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 6280 - components: - - pos: -2.5,9.5 - parent: 1 - type: Transform - - uid: 6281 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 6282 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 6283 - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 6284 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 6285 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 6292 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 6293 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 6294 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 6296 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 6297 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 6298 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform - - uid: 6299 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 6300 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - uid: 6301 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 6302 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 6303 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 6304 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 6305 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 6306 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6307 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6308 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6309 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6310 - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform - - uid: 6311 - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6312 - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6313 - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - uid: 6314 - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6315 - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6316 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 6317 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6318 - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 6319 - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6415 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 6416 - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 6417 - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6418 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - uid: 6419 - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform - - uid: 6420 - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - uid: 6421 - components: - - pos: -24.5,-6.5 - parent: 1 - type: Transform - - uid: 6422 - components: - - pos: -25.5,-6.5 - parent: 1 - type: Transform - - uid: 6423 - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - uid: 6424 - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - uid: 6425 - components: - - pos: -28.5,-6.5 - parent: 1 - type: Transform - - uid: 6426 - components: - - pos: -29.5,-6.5 - parent: 1 - type: Transform - - uid: 6427 - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform - - uid: 6428 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - uid: 6429 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - uid: 6430 - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform - - uid: 6431 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - uid: 6432 - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform - - uid: 6433 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - uid: 6434 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6435 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 6436 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 6437 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 6438 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 6439 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 6440 - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 6441 - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 6442 - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 6443 - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 6444 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 6445 - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform - - uid: 6446 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 6447 - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform - - uid: 6448 - components: - - pos: -10.5,-1.5 - parent: 1 - type: Transform - - uid: 6449 - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform - - uid: 6450 - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 6451 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 6452 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 6453 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 6454 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 6455 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 6456 - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform - - uid: 6457 - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform - - uid: 6458 - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform - - uid: 6459 - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform - - uid: 6460 - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - uid: 6461 - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - uid: 6462 - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 6463 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 6464 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - uid: 6465 - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform - - uid: 6466 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 6467 - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform - - uid: 6468 - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6469 - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform - - uid: 6470 - components: - - pos: -16.5,-17.5 - parent: 1 - type: Transform - - uid: 6471 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 6472 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 6473 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 6474 - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 6475 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 6476 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 6477 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 6478 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 6479 - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform - - uid: 6480 - components: - - pos: -18.5,-9.5 - parent: 1 - type: Transform - - uid: 6481 - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform - - uid: 6482 - components: - - pos: -17.5,-13.5 - parent: 1 - type: Transform - - uid: 6483 - components: - - pos: -18.5,-13.5 - parent: 1 - type: Transform - - uid: 6484 - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform - - uid: 6485 - components: - - pos: -17.5,-17.5 - parent: 1 - type: Transform - - uid: 6486 - components: - - pos: -18.5,-17.5 - parent: 1 - type: Transform - - uid: 6487 - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform - - uid: 6488 - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform - - uid: 6489 - components: - - pos: -14.5,-17.5 - parent: 1 - type: Transform - - uid: 6490 - components: - - pos: -15.5,-13.5 - parent: 1 - type: Transform - - uid: 6491 - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform - - uid: 6492 - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6493 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 6494 - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 6495 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform - - uid: 6496 - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform - - uid: 6497 - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform - - uid: 6498 - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform - - uid: 6499 - components: - - pos: -5.5,-12.5 - parent: 1 - type: Transform - - uid: 6500 - components: - - pos: -5.5,-11.5 - parent: 1 - type: Transform - - uid: 6501 - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform - - uid: 6502 - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform - - uid: 6503 - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform - - uid: 6504 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 6505 - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform - - uid: 6506 - components: - - pos: -7.5,-8.5 - parent: 1 - type: Transform - - uid: 6507 - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform - - uid: 6508 - components: - - pos: -9.5,-14.5 - parent: 1 - type: Transform - - uid: 6509 - components: - - pos: -10.5,-14.5 - parent: 1 - type: Transform - - uid: 6510 - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform - - uid: 6511 - components: - - pos: -11.5,-13.5 - parent: 1 - type: Transform - - uid: 6512 - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform - - uid: 6513 - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform - - uid: 6514 - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform - - uid: 6515 - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 6516 - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform - - uid: 6517 - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform - - uid: 6518 - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 6519 - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 6520 - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 6578 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6579 - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform - - uid: 6580 - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform - - uid: 6581 - components: - - pos: 23.5,-10.5 - parent: 1 - type: Transform - - uid: 6582 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - uid: 6583 - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform - - uid: 6584 - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform - - uid: 6585 - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform - - uid: 6586 - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform - - uid: 6587 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 6588 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - uid: 6589 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 6590 - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - - uid: 6591 - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform - - uid: 6592 - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 6593 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 6594 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 6595 - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform - - uid: 6596 - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 6597 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - uid: 6598 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - uid: 6599 - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform - - uid: 6600 - components: - - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 6601 - components: - - pos: 17.5,-14.5 - parent: 1 - type: Transform - - uid: 6602 - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform - - uid: 6603 - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform - - uid: 6604 - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform - - uid: 6605 - components: - - pos: 26.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6608 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - uid: 6609 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - uid: 6610 - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform - - uid: 6611 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 6612 - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - uid: 6613 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6614 - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform - - uid: 6615 - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - uid: 6618 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 6619 - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 6620 - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - - uid: 6621 - components: - - pos: 16.5,-7.5 - parent: 1 - type: Transform - - uid: 6622 - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - uid: 6623 - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 6624 - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform - - uid: 6625 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - uid: 6626 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 6627 - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 6628 - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform - - uid: 6629 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - - uid: 6630 - components: - - pos: 20.5,-4.5 - parent: 1 - type: Transform - - uid: 6631 - components: - - pos: 21.5,-4.5 - parent: 1 - type: Transform - - uid: 6632 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - uid: 6633 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - uid: 6634 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform - - uid: 6635 - components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform - - uid: 6636 - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform - - uid: 6637 - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - uid: 6638 - components: - - pos: 19.5,-7.5 - parent: 1 - type: Transform - - uid: 6639 - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6640 - components: - - pos: 34.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6641 - components: - - pos: 34.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6642 - components: - - pos: 34.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6643 - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6644 - components: - - pos: 36.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6645 - components: - - pos: 37.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6646 - components: - - pos: 38.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6647 - components: - - pos: 39.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6648 - components: - - pos: 40.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6649 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6650 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6651 - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6652 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6653 - components: - - pos: 40.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6654 - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6655 - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6656 - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6657 - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6658 - components: - - pos: 40.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6659 - components: - - pos: 40.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6660 - components: - - pos: 40.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6661 - components: - - pos: 40.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6662 - components: - - pos: 40.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6663 - components: - - pos: 40.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6664 - components: - - pos: 40.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6665 - components: - - pos: 39.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6666 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6667 - components: - - pos: 37.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6668 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6669 - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6670 - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6671 - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6672 - components: - - pos: 34.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6673 - components: - - pos: 34.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6674 - components: - - pos: 34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6675 - components: - - pos: 33.5,-16.5 - parent: 1 - type: Transform - - uid: 6676 - components: - - pos: 32.5,-16.5 - parent: 1 - type: Transform - - uid: 6677 - components: - - pos: 31.5,-16.5 - parent: 1 - type: Transform - - uid: 6678 - components: - - pos: 31.5,-17.5 - parent: 1 - type: Transform - - uid: 6679 - components: - - pos: 31.5,-18.5 - parent: 1 - type: Transform - - uid: 6680 - components: - - pos: 31.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6681 - components: - - pos: 32.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6682 - components: - - pos: 32.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6683 - components: - - pos: 33.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6684 - components: - - pos: 41.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6685 - components: - - pos: 33.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6686 - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6687 - components: - - pos: 33.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6688 - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6689 - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6690 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6691 - components: - - pos: 37.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6692 - components: - - pos: 37.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6693 - components: - - pos: 37.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6694 - components: - - pos: 42.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6695 - components: - - pos: 42.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6696 - components: - - pos: 42.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6697 - components: - - pos: 42.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6698 - components: - - pos: 42.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6699 - components: - - pos: 42.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6700 - components: - - pos: 42.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6701 - components: - - pos: 42.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6702 - components: - - pos: 42.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6703 - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6704 - components: - - pos: 42.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6705 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6706 - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6707 - components: - - pos: 42.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6708 - components: - - pos: 42.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6709 - components: - - pos: 41.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6710 - components: - - pos: 35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6711 - components: - - pos: 36.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6712 - components: - - pos: 37.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6713 - components: - - pos: 38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6714 - components: - - pos: 34.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6715 - components: - - pos: 34.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6716 - components: - - pos: 35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6717 - components: - - pos: 36.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6718 - components: - - pos: 37.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6719 - components: - - pos: 38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6720 - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6721 - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6722 - components: - - pos: 34.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6723 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6724 - components: - - pos: 34.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6725 - components: - - pos: 34.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6726 - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6727 - components: - - pos: 32.5,-10.5 - parent: 1 - type: Transform - - uid: 6728 - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform - - uid: 6729 - components: - - pos: 35.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6730 - components: - - pos: 36.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6731 - components: - - pos: 37.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6732 - components: - - pos: 38.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6733 - components: - - pos: 35.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6734 - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6735 - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6736 - components: - - pos: 38.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6737 - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6738 - components: - - pos: 29.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6739 - components: - - pos: 29.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6740 - components: - - pos: 29.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6741 - components: - - pos: 29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6783 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 6784 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7056 - components: - - pos: 43.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7057 - components: - - pos: 44.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7058 - components: - - pos: 45.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7059 - components: - - pos: 46.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7060 - components: - - pos: 46.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7061 - components: - - pos: 46.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7062 - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7063 - components: - - pos: 46.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7064 - components: - - pos: 46.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7106 - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 7107 - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform - - uid: 7108 - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 7205 - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform - - uid: 7225 - components: - - pos: 46.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7226 - components: - - pos: 46.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7227 - components: - - pos: 46.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7228 - components: - - pos: 46.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7229 - components: - - pos: 46.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7230 - components: - - pos: 46.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7231 - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7232 - components: - - pos: 46.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7233 - components: - - pos: 46.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7234 - components: - - pos: 45.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7235 - components: - - pos: 44.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7236 - components: - - pos: 43.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7308 - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7309 - components: - - pos: 15.5,-27.5 - parent: 1 - type: Transform - - uid: 7310 - components: - - pos: 15.5,-26.5 - parent: 1 - type: Transform - - uid: 7311 - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform - - uid: 7312 - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - - uid: 7313 - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform - - uid: 7314 - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform - - uid: 7315 - components: - - pos: 14.5,-26.5 - parent: 1 - type: Transform - - uid: 7316 - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform - - uid: 7317 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 7318 - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform - - uid: 7319 - components: - - pos: 10.5,-26.5 - parent: 1 - type: Transform - - uid: 7320 - components: - - pos: 9.5,-26.5 - parent: 1 - type: Transform - - uid: 7321 - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform - - uid: 7322 - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 7323 - components: - - pos: 6.5,-26.5 - parent: 1 - type: Transform - - uid: 7324 - components: - - pos: 5.5,-26.5 - parent: 1 - type: Transform - - uid: 7325 - components: - - pos: 11.5,-27.5 - parent: 1 - type: Transform - - uid: 7326 - components: - - pos: 11.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7327 - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7328 - components: - - pos: 11.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7329 - components: - - pos: 13.5,-27.5 - parent: 1 - type: Transform - - uid: 7330 - components: - - pos: 13.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7331 - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7332 - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7333 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7334 - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 7335 - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - uid: 7336 - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform - - uid: 7337 - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - uid: 7338 - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform - - uid: 7339 - components: - - pos: 9.5,-22.5 - parent: 1 - type: Transform - - uid: 7340 - components: - - pos: 9.5,-23.5 - parent: 1 - type: Transform - - uid: 7341 - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 7342 - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform - - uid: 7343 - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform - - uid: 7344 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 7345 - components: - - pos: 15.5,-20.5 - parent: 1 - type: Transform - - uid: 7346 - components: - - pos: 23.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7347 - components: - - pos: 22.5,-21.5 - parent: 1 - type: Transform - - uid: 7348 - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform - - uid: 7349 - components: - - pos: 20.5,-21.5 - parent: 1 - type: Transform - - uid: 7350 - components: - - pos: 19.5,-21.5 - parent: 1 - type: Transform - - uid: 7351 - components: - - pos: 18.5,-21.5 - parent: 1 - type: Transform - - uid: 7352 - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform - - uid: 7353 - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform - - uid: 7354 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 7355 - components: - - pos: 21.5,-25.5 - parent: 1 - type: Transform - - uid: 7356 - components: - - pos: 21.5,-26.5 - parent: 1 - type: Transform - - uid: 7357 - components: - - pos: 20.5,-26.5 - parent: 1 - type: Transform - - uid: 7358 - components: - - pos: 19.5,-26.5 - parent: 1 - type: Transform - - uid: 7359 - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform - - uid: 7360 - components: - - pos: 22.5,-23.5 - parent: 1 - type: Transform - - uid: 7361 - components: - - pos: 23.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7362 - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7363 - components: - - pos: 25.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7364 - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7365 - components: - - pos: 25.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7366 - components: - - pos: 25.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7367 - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - uid: 7368 - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7369 - components: - - pos: 21.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7370 - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7371 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7372 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 7373 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 7374 - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 7375 - components: - - pos: 5.5,-21.5 - parent: 1 - type: Transform - - uid: 7376 - components: - - pos: 5.5,-22.5 - parent: 1 - type: Transform - - uid: 7377 - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform - - uid: 7378 - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - - uid: 7379 - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform - - uid: 7380 - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform - - uid: 7381 - components: - - pos: 6.5,-17.5 - parent: 1 - type: Transform - - uid: 7382 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - uid: 7383 - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform - - uid: 7384 - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 7385 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7386 - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7387 - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7388 - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7563 - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform - - uid: 7564 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - uid: 7565 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - uid: 7566 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 7567 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 7568 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 7569 - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform - - uid: 7570 - components: - - pos: -38.5,22.5 - parent: 1 - type: Transform - - uid: 7571 - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - uid: 7720 - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7721 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 7722 - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7810 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7811 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - uid: 7812 - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform - - uid: 7813 - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 7814 - components: - - pos: -6.5,-25.5 - parent: 1 - type: Transform - - uid: 7815 - components: - - pos: -6.5,-26.5 - parent: 1 - type: Transform - - uid: 7816 - components: - - pos: -6.5,-27.5 - parent: 1 - type: Transform - - uid: 7817 - components: - - pos: -6.5,-28.5 - parent: 1 - type: Transform - - uid: 7818 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - uid: 7819 - components: - - pos: -2.5,-25.5 - parent: 1 - type: Transform - - uid: 7820 - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform - - uid: 7821 - components: - - pos: -2.5,-27.5 - parent: 1 - type: Transform - - uid: 7822 - components: - - pos: -2.5,-28.5 - parent: 1 - type: Transform - - uid: 7823 - components: - - pos: -3.5,-24.5 - parent: 1 - type: Transform - - uid: 7824 - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 7825 - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - uid: 7826 - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform - - uid: 7827 - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform - - uid: 7828 - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform - - uid: 7829 - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 7830 - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 7831 - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform - - uid: 7832 - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform - - uid: 7833 - components: - - pos: -5.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7834 - components: - - pos: -4.5,-33.5 - parent: 1 - type: Transform - - uid: 7835 - components: - - pos: -3.5,-33.5 - parent: 1 - type: Transform - - uid: 7836 - components: - - pos: -2.5,-33.5 - parent: 1 - type: Transform - - uid: 7837 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - uid: 7838 - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform - - uid: 7839 - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform - - uid: 7840 - components: - - pos: 0.5,-32.5 - parent: 1 - type: Transform - - uid: 7841 - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform - - uid: 7842 - components: - - pos: 1.5,-31.5 - parent: 1 - type: Transform - - uid: 7843 - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform - - uid: 7844 - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform - - uid: 7845 - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform - - uid: 7846 - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform - - uid: 7847 - components: - - pos: -6.5,-32.5 - parent: 1 - type: Transform - - uid: 7848 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7849 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - uid: 7850 - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - uid: 7851 - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 7852 - components: - - pos: 1.5,-17.5 - parent: 1 - type: Transform - - uid: 7853 - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 7854 - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - - uid: 7855 - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform - - uid: 7856 - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform - - uid: 7857 - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform - - uid: 7858 - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform - - uid: 7859 - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform - - uid: 7860 - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform - - uid: 7861 - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 7862 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 7863 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 7864 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 7865 - components: - - pos: 1.5,-8.5 - parent: 1 - type: Transform - - uid: 7866 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 7867 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 7868 - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 7869 - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 7870 - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform - - uid: 7871 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 7872 - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 7873 - components: - - pos: -20.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7874 - components: - - pos: -19.5,-25.5 - parent: 1 - type: Transform - - uid: 7875 - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - uid: 7876 - components: - - pos: -17.5,-25.5 - parent: 1 - type: Transform - - uid: 7877 - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform - - uid: 7878 - components: - - pos: -15.5,-25.5 - parent: 1 - type: Transform - - uid: 7879 - components: - - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 7880 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - uid: 7881 - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - uid: 7882 - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform - - uid: 7883 - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform - - uid: 7884 - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - uid: 7885 - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - uid: 7886 - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform - - uid: 7887 - components: - - pos: -11.5,-30.5 - parent: 1 - type: Transform - - uid: 7894 - components: - - pos: -17.5,-1.5 - parent: 1 - type: Transform - - uid: 7895 - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 7905 - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7906 - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 7907 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 7908 - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 7909 - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform - - uid: 7910 - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform - - uid: 7911 - components: - - pos: -37.5,-7.5 - parent: 1 - type: Transform - - uid: 7912 - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform - - uid: 7913 - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform - - uid: 7914 - components: - - pos: -37.5,-10.5 - parent: 1 - type: Transform - - uid: 7915 - components: - - pos: -36.5,-10.5 - parent: 1 - type: Transform - - uid: 7916 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 7917 - components: - - pos: -41.5,-6.5 - parent: 1 - type: Transform - - uid: 7918 - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform - - uid: 7919 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 7920 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 7921 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 7922 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 7923 - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform - - uid: 7924 - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform - - uid: 7925 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - uid: 7926 - components: - - pos: -39.5,-3.5 - parent: 1 - type: Transform - - uid: 7927 - components: - - pos: -39.5,-2.5 - parent: 1 - type: Transform - - uid: 7928 - components: - - pos: -39.5,-1.5 - parent: 1 - type: Transform - - uid: 7929 - components: - - pos: -39.5,-0.5 - parent: 1 - type: Transform - - uid: 7930 - components: - - pos: -38.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7931 - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform - - uid: 7932 - components: - - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 7933 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 7934 - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 7935 - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 7936 - components: - - pos: -40.5,10.5 - parent: 1 - type: Transform - - uid: 7937 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 7938 - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform - - uid: 7939 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 7940 - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 7941 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 7942 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 7943 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 7944 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 7945 - components: - - pos: -41.5,3.5 - parent: 1 - type: Transform - - uid: 7946 - components: - - pos: -42.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7947 - components: - - pos: -43.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7948 - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - uid: 7949 - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7950 - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7951 - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform - - uid: 7952 - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7953 - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7954 - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform - - uid: 7955 - components: - - pos: -42.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7956 - components: - - pos: -43.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7957 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7958 - components: - - pos: -31.5,9.5 - parent: 1 - type: Transform - - uid: 7959 - components: - - pos: -32.5,9.5 - parent: 1 - type: Transform - - uid: 7960 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 7961 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - uid: 7962 - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform - - uid: 7963 - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - uid: 7964 - components: - - pos: -34.5,6.5 - parent: 1 - type: Transform - - uid: 7965 - components: - - pos: -34.5,5.5 - parent: 1 - type: Transform - - uid: 7966 - components: - - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 7967 - components: - - pos: -34.5,3.5 - parent: 1 - type: Transform - - uid: 7968 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 7969 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 7970 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 7971 - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform - - uid: 7972 - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform - - uid: 7973 - components: - - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 7974 - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform - - uid: 7975 - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform - - uid: 7976 - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform - - uid: 7977 - components: - - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 7978 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 7979 - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform - - uid: 7980 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform - - uid: 7981 - components: - - pos: -36.5,9.5 - parent: 1 - type: Transform - - uid: 7982 - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform - - uid: 7983 - components: - - pos: -35.5,6.5 - parent: 1 - type: Transform - - uid: 7984 - components: - - pos: -36.5,6.5 - parent: 1 - type: Transform - - uid: 7985 - components: - - pos: -37.5,6.5 - parent: 1 - type: Transform - - uid: 7986 - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform - - uid: 7987 - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform - - uid: 7988 - components: - - pos: -31.5,6.5 - parent: 1 - type: Transform - - uid: 7989 - components: - - pos: -32.5,10.5 - parent: 1 - type: Transform - - uid: 7990 - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform - - uid: 7991 - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform - - uid: 7992 - components: - - pos: -32.5,13.5 - parent: 1 - type: Transform - - uid: 7993 - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform - - uid: 7994 - components: - - pos: -32.5,15.5 - parent: 1 - type: Transform - - uid: 7995 - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform - - uid: 7996 - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform - - uid: 7997 - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform - - uid: 7998 - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform - - uid: 7999 - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform - - uid: 8000 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform - - uid: 8095 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8096 - components: - - pos: 28.5,1.5 - parent: 1 - type: Transform - - uid: 8097 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 8098 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 8099 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 8100 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 8101 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 8102 - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 8103 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 8104 - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 8105 - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform - - uid: 8106 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 8107 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 8108 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 8109 - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 8110 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 8111 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 8112 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 8113 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 8114 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 8115 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 8116 - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 8117 - components: - - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 8118 - components: - - pos: 33.5,2.5 - parent: 1 - type: Transform - - uid: 8119 - components: - - pos: 34.5,2.5 - parent: 1 - type: Transform - - uid: 8120 - components: - - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 8121 - components: - - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 8122 - components: - - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 8123 - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 8124 - components: - - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 8125 - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform - - uid: 8126 - components: - - pos: 41.5,2.5 - parent: 1 - type: Transform - - uid: 8127 - components: - - pos: 42.5,2.5 - parent: 1 - type: Transform - - uid: 8128 - components: - - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 8129 - components: - - pos: 44.5,2.5 - parent: 1 - type: Transform - - uid: 8130 - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 8131 - components: - - pos: 43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8132 - components: - - pos: 44.5,14.5 - parent: 1 - type: Transform - - uid: 8133 - components: - - pos: 45.5,14.5 - parent: 1 - type: Transform - - uid: 8134 - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform - - uid: 8135 - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 8136 - components: - - pos: 45.5,11.5 - parent: 1 - type: Transform - - uid: 8137 - components: - - pos: 45.5,10.5 - parent: 1 - type: Transform - - uid: 8138 - components: - - pos: 45.5,9.5 - parent: 1 - type: Transform - - uid: 8139 - components: - - pos: 45.5,8.5 - parent: 1 - type: Transform - - uid: 8140 - components: - - pos: 45.5,7.5 - parent: 1 - type: Transform - - uid: 8141 - components: - - pos: 45.5,6.5 - parent: 1 - type: Transform - - uid: 8142 - components: - - pos: 45.5,5.5 - parent: 1 - type: Transform - - uid: 8143 - components: - - pos: 45.5,4.5 - parent: 1 - type: Transform - - uid: 8144 - components: - - pos: 46.5,5.5 - parent: 1 - type: Transform - - uid: 8145 - components: - - pos: 45.5,15.5 - parent: 1 - type: Transform - - uid: 8146 - components: - - pos: 45.5,16.5 - parent: 1 - type: Transform - - uid: 8147 - components: - - pos: 45.5,17.5 - parent: 1 - type: Transform - - uid: 8148 - components: - - pos: 45.5,18.5 - parent: 1 - type: Transform - - uid: 8149 - components: - - pos: 45.5,19.5 - parent: 1 - type: Transform - - uid: 8150 - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform - - uid: 8151 - components: - - pos: 41.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8152 - components: - - pos: 41.5,23.5 - parent: 1 - type: Transform - - uid: 8153 - components: - - pos: 41.5,22.5 - parent: 1 - type: Transform - - uid: 8154 - components: - - pos: 40.5,22.5 - parent: 1 - type: Transform - - uid: 8155 - components: - - pos: 42.5,22.5 - parent: 1 - type: Transform - - uid: 8156 - components: - - pos: 43.5,22.5 - parent: 1 - type: Transform - - uid: 8157 - components: - - pos: 44.5,22.5 - parent: 1 - type: Transform - - uid: 8158 - components: - - pos: 45.5,22.5 - parent: 1 - type: Transform - - uid: 8159 - components: - - pos: 45.5,21.5 - parent: 1 - type: Transform - - uid: 8160 - components: - - pos: 38.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8161 - components: - - pos: 39.5,28.5 - parent: 1 - type: Transform - - uid: 8162 - components: - - pos: 40.5,28.5 - parent: 1 - type: Transform - - uid: 8163 - components: - - pos: 41.5,28.5 - parent: 1 - type: Transform - - uid: 8164 - components: - - pos: 42.5,28.5 - parent: 1 - type: Transform - - uid: 8165 - components: - - pos: 43.5,28.5 - parent: 1 - type: Transform - - uid: 8166 - components: - - pos: 44.5,28.5 - parent: 1 - type: Transform - - uid: 8167 - components: - - pos: 45.5,28.5 - parent: 1 - type: Transform - - uid: 8168 - components: - - pos: 45.5,27.5 - parent: 1 - type: Transform - - uid: 8169 - components: - - pos: 45.5,26.5 - parent: 1 - type: Transform - - uid: 8170 - components: - - pos: 41.5,27.5 - parent: 1 - type: Transform - - uid: 8171 - components: - - pos: 41.5,26.5 - parent: 1 - type: Transform - - uid: 8172 - components: - - pos: 43.5,29.5 - parent: 1 - type: Transform - - uid: 8173 - components: - - pos: 43.5,30.5 - parent: 1 - type: Transform - - uid: 8174 - components: - - pos: 43.5,31.5 - parent: 1 - type: Transform - - uid: 8175 - components: - - pos: 43.5,32.5 - parent: 1 - type: Transform - - uid: 8176 - components: - - pos: 43.5,33.5 - parent: 1 - type: Transform - - uid: 8177 - components: - - pos: 42.5,32.5 - parent: 1 - type: Transform - - uid: 8178 - components: - - pos: 41.5,32.5 - parent: 1 - type: Transform - - uid: 8179 - components: - - pos: 40.5,32.5 - parent: 1 - type: Transform - - uid: 8180 - components: - - pos: 44.5,32.5 - parent: 1 - type: Transform - - uid: 8181 - components: - - pos: 45.5,32.5 - parent: 1 - type: Transform - - uid: 8190 - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8193 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - - uid: 8194 - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 8195 - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 8196 - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 8197 - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - uid: 8198 - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform - - uid: 8199 - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 8200 - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform - - uid: 8201 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 8202 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 8203 - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform - - uid: 8204 - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - - uid: 8205 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 8206 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform - - uid: 8207 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - - uid: 8208 - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - - uid: 8209 - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - - uid: 8210 - components: - - pos: 43.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8211 - components: - - pos: 42.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8212 - components: - - pos: 42.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8213 - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8214 - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8215 - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - uid: 8216 - components: - - pos: 39.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8217 - components: - - pos: 37.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8218 - components: - - pos: 37.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8219 - components: - - pos: 37.5,30.5 - parent: 1 - type: Transform - - uid: 8248 - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform - - uid: 8249 - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform - - uid: 8250 - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8251 - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8252 - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform - - uid: 8363 - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8364 - components: - - pos: -31.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8365 - components: - - pos: -31.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8366 - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8367 - components: - - pos: -32.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8368 - components: - - pos: -33.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8369 - components: - - pos: -34.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8370 - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8371 - components: - - pos: -35.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8374 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - uid: 8375 - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8376 - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - uid: 8377 - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8378 - components: - - pos: -29.5,-15.5 - parent: 1 - type: Transform - - uid: 8379 - components: - - pos: -29.5,-14.5 - parent: 1 - type: Transform - - uid: 8380 - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform - - uid: 8381 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - uid: 8382 - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - uid: 8385 - components: - - pos: -39.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8386 - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8387 - components: - - pos: -38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8388 - components: - - pos: -38.5,-20.5 - parent: 1 - type: Transform - - uid: 8389 - components: - - pos: -40.5,-18.5 - parent: 1 - type: Transform - - uid: 8390 - components: - - pos: -41.5,-18.5 - parent: 1 - type: Transform - - uid: 8391 - components: - - pos: -42.5,-18.5 - parent: 1 - type: Transform - - uid: 8392 - components: - - pos: -41.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8393 - components: - - pos: -41.5,-16.5 - parent: 1 - type: Transform - - uid: 8394 - components: - - pos: -41.5,-15.5 - parent: 1 - type: Transform - - uid: 8395 - components: - - pos: -41.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8396 - components: - - pos: -41.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8397 - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8398 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 8399 - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform - - uid: 8400 - components: - - pos: -34.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8401 - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8402 - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8403 - components: - - pos: -30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8404 - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8405 - components: - - pos: -28.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8406 - components: - - pos: -27.5,-20.5 - parent: 1 - type: Transform - - uid: 8407 - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform - - uid: 8408 - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8409 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - uid: 8410 - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8411 - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8412 - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform - - uid: 8413 - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8414 - components: - - pos: -22.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8437 - components: - - pos: 34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8438 - components: - - pos: 34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8439 - components: - - pos: 34.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8440 - components: - - pos: 35.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8441 - components: - - pos: 36.5,34.5 - parent: 1 - type: Transform - - uid: 8442 - components: - - pos: 33.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8443 - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8444 - components: - - pos: 31.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8445 - components: - - pos: 30.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8446 - components: - - pos: 29.5,34.5 - parent: 1 - type: Transform - - uid: 8447 - components: - - pos: 28.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8448 - components: - - pos: 27.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8449 - components: - - pos: 26.5,34.5 - parent: 1 - type: Transform - - uid: 8450 - components: - - pos: 25.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8451 - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8452 - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8453 - components: - - pos: 22.5,34.5 - parent: 1 - type: Transform - - uid: 8454 - components: - - pos: 21.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8455 - components: - - pos: 20.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8456 - components: - - pos: 20.5,33.5 - parent: 1 - type: Transform - - uid: 8457 - components: - - pos: 24.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8458 - components: - - pos: 24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8459 - components: - - pos: 24.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8460 - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8461 - components: - - pos: 32.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8462 - components: - - pos: 32.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8463 - components: - - pos: 25.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8464 - components: - - pos: 31.5,33.5 - parent: 1 - type: Transform - - uid: 8465 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - uid: 8466 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - uid: 8467 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8468 - components: - - pos: 8.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8469 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - uid: 8470 - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8471 - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform - - uid: 8472 - components: - - pos: 8.5,27.5 - parent: 1 - type: Transform - - uid: 8473 - components: - - pos: 8.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8474 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 8475 - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8476 - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform - - uid: 8477 - components: - - pos: 10.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8478 - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8479 - components: - - pos: 10.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8480 - components: - - pos: 10.5,33.5 - parent: 1 - type: Transform - - uid: 8481 - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8482 - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8483 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8935 - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8936 - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform - - uid: 9067 - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9068 - components: - - pos: -40.5,-11.5 - parent: 1 - type: Transform - - uid: 9069 - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9070 - components: - - pos: -41.5,-10.5 - parent: 1 - type: Transform - - uid: 9197 - components: - - pos: -32.5,24.5 - parent: 1 - type: Transform - - uid: 9200 - components: - - pos: -31.5,23.5 - parent: 1 - type: Transform - - uid: 9202 - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9203 - components: - - pos: -33.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9204 - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9205 - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9206 - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9207 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9208 - components: - - pos: -26.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9209 - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9210 - components: - - pos: -28.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9211 - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9212 - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 9213 - components: - - pos: -29.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9214 - components: - - pos: -29.5,20.5 - parent: 1 - type: Transform - - uid: 9215 - components: - - pos: -29.5,19.5 - parent: 1 - type: Transform - - uid: 9216 - components: - - pos: -29.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9217 - components: - - pos: -29.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9218 - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform - - uid: 9219 - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - uid: 9220 - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9221 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9222 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 9223 - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9224 - components: - - pos: -31.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9225 - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9226 - components: - - pos: -33.5,19.5 - parent: 1 - type: Transform - - uid: 9227 - components: - - pos: -34.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9228 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9229 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9230 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9231 - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9233 - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 9310 - components: - - pos: 20.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9735 - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 9738 - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9739 - components: - - pos: -31.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12124 - components: - - pos: -39.5,23.5 - parent: 1 - type: Transform - - uid: 12125 - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12358 - components: - - pos: 26.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12359 - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12360 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12361 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12472 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 12473 - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 12474 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 12475 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 12477 - components: - - pos: 46.5,22.5 - parent: 1 - type: Transform - - uid: 12479 - components: - - pos: -26.5,2.5 - parent: 1 - type: Transform - - uid: 12480 - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform - - uid: 12564 - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableApcStack - entities: - - uid: 3981 - components: - - pos: -2.3223429,44.45334 - parent: 1 - type: Transform - - uid: 7643 - components: - - pos: -41.491985,19.092318 - parent: 1 - type: Transform - - uid: 8229 - components: - - pos: -5.0632915,-20.463463 - parent: 1 - type: Transform - - uid: 11798 - components: - - pos: 12.5046625,23.439209 - parent: 1 - type: Transform -- proto: CableApcStack1 - entities: - - uid: 6071 - components: - - pos: -5.883921,-15.463461 - parent: 1 - type: Transform - - count: 5 - type: Stack -- proto: CableHV - entities: - - uid: 1137 - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform - - uid: 1138 - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - uid: 1139 - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform - - uid: 1140 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1141 - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - uid: 1142 - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 1143 - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform - - uid: 1144 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - uid: 1145 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - uid: 1146 - components: - - pos: 25.5,-11.5 - parent: 1 - type: Transform - - uid: 1147 - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform - - uid: 1148 - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1149 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1150 - components: - - pos: 23.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1151 - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1152 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1153 - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1154 - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1155 - components: - - pos: 22.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1156 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1157 - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform - - uid: 1158 - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform - - uid: 1159 - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform - - uid: 1160 - components: - - pos: 17.5,-15.5 - parent: 1 - type: Transform - - uid: 1161 - components: - - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 1162 - components: - - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 1163 - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform - - uid: 1164 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - uid: 1165 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - uid: 1166 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - uid: 1167 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 1168 - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - - uid: 1169 - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform - - uid: 1170 - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 1171 - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform - - uid: 1172 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 1173 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1174 - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1175 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1195 - components: - - pos: 22.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1196 - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 1197 - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform - - uid: 1454 - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 1825 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 2496 - components: - - pos: -34.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2497 - components: - - pos: -33.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2498 - components: - - pos: -32.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2499 - components: - - pos: -30.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2500 - components: - - pos: -29.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2501 - components: - - pos: -28.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2502 - components: - - pos: -28.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2503 - components: - - pos: -29.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2504 - components: - - pos: -30.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2505 - components: - - pos: -32.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2506 - components: - - pos: -33.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2507 - components: - - pos: -34.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2508 - components: - - pos: -34.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2509 - components: - - pos: -33.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2510 - components: - - pos: -32.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2511 - components: - - pos: -34.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2512 - components: - - pos: -33.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2513 - components: - - pos: -32.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2514 - components: - - pos: -30.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2515 - components: - - pos: -29.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2516 - components: - - pos: -28.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2517 - components: - - pos: -28.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2518 - components: - - pos: -29.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2519 - components: - - pos: -30.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2520 - components: - - pos: -31.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2522 - components: - - pos: -31.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2525 - components: - - pos: -32.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2526 - components: - - pos: -31.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2527 - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2528 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2529 - components: - - pos: -32.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2530 - components: - - pos: -33.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2531 - components: - - pos: -34.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2532 - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2533 - components: - - pos: -35.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2534 - components: - - pos: -35.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2535 - components: - - pos: -35.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2536 - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2538 - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2539 - components: - - pos: -31.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2540 - components: - - pos: -30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2541 - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2542 - components: - - pos: -30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2543 - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2544 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2545 - components: - - pos: -25.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2546 - components: - - pos: -25.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2547 - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - uid: 2548 - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2549 - components: - - pos: -28.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2550 - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2551 - components: - - pos: -29.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2554 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2590 - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2619 - components: - - pos: -28.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2620 - components: - - pos: -29.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2621 - components: - - pos: -30.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2622 - components: - - pos: -31.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2623 - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2624 - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2625 - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2626 - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2627 - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2628 - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2629 - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2630 - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2631 - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2632 - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2633 - components: - - pos: -25.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2634 - components: - - pos: -26.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2635 - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2636 - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2637 - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2638 - components: - - pos: -23.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2639 - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2640 - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2641 - components: - - pos: -25.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2642 - components: - - pos: -26.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2643 - components: - - pos: -28.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2644 - components: - - pos: -29.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2645 - components: - - pos: -30.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2646 - components: - - pos: -31.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2647 - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2648 - components: - - pos: -30.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2649 - components: - - pos: -29.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2650 - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2651 - components: - - pos: -27.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2652 - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2793 - components: - - pos: -14.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2809 - components: - - pos: -14.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2810 - components: - - pos: -12.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2811 - components: - - pos: -16.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2812 - components: - - pos: -13.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2813 - components: - - pos: -12.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2814 - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - uid: 2822 - components: - - pos: -14.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2824 - components: - - pos: -12.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2825 - components: - - pos: -13.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2826 - components: - - pos: -13.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2827 - components: - - pos: -11.5,-53.5 - parent: 1 - type: Transform - - uid: 2828 - components: - - pos: -11.5,-52.5 - parent: 1 - type: Transform - - uid: 2829 - components: - - pos: -15.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2830 - components: - - pos: -14.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2831 - components: - - pos: -14.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2832 - components: - - pos: -11.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2833 - components: - - pos: -11.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2834 - components: - - pos: -15.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2835 - components: - - pos: -14.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2839 - components: - - pos: -16.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3675 - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - uid: 3676 - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform - - uid: 3677 - components: - - pos: -0.5,46.5 - parent: 1 - type: Transform - - uid: 3679 - components: - - pos: -0.5,45.5 - parent: 1 - type: Transform - - uid: 3680 - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform - - uid: 4047 - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - uid: 4052 - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - uid: 4237 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 4238 - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform - - uid: 4239 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - uid: 4240 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 4241 - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform - - uid: 4242 - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform - - uid: 4243 - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform - - uid: 4244 - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - uid: 4245 - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 4246 - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 4247 - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 4248 - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform - - uid: 4249 - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform - - uid: 4250 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 4251 - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 4252 - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 4253 - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - uid: 4254 - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform - - uid: 4255 - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - - uid: 4256 - components: - - pos: 8.5,6.5 - parent: 1 - type: Transform - - uid: 4257 - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - uid: 4258 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 4259 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 4260 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform - - uid: 4261 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 4262 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - uid: 4263 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 4264 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 4265 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 4266 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 4267 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 4268 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4269 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4270 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4271 - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4272 - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4273 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4274 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 4275 - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform - - uid: 4276 - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 4277 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 4278 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 4279 - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 4280 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 4281 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 4282 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 4283 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - uid: 4284 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 4285 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 4286 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 4287 - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 4288 - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 4289 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 4290 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 4291 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 4292 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 4293 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4294 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 4295 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 4296 - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 4297 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 4298 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 4299 - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 4300 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 4301 - components: - - pos: -5.5,29.5 - parent: 1 - type: Transform - - uid: 4302 - components: - - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 4303 - components: - - pos: -7.5,29.5 - parent: 1 - type: Transform - - uid: 4306 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4307 - components: - - pos: -7.5,30.5 - parent: 1 - type: Transform - - uid: 4308 - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform - - uid: 4309 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4310 - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 4311 - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - uid: 4312 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 4313 - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform - - uid: 4314 - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 4315 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - uid: 4316 - components: - - pos: 8.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4317 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - uid: 4318 - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4319 - components: - - pos: 6.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4320 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - uid: 4321 - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - uid: 4322 - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4323 - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4324 - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4325 - components: - - pos: -17.5,28.5 - parent: 1 - type: Transform - - uid: 4326 - components: - - pos: -17.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4327 - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - uid: 4328 - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4329 - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 4330 - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4331 - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4332 - components: - - pos: -19.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4333 - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4334 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4335 - components: - - pos: -18.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4336 - components: - - pos: -19.5,28.5 - parent: 1 - type: Transform - - uid: 4337 - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4338 - components: - - pos: -21.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4339 - components: - - pos: -22.5,28.5 - parent: 1 - type: Transform - - uid: 4340 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 4341 - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4342 - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4343 - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform - - uid: 4344 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4345 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4346 - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4347 - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 4348 - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4349 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - uid: 4350 - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4351 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 4352 - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 4353 - components: - - pos: -28.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4354 - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform - - uid: 4355 - components: - - pos: -28.5,17.5 - parent: 1 - type: Transform - - uid: 4356 - components: - - pos: -28.5,16.5 - parent: 1 - type: Transform - - uid: 4357 - components: - - pos: -28.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4358 - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4359 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4360 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 4361 - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform - - uid: 4362 - components: - - pos: -28.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4363 - components: - - pos: -28.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4364 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4365 - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - - uid: 4366 - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4367 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4368 - components: - - pos: -28.5,4.5 - parent: 1 - type: Transform - - uid: 4369 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 4370 - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform - - uid: 4371 - components: - - pos: -29.5,19.5 - parent: 1 - type: Transform - - uid: 4372 - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4373 - components: - - pos: -31.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4374 - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4375 - components: - - pos: -33.5,19.5 - parent: 1 - type: Transform - - uid: 4376 - components: - - pos: -34.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4377 - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4378 - components: - - pos: -36.5,19.5 - parent: 1 - type: Transform - - uid: 4379 - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4380 - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform - - uid: 4381 - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform - - uid: 4382 - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4383 - components: - - pos: -37.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4384 - components: - - pos: -38.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4385 - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform - - uid: 4386 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 4387 - components: - - pos: -40.5,16.5 - parent: 1 - type: Transform - - uid: 4388 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 4389 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 4390 - components: - - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 4391 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 4392 - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 4393 - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 4394 - components: - - pos: -40.5,10.5 - parent: 1 - type: Transform - - uid: 4395 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 4396 - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform - - uid: 4397 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 4398 - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 4399 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 4400 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 4401 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 4402 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 4403 - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 4404 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 4405 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 4406 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 4407 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 4408 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 4409 - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform - - uid: 4410 - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform - - uid: 4411 - components: - - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 4412 - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform - - uid: 4413 - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform - - uid: 4414 - components: - - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 4415 - components: - - pos: -26.5,2.5 - parent: 1 - type: Transform - - uid: 4416 - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform - - uid: 4417 - components: - - pos: -24.5,2.5 - parent: 1 - type: Transform - - uid: 4418 - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform - - uid: 4419 - components: - - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 4420 - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform - - uid: 4421 - components: - - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 4422 - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 4423 - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 4424 - components: - - pos: -17.5,2.5 - parent: 1 - type: Transform - - uid: 4425 - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 4426 - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 4427 - components: - - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 4428 - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 4429 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - uid: 4430 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 4431 - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 4432 - components: - - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 4433 - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 4434 - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 4435 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 4436 - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 4437 - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 4438 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - uid: 4439 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 4440 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 4441 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 4442 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 4443 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 4444 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 4445 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 4446 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 4447 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 4448 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 4449 - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 4450 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - uid: 4451 - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 4452 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 4453 - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform - - uid: 4454 - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 4455 - components: - - pos: -0.5,15.5 - parent: 1 - type: Transform - - uid: 4456 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 4457 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 4458 - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform - - uid: 4459 - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 4460 - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4461 - components: - - pos: -7.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4462 - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4463 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4464 - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 4465 - components: - - pos: -8.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4466 - components: - - pos: -8.5,20.5 - parent: 1 - type: Transform - - uid: 4467 - components: - - pos: -8.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4468 - components: - - pos: -8.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4469 - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform - - uid: 4470 - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 4471 - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4472 - components: - - pos: -11.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4473 - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform - - uid: 4474 - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - uid: 4475 - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4476 - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4477 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 4478 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4479 - components: - - pos: -19.5,23.5 - parent: 1 - type: Transform - - uid: 4480 - components: - - pos: -19.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4481 - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform - - uid: 4482 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4483 - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform - - uid: 4484 - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform - - uid: 4485 - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform - - uid: 4486 - components: - - pos: -21.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4487 - components: - - pos: -22.5,18.5 - parent: 1 - type: Transform - - uid: 4488 - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4489 - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform - - uid: 4490 - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4491 - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform - - uid: 4492 - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4493 - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 4494 - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4495 - components: - - pos: 12.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4496 - components: - - pos: 13.5,18.5 - parent: 1 - type: Transform - - uid: 4497 - components: - - pos: 14.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4498 - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4499 - components: - - pos: 16.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4500 - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform - - uid: 4501 - components: - - pos: 18.5,18.5 - parent: 1 - type: Transform - - uid: 4502 - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4503 - components: - - pos: 20.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4504 - components: - - pos: 21.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4505 - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4506 - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4507 - components: - - pos: 24.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4508 - components: - - pos: 25.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4512 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 4513 - components: - - pos: 25.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4514 - components: - - pos: 25.5,20.5 - parent: 1 - type: Transform - - uid: 4515 - components: - - pos: 26.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4516 - components: - - pos: 27.5,20.5 - parent: 1 - type: Transform - - uid: 4517 - components: - - pos: 28.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4518 - components: - - pos: 29.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4519 - components: - - pos: 30.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4520 - components: - - pos: 31.5,20.5 - parent: 1 - type: Transform - - uid: 4521 - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform - - uid: 4522 - components: - - pos: 33.5,20.5 - parent: 1 - type: Transform - - uid: 4523 - components: - - pos: 34.5,20.5 - parent: 1 - type: Transform - - uid: 4524 - components: - - pos: 35.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4525 - components: - - pos: 36.5,20.5 - parent: 1 - type: Transform - - uid: 4526 - components: - - pos: 36.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4527 - components: - - pos: 36.5,18.5 - parent: 1 - type: Transform - - uid: 4528 - components: - - pos: 36.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4529 - components: - - pos: 36.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4530 - components: - - pos: 37.5,16.5 - parent: 1 - type: Transform - - uid: 4531 - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4532 - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - uid: 4533 - components: - - pos: 39.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4534 - components: - - pos: 39.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4535 - components: - - pos: 39.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4536 - components: - - pos: 40.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4537 - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4538 - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4539 - components: - - pos: 41.5,15.5 - parent: 1 - type: Transform - - uid: 4540 - components: - - pos: 41.5,14.5 - parent: 1 - type: Transform - - uid: 4541 - components: - - pos: 41.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4542 - components: - - pos: 41.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4543 - components: - - pos: 41.5,11.5 - parent: 1 - type: Transform - - uid: 4544 - components: - - pos: 41.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4545 - components: - - pos: 41.5,9.5 - parent: 1 - type: Transform - - uid: 4546 - components: - - pos: 41.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4547 - components: - - pos: 41.5,7.5 - parent: 1 - type: Transform - - uid: 4548 - components: - - pos: 40.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4549 - components: - - pos: 39.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4550 - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4551 - components: - - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 4552 - components: - - pos: 36.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4553 - components: - - pos: 35.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4554 - components: - - pos: 35.5,6.5 - parent: 1 - type: Transform - - uid: 4555 - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4556 - components: - - pos: 32.5,6.5 - parent: 1 - type: Transform - - uid: 4557 - components: - - pos: 33.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4558 - components: - - pos: 34.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4559 - components: - - pos: 31.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4560 - components: - - pos: 31.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4561 - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform - - uid: 4562 - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 4563 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 4564 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 4565 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 4566 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 4567 - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 4568 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 4569 - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 4570 - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 4571 - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 4572 - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 4573 - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform - - uid: 4574 - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 4575 - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 4576 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 4577 - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 4578 - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 4579 - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 4580 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 4581 - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 4582 - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 4583 - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 4584 - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform - - uid: 4585 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - uid: 4586 - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4587 - components: - - pos: 30.5,-0.5 - parent: 1 - type: Transform - - uid: 4588 - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4589 - components: - - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 4590 - components: - - pos: 31.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4591 - components: - - pos: 31.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4592 - components: - - pos: 31.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4593 - components: - - pos: 31.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4594 - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4595 - components: - - pos: 31.5,-7.5 - parent: 1 - type: Transform - - uid: 4596 - components: - - pos: 31.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4597 - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4598 - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform - - uid: 4599 - components: - - pos: 31.5,-11.5 - parent: 1 - type: Transform - - uid: 4600 - components: - - pos: 31.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4601 - components: - - pos: 31.5,-13.5 - parent: 1 - type: Transform - - uid: 4602 - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4603 - components: - - pos: 29.5,-13.5 - parent: 1 - type: Transform - - uid: 4604 - components: - - pos: 28.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4605 - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 4606 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4607 - components: - - pos: 28.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4608 - components: - - pos: 28.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4609 - components: - - pos: 27.5,-17.5 - parent: 1 - type: Transform - - uid: 4610 - components: - - pos: 26.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4611 - components: - - pos: 25.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4612 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 4613 - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4614 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4615 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 4616 - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4617 - components: - - pos: 23.5,-17.5 - parent: 1 - type: Transform - - uid: 4618 - components: - - pos: 22.5,-17.5 - parent: 1 - type: Transform - - uid: 4619 - components: - - pos: 21.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4620 - components: - - pos: 20.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4621 - components: - - pos: 19.5,-17.5 - parent: 1 - type: Transform - - uid: 4622 - components: - - pos: 18.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4623 - components: - - pos: 17.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4624 - components: - - pos: 16.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4625 - components: - - pos: 15.5,-17.5 - parent: 1 - type: Transform - - uid: 4626 - components: - - pos: 14.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4627 - components: - - pos: 14.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4628 - components: - - pos: 14.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4629 - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4630 - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - uid: 4631 - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4632 - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4633 - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4634 - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform - - uid: 4635 - components: - - pos: 9.5,-13.5 - parent: 1 - type: Transform - - uid: 4636 - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4637 - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4638 - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform - - uid: 4639 - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform - - uid: 4640 - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4641 - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4642 - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4643 - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform - - uid: 4644 - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform - - uid: 4645 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 4646 - components: - - pos: 0.5,-11.5 - parent: 1 - type: Transform - - uid: 4647 - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4648 - components: - - pos: -1.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4649 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - uid: 4650 - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform - - uid: 4651 - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4652 - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4653 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4654 - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4655 - components: - - pos: -2.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4656 - components: - - pos: -3.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4657 - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4658 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 4659 - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform - - uid: 4660 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 4661 - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4662 - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4663 - components: - - pos: -7.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4664 - components: - - pos: -8.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4665 - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4666 - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4667 - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform - - uid: 4668 - components: - - pos: -11.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4669 - components: - - pos: -11.5,-20.5 - parent: 1 - type: Transform - - uid: 4670 - components: - - pos: -11.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4671 - components: - - pos: -12.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4672 - components: - - pos: -13.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4673 - components: - - pos: -14.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4674 - components: - - pos: -15.5,-21.5 - parent: 1 - type: Transform - - uid: 4675 - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4676 - components: - - pos: -17.5,-21.5 - parent: 1 - type: Transform - - uid: 4677 - components: - - pos: -18.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4678 - components: - - pos: -19.5,-21.5 - parent: 1 - type: Transform - - uid: 4679 - components: - - pos: -20.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4680 - components: - - pos: -21.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4681 - components: - - pos: -22.5,-21.5 - parent: 1 - type: Transform - - uid: 4682 - components: - - pos: -22.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4683 - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4684 - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform - - uid: 4685 - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4686 - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4687 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - uid: 4688 - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4689 - components: - - pos: -27.5,-20.5 - parent: 1 - type: Transform - - uid: 4690 - components: - - pos: -28.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4691 - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4692 - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform - - uid: 4693 - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform - - uid: 4694 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4695 - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4696 - components: - - pos: -31.5,-1.5 - parent: 1 - type: Transform - - uid: 4697 - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4698 - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform - - uid: 4699 - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4700 - components: - - pos: -34.5,-2.5 - parent: 1 - type: Transform - - uid: 4701 - components: - - pos: -34.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4702 - components: - - pos: -34.5,-4.5 - parent: 1 - type: Transform - - uid: 4703 - components: - - pos: -34.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4704 - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4705 - components: - - pos: -34.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4706 - components: - - pos: -34.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4707 - components: - - pos: -34.5,-9.5 - parent: 1 - type: Transform - - uid: 4708 - components: - - pos: -34.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4709 - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform - - uid: 4710 - components: - - pos: -34.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4711 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4712 - components: - - pos: -36.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4713 - components: - - pos: -37.5,-12.5 - parent: 1 - type: Transform - - uid: 4714 - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4715 - components: - - pos: -38.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4716 - components: - - pos: -38.5,-14.5 - parent: 1 - type: Transform - - uid: 4717 - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform - - uid: 4718 - components: - - pos: -38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4719 - components: - - pos: -38.5,-17.5 - parent: 1 - type: Transform - - uid: 4720 - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4721 - components: - - pos: -38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4722 - components: - - pos: -38.5,-20.5 - parent: 1 - type: Transform - - uid: 4723 - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform - - uid: 4724 - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4725 - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4726 - components: - - pos: -34.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4727 - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform - - uid: 4728 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 4729 - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4731 - components: - - pos: -38.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4732 - components: - - pos: -39.5,19.5 - parent: 1 - type: Transform - - uid: 4733 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 4734 - components: - - pos: -11.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4735 - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4736 - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform - - uid: 4737 - components: - - pos: -8.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4738 - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4739 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 4740 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 4741 - components: - - pos: 1.5,-8.5 - parent: 1 - type: Transform - - uid: 4742 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 4743 - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 4744 - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 4745 - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform - - uid: 4746 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 4747 - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 4748 - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform - - uid: 4749 - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform - - uid: 4750 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 4751 - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform - - uid: 4752 - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - uid: 4753 - components: - - pos: -2.5,-8.5 - parent: 1 - type: Transform - - uid: 4754 - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 4755 - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 4756 - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 4757 - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 4758 - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 4759 - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 4760 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 4761 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 4762 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 4763 - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 4764 - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 4765 - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 4766 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 4767 - components: - - pos: -13.5,31.5 - parent: 1 - type: Transform - - uid: 4768 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4769 - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform - - uid: 4770 - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4771 - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4772 - components: - - pos: -9.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4773 - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4774 - components: - - pos: -7.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4775 - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform - - uid: 4776 - components: - - pos: -5.5,30.5 - parent: 1 - type: Transform - - uid: 4777 - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform - - uid: 4778 - components: - - pos: -5.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4779 - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4780 - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4781 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4782 - components: - - pos: -3.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4783 - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4784 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4785 - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4786 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4787 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4788 - components: - - pos: 1.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4789 - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform - - uid: 4790 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 4791 - components: - - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 4792 - components: - - pos: 3.5,28.5 - parent: 1 - type: Transform - - uid: 4793 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 4794 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - uid: 4795 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 4796 - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 4797 - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4798 - components: - - pos: 3.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4799 - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4800 - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4925 - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform - - uid: 5105 - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5106 - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7549 - components: - - pos: -41.5,19.5 - parent: 1 - type: Transform - - uid: 7550 - components: - - pos: -41.5,20.5 - parent: 1 - type: Transform - - uid: 7551 - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - uid: 7552 - components: - - pos: -41.5,22.5 - parent: 1 - type: Transform - - uid: 7553 - components: - - pos: -41.5,23.5 - parent: 1 - type: Transform - - uid: 7554 - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform -- proto: CableHVStack - entities: - - uid: 3980 - components: - - pos: -2.6973429,44.73459 - parent: 1 - type: Transform - - uid: 7641 - components: - - pos: -41.50761,19.420443 - parent: 1 - type: Transform - - uid: 8227 - components: - - pos: -5.5320415,-20.244713 - parent: 1 - type: Transform - - uid: 9656 - components: - - pos: 12.8484125,23.642334 - parent: 1 - type: Transform -- proto: CableMV - entities: - - uid: 1944 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 2849 - components: - - pos: -11.5,-50.5 - parent: 1 - type: Transform - - uid: 2850 - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - uid: 2874 - components: - - pos: -11.5,-49.5 - parent: 1 - type: Transform - - uid: 2875 - components: - - pos: -10.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3358 - components: - - pos: 22.5,15.5 - parent: 1 - type: Transform - - uid: 3681 - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform - - uid: 3682 - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform - - uid: 3683 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - uid: 3684 - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3688 - components: - - pos: -2.5,45.5 - parent: 1 - type: Transform - - uid: 3689 - components: - - pos: -3.5,45.5 - parent: 1 - type: Transform - - uid: 3690 - components: - - pos: -4.5,45.5 - parent: 1 - type: Transform - - uid: 3691 - components: - - pos: -5.5,45.5 - parent: 1 - type: Transform - - uid: 3692 - components: - - pos: -6.5,45.5 - parent: 1 - type: Transform - - uid: 3693 - components: - - pos: -6.5,46.5 - parent: 1 - type: Transform - - uid: 3694 - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - uid: 3695 - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform - - uid: 3696 - components: - - pos: -6.5,49.5 - parent: 1 - type: Transform - - uid: 3697 - components: - - pos: -5.5,49.5 - parent: 1 - type: Transform - - uid: 3698 - components: - - pos: -4.5,49.5 - parent: 1 - type: Transform - - uid: 3699 - components: - - pos: -4.5,50.5 - parent: 1 - type: Transform - - uid: 3700 - components: - - pos: -4.5,51.5 - parent: 1 - type: Transform - - uid: 3701 - components: - - pos: -4.5,52.5 - parent: 1 - type: Transform - - uid: 3702 - components: - - pos: -4.5,53.5 - parent: 1 - type: Transform - - uid: 3703 - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform - - uid: 3704 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - uid: 3705 - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - uid: 3706 - components: - - pos: -6.5,55.5 - parent: 1 - type: Transform - - uid: 3707 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - uid: 3708 - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3709 - components: - - pos: -3.5,52.5 - parent: 1 - type: Transform - - uid: 3710 - components: - - pos: -2.5,52.5 - parent: 1 - type: Transform - - uid: 3711 - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform - - uid: 3712 - components: - - pos: -0.5,52.5 - parent: 1 - type: Transform - - uid: 3713 - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform - - uid: 3714 - components: - - pos: 1.5,52.5 - parent: 1 - type: Transform - - uid: 3715 - components: - - pos: 2.5,52.5 - parent: 1 - type: Transform - - uid: 3716 - components: - - pos: 3.5,52.5 - parent: 1 - type: Transform - - uid: 3717 - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 3767 - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform - - uid: 3768 - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4138 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - uid: 4139 - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 4140 - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform - - uid: 4141 - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform - - uid: 4142 - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4143 - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - uid: 4144 - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform - - uid: 4145 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4146 - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform - - uid: 4147 - components: - - pos: -7.5,30.5 - parent: 1 - type: Transform - - uid: 4148 - components: - - pos: -7.5,29.5 - parent: 1 - type: Transform - - uid: 4149 - components: - - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 4150 - components: - - pos: -5.5,29.5 - parent: 1 - type: Transform - - uid: 4151 - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 4152 - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 4153 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 4154 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 4155 - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 4156 - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform - - uid: 4157 - components: - - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 4158 - components: - - pos: -0.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4159 - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 4160 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 4161 - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4162 - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 4163 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 4164 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 4165 - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 4166 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 4167 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 4509 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 4511 - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5101 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 5102 - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5103 - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5104 - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5107 - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform - - uid: 5108 - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform - - uid: 5109 - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform - - uid: 5110 - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform - - uid: 5111 - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform - - uid: 5112 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - uid: 5113 - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform - - uid: 5114 - components: - - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 5115 - components: - - pos: 25.5,9.5 - parent: 1 - type: Transform - - uid: 5116 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - uid: 5117 - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - uid: 5118 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 5119 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5120 - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - uid: 5121 - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - uid: 5122 - components: - - pos: 21.5,9.5 - parent: 1 - type: Transform - - uid: 5123 - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - uid: 5124 - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - uid: 5125 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - uid: 5126 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 5127 - components: - - pos: 13.5,10.5 - parent: 1 - type: Transform - - uid: 5128 - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5129 - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform - - uid: 5130 - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 5131 - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform - - uid: 5132 - components: - - pos: 30.5,9.5 - parent: 1 - type: Transform - - uid: 5133 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - uid: 5134 - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - uid: 5135 - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform - - uid: 5136 - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform - - uid: 5137 - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform - - uid: 5138 - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform - - uid: 5139 - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 5140 - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform - - uid: 5141 - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform - - uid: 5142 - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform - - uid: 5143 - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - uid: 5144 - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform - - uid: 5145 - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform - - uid: 5146 - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform - - uid: 5147 - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - uid: 5148 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 5149 - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - uid: 5150 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 5151 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - uid: 5152 - components: - - pos: 33.5,27.5 - parent: 1 - type: Transform - - uid: 5153 - components: - - pos: 34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5154 - components: - - pos: 33.5,17.5 - parent: 1 - type: Transform - - uid: 5155 - components: - - pos: 34.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5297 - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 5298 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 5299 - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 5300 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 5703 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5704 - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5705 - components: - - pos: -19.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5706 - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5707 - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5708 - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 5709 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5710 - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 5711 - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5712 - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5713 - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - uid: 5714 - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5715 - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform - - uid: 5716 - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform - - uid: 5717 - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform - - uid: 5718 - components: - - pos: -14.5,19.5 - parent: 1 - type: Transform - - uid: 5719 - components: - - pos: -15.5,19.5 - parent: 1 - type: Transform - - uid: 5720 - components: - - pos: -16.5,19.5 - parent: 1 - type: Transform - - uid: 5721 - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform - - uid: 5722 - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5723 - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform - - uid: 5724 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - uid: 5725 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - uid: 5726 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 5727 - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 5728 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 5729 - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 5730 - components: - - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 5731 - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform - - uid: 5732 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5733 - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - uid: 5734 - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform - - uid: 5735 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 5736 - components: - - pos: -19.5,10.5 - parent: 1 - type: Transform - - uid: 5737 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform - - uid: 5738 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform - - uid: 5739 - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform - - uid: 5740 - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform - - uid: 5741 - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform - - uid: 5742 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 5743 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5752 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - uid: 5753 - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform - - uid: 5754 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 5755 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - uid: 5756 - components: - - pos: -11.5,10.5 - parent: 1 - type: Transform - - uid: 5757 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 5758 - components: - - pos: -11.5,8.5 - parent: 1 - type: Transform - - uid: 5759 - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform - - uid: 5760 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6180 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6181 - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6182 - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6183 - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6184 - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6185 - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6186 - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform - - uid: 6187 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 6188 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 6189 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 6190 - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 6191 - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform - - uid: 6192 - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 6193 - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform - - uid: 6194 - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - uid: 6195 - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - uid: 6196 - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform - - uid: 6197 - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 6198 - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform - - uid: 6199 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 6205 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 6209 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 6210 - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - uid: 6211 - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform - - uid: 6212 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 6213 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 6214 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 6215 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - uid: 6216 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 6217 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 6218 - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 6219 - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 6220 - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 6221 - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - uid: 6222 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 6223 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 6224 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6225 - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - uid: 6226 - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6286 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 6287 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 6288 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 6289 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 6290 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 6291 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 6340 - components: - - pos: -7.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6341 - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6342 - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6343 - components: - - pos: -8.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6344 - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6345 - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6346 - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform - - uid: 6347 - components: - - pos: -11.5,-17.5 - parent: 1 - type: Transform - - uid: 6348 - components: - - pos: -11.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6349 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 6350 - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform - - uid: 6351 - components: - - pos: -11.5,-13.5 - parent: 1 - type: Transform - - uid: 6352 - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform - - uid: 6353 - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform - - uid: 6354 - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform - - uid: 6355 - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform - - uid: 6356 - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform - - uid: 6357 - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 6358 - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform - - uid: 6359 - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - uid: 6360 - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform - - uid: 6361 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 6362 - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6363 - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform - - uid: 6364 - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform - - uid: 6365 - components: - - pos: -14.5,-6.5 - parent: 1 - type: Transform - - uid: 6366 - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform - - uid: 6367 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - uid: 6368 - components: - - pos: -17.5,-6.5 - parent: 1 - type: Transform - - uid: 6369 - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform - - uid: 6370 - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform - - uid: 6371 - components: - - pos: -20.5,-6.5 - parent: 1 - type: Transform - - uid: 6372 - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 6373 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform - - uid: 6374 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 6375 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 6376 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 6377 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 6378 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6379 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 6380 - components: - - pos: -16.5,-8.5 - parent: 1 - type: Transform - - uid: 6381 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 6382 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 6383 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 6384 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 6385 - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 6386 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 6387 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 6388 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 6389 - components: - - pos: -16.5,-17.5 - parent: 1 - type: Transform - - uid: 6390 - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform - - uid: 6391 - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6392 - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6393 - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - uid: 6528 - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 6529 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 6530 - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform - - uid: 6531 - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - uid: 6532 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - uid: 6533 - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 6534 - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform - - uid: 6535 - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform - - uid: 6536 - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform - - uid: 6537 - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform - - uid: 6538 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - uid: 6539 - components: - - pos: 23.5,-10.5 - parent: 1 - type: Transform - - uid: 6540 - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform - - uid: 6541 - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform - - uid: 6542 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6543 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 6544 - components: - - pos: 22.5,-8.5 - parent: 1 - type: Transform - - uid: 6545 - components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform - - uid: 6546 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform - - uid: 6547 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - uid: 6548 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - uid: 6549 - components: - - pos: 21.5,-4.5 - parent: 1 - type: Transform - - uid: 6550 - components: - - pos: 20.5,-4.5 - parent: 1 - type: Transform - - uid: 6551 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - - uid: 6552 - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform - - uid: 6553 - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 6554 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 6557 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - uid: 6558 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - uid: 6559 - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform - - uid: 6560 - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - uid: 6561 - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform - - uid: 6562 - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform - - uid: 6563 - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform - - uid: 6564 - components: - - pos: 32.5,-10.5 - parent: 1 - type: Transform - - uid: 6565 - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6566 - components: - - pos: 34.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6567 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6568 - components: - - pos: 34.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6569 - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6570 - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6571 - components: - - pos: 34.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6572 - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6573 - components: - - pos: 34.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6574 - components: - - pos: 34.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6575 - components: - - pos: 34.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6576 - components: - - pos: 34.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6577 - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6781 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6782 - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - uid: 7091 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 7092 - components: - - pos: 21.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7094 - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7095 - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7096 - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 7097 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 7098 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7099 - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7100 - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7101 - components: - - pos: 20.5,-21.5 - parent: 1 - type: Transform - - uid: 7102 - components: - - pos: 19.5,-21.5 - parent: 1 - type: Transform - - uid: 7103 - components: - - pos: 18.5,-21.5 - parent: 1 - type: Transform - - uid: 7104 - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 7105 - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform - - uid: 7109 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 7110 - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform - - uid: 7111 - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform - - uid: 7112 - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform - - uid: 7113 - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform - - uid: 7114 - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 7115 - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 7116 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7117 - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform - - uid: 7118 - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform - - uid: 7119 - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - - uid: 7120 - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform - - uid: 7121 - components: - - pos: 15.5,-26.5 - parent: 1 - type: Transform - - uid: 7122 - components: - - pos: 15.5,-27.5 - parent: 1 - type: Transform - - uid: 7123 - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7124 - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - uid: 7125 - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform - - uid: 7126 - components: - - pos: 22.5,-21.5 - parent: 1 - type: Transform - - uid: 7127 - components: - - pos: 23.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7389 - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform - - uid: 7390 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7391 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7392 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7393 - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform - - uid: 7559 - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform - - uid: 7560 - components: - - pos: -39.5,23.5 - parent: 1 - type: Transform - - uid: 7561 - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7581 - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform - - uid: 7582 - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - uid: 7583 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - uid: 7584 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 7585 - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform - - uid: 7586 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 7587 - components: - - pos: -40.5,16.5 - parent: 1 - type: Transform - - uid: 7588 - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 7589 - components: - - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 7590 - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 7591 - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 7592 - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 7593 - components: - - pos: -40.5,10.5 - parent: 1 - type: Transform - - uid: 7594 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 7595 - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform - - uid: 7596 - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 7597 - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 7598 - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 7599 - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 7600 - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 7601 - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 7602 - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform - - uid: 7603 - components: - - pos: -38.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7604 - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 7605 - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 7606 - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 7607 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 7608 - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 7609 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 7610 - components: - - pos: -34.5,3.5 - parent: 1 - type: Transform - - uid: 7611 - components: - - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 7612 - components: - - pos: -34.5,5.5 - parent: 1 - type: Transform - - uid: 7613 - components: - - pos: -34.5,6.5 - parent: 1 - type: Transform - - uid: 7614 - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - uid: 7615 - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform - - uid: 7616 - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - uid: 7617 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 7618 - components: - - pos: -32.5,9.5 - parent: 1 - type: Transform - - uid: 7619 - components: - - pos: -31.5,9.5 - parent: 1 - type: Transform - - uid: 7620 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7621 - components: - - pos: -37.5,1.5 - parent: 1 - type: Transform - - uid: 7622 - components: - - pos: -37.5,0.5 - parent: 1 - type: Transform - - uid: 7623 - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform - - uid: 7624 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 7625 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 7626 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 7627 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 7628 - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform - - uid: 7629 - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform - - uid: 7630 - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 7631 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 7632 - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 7633 - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7723 - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7724 - components: - - pos: -8.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7725 - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform - - uid: 7726 - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7727 - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7728 - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform - - uid: 7729 - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform - - uid: 7730 - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform - - uid: 7731 - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - uid: 7732 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - uid: 7733 - components: - - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 7734 - components: - - pos: -15.5,-25.5 - parent: 1 - type: Transform - - uid: 7735 - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform - - uid: 7736 - components: - - pos: -17.5,-25.5 - parent: 1 - type: Transform - - uid: 7737 - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - uid: 7738 - components: - - pos: -19.5,-25.5 - parent: 1 - type: Transform - - uid: 7739 - components: - - pos: -20.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7740 - components: - - pos: -9.5,-25.5 - parent: 1 - type: Transform - - uid: 7741 - components: - - pos: -8.5,-25.5 - parent: 1 - type: Transform - - uid: 7742 - components: - - pos: -7.5,-25.5 - parent: 1 - type: Transform - - uid: 7743 - components: - - pos: -6.5,-25.5 - parent: 1 - type: Transform - - uid: 7744 - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 7745 - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform - - uid: 7746 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - uid: 7747 - components: - - pos: -2.5,-25.5 - parent: 1 - type: Transform - - uid: 7748 - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform - - uid: 7749 - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 7750 - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 7751 - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform - - uid: 7752 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - uid: 7753 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7754 - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform - - uid: 7755 - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform - - uid: 7756 - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform - - uid: 7757 - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform - - uid: 7758 - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform - - uid: 7759 - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - - uid: 7760 - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 7761 - components: - - pos: 1.5,-17.5 - parent: 1 - type: Transform - - uid: 7762 - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 7763 - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - uid: 7764 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - uid: 7765 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7767 - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform - - uid: 7768 - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform - - uid: 7769 - components: - - pos: 1.5,-28.5 - parent: 1 - type: Transform - - uid: 7770 - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform - - uid: 7771 - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform - - uid: 7772 - components: - - pos: 1.5,-31.5 - parent: 1 - type: Transform - - uid: 7773 - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform - - uid: 7774 - components: - - pos: 0.5,-32.5 - parent: 1 - type: Transform - - uid: 7775 - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform - - uid: 7776 - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform - - uid: 7777 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - uid: 7778 - components: - - pos: -3.5,-32.5 - parent: 1 - type: Transform - - uid: 7779 - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform - - uid: 7780 - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform - - uid: 7781 - components: - - pos: -5.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8024 - components: - - pos: 40.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8025 - components: - - pos: 39.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8026 - components: - - pos: 39.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8027 - components: - - pos: 39.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8028 - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - uid: 8029 - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8030 - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8031 - components: - - pos: 42.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8032 - components: - - pos: 42.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8033 - components: - - pos: 43.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8034 - components: - - pos: 44.5,15.5 - parent: 1 - type: Transform - - uid: 8035 - components: - - pos: 43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8036 - components: - - pos: 45.5,15.5 - parent: 1 - type: Transform - - uid: 8037 - components: - - pos: 45.5,16.5 - parent: 1 - type: Transform - - uid: 8038 - components: - - pos: 45.5,17.5 - parent: 1 - type: Transform - - uid: 8039 - components: - - pos: 45.5,18.5 - parent: 1 - type: Transform - - uid: 8040 - components: - - pos: 45.5,19.5 - parent: 1 - type: Transform - - uid: 8041 - components: - - pos: 45.5,20.5 - parent: 1 - type: Transform - - uid: 8042 - components: - - pos: 45.5,21.5 - parent: 1 - type: Transform - - uid: 8043 - components: - - pos: 45.5,22.5 - parent: 1 - type: Transform - - uid: 8044 - components: - - pos: 45.5,23.5 - parent: 1 - type: Transform - - uid: 8045 - components: - - pos: 45.5,24.5 - parent: 1 - type: Transform - - uid: 8046 - components: - - pos: 45.5,25.5 - parent: 1 - type: Transform - - uid: 8047 - components: - - pos: 45.5,26.5 - parent: 1 - type: Transform - - uid: 8048 - components: - - pos: 45.5,27.5 - parent: 1 - type: Transform - - uid: 8050 - components: - - pos: 44.5,28.5 - parent: 1 - type: Transform - - uid: 8051 - components: - - pos: 43.5,28.5 - parent: 1 - type: Transform - - uid: 8052 - components: - - pos: 42.5,28.5 - parent: 1 - type: Transform - - uid: 8053 - components: - - pos: 41.5,28.5 - parent: 1 - type: Transform - - uid: 8054 - components: - - pos: 40.5,28.5 - parent: 1 - type: Transform - - uid: 8055 - components: - - pos: 39.5,28.5 - parent: 1 - type: Transform - - uid: 8056 - components: - - pos: 38.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8057 - components: - - pos: 44.5,22.5 - parent: 1 - type: Transform - - uid: 8058 - components: - - pos: 43.5,22.5 - parent: 1 - type: Transform - - uid: 8059 - components: - - pos: 42.5,22.5 - parent: 1 - type: Transform - - uid: 8060 - components: - - pos: 41.5,22.5 - parent: 1 - type: Transform - - uid: 8061 - components: - - pos: 41.5,23.5 - parent: 1 - type: Transform - - uid: 8062 - components: - - pos: 41.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8063 - components: - - pos: 45.5,14.5 - parent: 1 - type: Transform - - uid: 8064 - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform - - uid: 8065 - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 8066 - components: - - pos: 45.5,11.5 - parent: 1 - type: Transform - - uid: 8067 - components: - - pos: 45.5,10.5 - parent: 1 - type: Transform - - uid: 8068 - components: - - pos: 45.5,9.5 - parent: 1 - type: Transform - - uid: 8069 - components: - - pos: 45.5,8.5 - parent: 1 - type: Transform - - uid: 8070 - components: - - pos: 45.5,7.5 - parent: 1 - type: Transform - - uid: 8071 - components: - - pos: 45.5,6.5 - parent: 1 - type: Transform - - uid: 8072 - components: - - pos: 45.5,5.5 - parent: 1 - type: Transform - - uid: 8073 - components: - - pos: 45.5,4.5 - parent: 1 - type: Transform - - uid: 8074 - components: - - pos: 45.5,3.5 - parent: 1 - type: Transform - - uid: 8075 - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 8076 - components: - - pos: 44.5,2.5 - parent: 1 - type: Transform - - uid: 8077 - components: - - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 8078 - components: - - pos: 42.5,2.5 - parent: 1 - type: Transform - - uid: 8079 - components: - - pos: 41.5,2.5 - parent: 1 - type: Transform - - uid: 8080 - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform - - uid: 8081 - components: - - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 8082 - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 8083 - components: - - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 8084 - components: - - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 8085 - components: - - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 8086 - components: - - pos: 34.5,2.5 - parent: 1 - type: Transform - - uid: 8087 - components: - - pos: 33.5,2.5 - parent: 1 - type: Transform - - uid: 8088 - components: - - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 8089 - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 8090 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 8091 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 8092 - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 8093 - components: - - pos: 28.5,1.5 - parent: 1 - type: Transform - - uid: 8094 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8182 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 8183 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 8184 - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - - uid: 8185 - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 8186 - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 8187 - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 8188 - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 8191 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - - uid: 8192 - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8331 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8332 - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8333 - components: - - pos: -30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8334 - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8335 - components: - - pos: -30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8336 - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8337 - components: - - pos: -30.5,-19.5 - parent: 1 - type: Transform - - uid: 8338 - components: - - pos: -30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8339 - components: - - pos: -30.5,-17.5 - parent: 1 - type: Transform - - uid: 8340 - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - uid: 8341 - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8342 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - uid: 8345 - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8346 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 8347 - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform - - uid: 8348 - components: - - pos: -34.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8349 - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8350 - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8351 - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform - - uid: 8352 - components: - - pos: -38.5,-20.5 - parent: 1 - type: Transform - - uid: 8353 - components: - - pos: -38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8354 - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8355 - components: - - pos: -38.5,-17.5 - parent: 1 - type: Transform - - uid: 8356 - components: - - pos: -38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8357 - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform - - uid: 8358 - components: - - pos: -38.5,-14.5 - parent: 1 - type: Transform - - uid: 8359 - components: - - pos: -38.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8360 - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8361 - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8362 - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8384 - components: - - pos: -39.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8416 - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8417 - components: - - pos: 37.5,16.5 - parent: 1 - type: Transform - - uid: 8418 - components: - - pos: 36.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8419 - components: - - pos: 36.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8420 - components: - - pos: 36.5,18.5 - parent: 1 - type: Transform - - uid: 8421 - components: - - pos: 36.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8422 - components: - - pos: 36.5,20.5 - parent: 1 - type: Transform - - uid: 8423 - components: - - pos: 36.5,21.5 - parent: 1 - type: Transform - - uid: 8424 - components: - - pos: 36.5,22.5 - parent: 1 - type: Transform - - uid: 8425 - components: - - pos: 36.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8426 - components: - - pos: 36.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8427 - components: - - pos: 36.5,25.5 - parent: 1 - type: Transform - - uid: 8428 - components: - - pos: 36.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8429 - components: - - pos: 36.5,27.5 - parent: 1 - type: Transform - - uid: 8430 - components: - - pos: 36.5,28.5 - parent: 1 - type: Transform - - uid: 8431 - components: - - pos: 36.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8432 - components: - - pos: 36.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8433 - components: - - pos: 36.5,31.5 - parent: 1 - type: Transform - - uid: 8434 - components: - - pos: 36.5,32.5 - parent: 1 - type: Transform - - uid: 8435 - components: - - pos: 35.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8436 - components: - - pos: 34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9185 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9186 - components: - - pos: -25.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9187 - components: - - pos: -25.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9188 - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - uid: 9189 - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9190 - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform - - uid: 9191 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9192 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9193 - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9194 - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 9195 - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 9196 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - uid: 9736 - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 9737 - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12123 - components: - - pos: 45.5,28.5 - parent: 1 - type: Transform - - uid: 12565 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - uid: 12566 - components: - - pos: -33.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 12567 - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- proto: CableMVStack - entities: - - uid: 3982 - components: - - pos: -2.5254679,44.593964 - parent: 1 - type: Transform - - uid: 7642 - components: - - pos: -41.491985,19.264193 - parent: 1 - type: Transform - - uid: 8228 - components: - - pos: -5.2976665,-20.338463 - parent: 1 - type: Transform - - uid: 9647 - components: - - pos: 12.6765375,23.532959 - parent: 1 - type: Transform -- proto: CableTerminal - entities: - - uid: 1130 - components: - - pos: 23.5,-13.5 - parent: 1 - type: Transform - - uid: 1131 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - uid: 1132 - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform - - uid: 2449 - components: - - pos: -32.5,-22.5 - parent: 1 - type: Transform - - uid: 2552 - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform - - uid: 2848 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-53.5 - parent: 1 - type: Transform - - uid: 3678 - components: - - pos: -0.5,46.5 - parent: 1 - type: Transform - - uid: 7558 - components: - - rot: 3.141592653589793 rad - pos: -41.5,22.5 - parent: 1 - type: Transform -- proto: CannabisSeeds - entities: - - uid: 5466 - components: - - pos: 30.131155,27.66019 - parent: 1 - type: Transform -- proto: CaptainIDCard - entities: - - uid: 4981 - components: - - pos: 4.562398,31.612326 - parent: 1 - type: Transform -- proto: CarbonDioxideCanister - entities: - - uid: 6323 - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform - - uid: 6809 - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform -- proto: Carpet - entities: - - uid: 5022 - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform - - uid: 5024 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 5026 - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform - - uid: 5027 - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 5028 - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 5029 - components: - - pos: 2.5,9.5 - parent: 1 - type: Transform - - uid: 5043 - components: - - rot: 3.141592653589793 rad - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 5044 - components: - - rot: 3.141592653589793 rad - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 5045 - components: - - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 5623 - components: - - rot: 3.141592653589793 rad - pos: 26.5,14.5 - parent: 1 - type: Transform - - uid: 5624 - components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 5625 - components: - - rot: 3.141592653589793 rad - pos: 27.5,14.5 - parent: 1 - type: Transform - - uid: 5626 - components: - - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 1 - type: Transform - - uid: 5627 - components: - - rot: 3.141592653589793 rad - pos: 28.5,14.5 - parent: 1 - type: Transform - - uid: 5628 - components: - - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 5629 - components: - - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 1 - type: Transform - - uid: 5630 - components: - - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 1 - type: Transform - - uid: 5631 - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1 - type: Transform - - uid: 5632 - components: - - rot: 3.141592653589793 rad - pos: 25.5,14.5 - parent: 1 - type: Transform - - uid: 5633 - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - uid: 5634 - components: - - rot: 3.141592653589793 rad - pos: 28.5,12.5 - parent: 1 - type: Transform - - uid: 5635 - components: - - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 5636 - components: - - rot: 3.141592653589793 rad - pos: 27.5,17.5 - parent: 1 - type: Transform - - uid: 5637 - components: - - rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 1 - type: Transform - - uid: 5638 - components: - - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 12438 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - uid: 12439 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,5.5 - parent: 1 - type: Transform - - uid: 12440 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 1 - type: Transform - - uid: 12441 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform -- proto: CarpetBlack - entities: - - uid: 2010 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,6.5 - parent: 1 - type: Transform - - uid: 2011 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 1 - type: Transform - - uid: 2012 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,8.5 - parent: 1 - type: Transform - - uid: 2013 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,9.5 - parent: 1 - type: Transform - - uid: 2014 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,10.5 - parent: 1 - type: Transform - - uid: 2015 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,9.5 - parent: 1 - type: Transform - - uid: 2016 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,9.5 - parent: 1 - type: Transform - - uid: 2017 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,9.5 - parent: 1 - type: Transform - - uid: 2018 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - type: Transform -- proto: CarpetBlue - entities: - - uid: 5645 - components: - - rot: 3.141592653589793 rad - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 5646 - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - uid: 5647 - components: - - rot: 3.141592653589793 rad - pos: -4.5,19.5 - parent: 1 - type: Transform - - uid: 5648 - components: - - rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 1 - type: Transform - - uid: 5649 - components: - - rot: 3.141592653589793 rad - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 5650 - components: - - rot: 3.141592653589793 rad - pos: -18.5,15.5 - parent: 1 - type: Transform - - uid: 5651 - components: - - rot: 3.141592653589793 rad - pos: -19.5,16.5 - parent: 1 - type: Transform - - uid: 5652 - components: - - rot: 3.141592653589793 rad - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 5653 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 5654 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 5655 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-3.5 - parent: 1 - type: Transform - - uid: 5656 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-2.5 - parent: 1 - type: Transform - - uid: 5657 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 1 - type: Transform -- proto: CarpetGreen - entities: - - uid: 3833 - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 5023 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform - - uid: 5025 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 9019 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 9020 - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 9021 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 9022 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - uid: 9023 - components: - - pos: -36.5,-2.5 - parent: 1 - type: Transform - - uid: 9024 - components: - - pos: -36.5,-3.5 - parent: 1 - type: Transform - - uid: 9025 - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform - - uid: 9026 - components: - - pos: -38.5,-4.5 - parent: 1 - type: Transform - - uid: 9027 - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 9028 - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform - - uid: 9029 - components: - - pos: -36.5,-5.5 - parent: 1 - type: Transform - - uid: 9030 - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 9031 - components: - - pos: -38.5,-7.5 - parent: 1 - type: Transform - - uid: 9032 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 9033 - components: - - pos: -36.5,-4.5 - parent: 1 - type: Transform - - uid: 9034 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform - - uid: 9035 - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform - - uid: 9036 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - uid: 9037 - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform - - uid: 9038 - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - uid: 9039 - components: - - pos: -41.5,-4.5 - parent: 1 - type: Transform - - uid: 9040 - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform - - uid: 9041 - components: - - pos: -41.5,-6.5 - parent: 1 - type: Transform - - uid: 9042 - components: - - pos: -41.5,-7.5 - parent: 1 - type: Transform -- proto: CarpetOrange - entities: - - uid: 5658 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 1 - type: Transform - - uid: 5659 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 5660 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 1 - type: Transform - - uid: 5661 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 1 - type: Transform - - uid: 12419 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 12420 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - uid: 12421 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - uid: 12422 - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform -- proto: CarpetPurple - entities: - - uid: 5018 - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - uid: 5019 - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 5020 - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform -- proto: CarpetSBlue - entities: - - uid: 5639 - components: - - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 1 - type: Transform - - uid: 5640 - components: - - rot: 3.141592653589793 rad - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 5641 - components: - - rot: 3.141592653589793 rad - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 5642 - components: - - rot: 3.141592653589793 rad - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 5643 - components: - - rot: 3.141592653589793 rad - pos: 4.5,30.5 - parent: 1 - type: Transform - - uid: 5644 - components: - - rot: 3.141592653589793 rad - pos: 5.5,30.5 - parent: 1 - type: Transform -- proto: Catwalk - entities: - - uid: 1100 - components: - - pos: 22.5,-15.5 - parent: 1 - type: Transform - - uid: 1106 - components: - - pos: 22.5,-14.5 - parent: 1 - type: Transform - - uid: 1115 - components: - - pos: 22.5,-13.5 - parent: 1 - type: Transform - - uid: 1120 - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform - - uid: 1121 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - uid: 1122 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - uid: 1123 - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - uid: 1124 - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform - - uid: 1125 - components: - - pos: 26.5,-13.5 - parent: 1 - type: Transform - - uid: 1126 - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform - - uid: 1127 - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - uid: 1128 - components: - - pos: 23.5,-13.5 - parent: 1 - type: Transform - - uid: 1133 - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - uid: 1973 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-58.5 - parent: 1 - type: Transform - - uid: 2446 - components: - - pos: -35.5,-25.5 - parent: 1 - type: Transform - - uid: 2447 - components: - - pos: -34.5,-25.5 - parent: 1 - type: Transform - - uid: 2448 - components: - - pos: -33.5,-25.5 - parent: 1 - type: Transform - - uid: 2450 - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform - - uid: 2451 - components: - - pos: -31.5,-26.5 - parent: 1 - type: Transform - - uid: 2452 - components: - - pos: -31.5,-27.5 - parent: 1 - type: Transform - - uid: 2453 - components: - - pos: -31.5,-28.5 - parent: 1 - type: Transform - - uid: 2454 - components: - - pos: -31.5,-29.5 - parent: 1 - type: Transform - - uid: 2455 - components: - - pos: -31.5,-30.5 - parent: 1 - type: Transform - - uid: 2456 - components: - - pos: -31.5,-31.5 - parent: 1 - type: Transform - - uid: 2457 - components: - - pos: -31.5,-32.5 - parent: 1 - type: Transform - - uid: 2458 - components: - - pos: -31.5,-33.5 - parent: 1 - type: Transform - - uid: 2459 - components: - - pos: -31.5,-34.5 - parent: 1 - type: Transform - - uid: 2460 - components: - - pos: -32.5,-29.5 - parent: 1 - type: Transform - - uid: 2461 - components: - - pos: -33.5,-29.5 - parent: 1 - type: Transform - - uid: 2462 - components: - - pos: -34.5,-29.5 - parent: 1 - type: Transform - - uid: 2463 - components: - - pos: -30.5,-29.5 - parent: 1 - type: Transform - - uid: 2464 - components: - - pos: -29.5,-29.5 - parent: 1 - type: Transform - - uid: 2465 - components: - - pos: -28.5,-29.5 - parent: 1 - type: Transform - - uid: 2466 - components: - - pos: -32.5,-33.5 - parent: 1 - type: Transform - - uid: 2467 - components: - - pos: -33.5,-33.5 - parent: 1 - type: Transform - - uid: 2468 - components: - - pos: -34.5,-33.5 - parent: 1 - type: Transform - - uid: 2469 - components: - - pos: -30.5,-33.5 - parent: 1 - type: Transform - - uid: 2470 - components: - - pos: -29.5,-33.5 - parent: 1 - type: Transform - - uid: 2471 - components: - - pos: -28.5,-33.5 - parent: 1 - type: Transform - - uid: 2523 - components: - - pos: -31.5,-35.5 - parent: 1 - type: Transform - - uid: 2537 - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform - - uid: 2591 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,32.5 - parent: 1 - type: Transform - - uid: 2592 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,32.5 - parent: 1 - type: Transform - - uid: 2593 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,32.5 - parent: 1 - type: Transform - - uid: 2594 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 1 - type: Transform - - uid: 2595 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,34.5 - parent: 1 - type: Transform - - uid: 2596 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,35.5 - parent: 1 - type: Transform - - uid: 2597 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,36.5 - parent: 1 - type: Transform - - uid: 2598 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - type: Transform - - uid: 2599 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,38.5 - parent: 1 - type: Transform - - uid: 2600 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,39.5 - parent: 1 - type: Transform - - uid: 2601 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,40.5 - parent: 1 - type: Transform - - uid: 2602 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,41.5 - parent: 1 - type: Transform - - uid: 2603 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,39.5 - parent: 1 - type: Transform - - uid: 2604 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,39.5 - parent: 1 - type: Transform - - uid: 2605 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,39.5 - parent: 1 - type: Transform - - uid: 2606 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,39.5 - parent: 1 - type: Transform - - uid: 2607 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,39.5 - parent: 1 - type: Transform - - uid: 2608 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,39.5 - parent: 1 - type: Transform - - uid: 2609 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,39.5 - parent: 1 - type: Transform - - uid: 2610 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 1 - type: Transform - - uid: 2611 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,35.5 - parent: 1 - type: Transform - - uid: 2612 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,35.5 - parent: 1 - type: Transform - - uid: 2613 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,35.5 - parent: 1 - type: Transform - - uid: 2614 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,35.5 - parent: 1 - type: Transform - - uid: 2615 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,35.5 - parent: 1 - type: Transform - - uid: 2616 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,35.5 - parent: 1 - type: Transform - - uid: 2617 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,35.5 - parent: 1 - type: Transform - - uid: 2618 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,35.5 - parent: 1 - type: Transform - - uid: 2790 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-58.5 - parent: 1 - type: Transform - - uid: 2837 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-58.5 - parent: 1 - type: Transform - - uid: 2840 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-58.5 - parent: 1 - type: Transform - - uid: 2841 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-58.5 - parent: 1 - type: Transform - - uid: 2842 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-57.5 - parent: 1 - type: Transform - - uid: 2843 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-59.5 - parent: 1 - type: Transform - - uid: 2844 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-56.5 - parent: 1 - type: Transform - - uid: 2845 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-55.5 - parent: 1 - type: Transform - - uid: 2980 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1 - type: Transform - - uid: 3804 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 1 - type: Transform - - uid: 3850 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 1 - type: Transform - - uid: 3851 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,41.5 - parent: 1 - type: Transform - - uid: 3852 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 1 - type: Transform - - uid: 3853 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,40.5 - parent: 1 - type: Transform - - uid: 3854 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,39.5 - parent: 1 - type: Transform - - uid: 3855 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,39.5 - parent: 1 - type: Transform - - uid: 3856 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,38.5 - parent: 1 - type: Transform - - uid: 3857 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,37.5 - parent: 1 - type: Transform - - uid: 3858 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,37.5 - parent: 1 - type: Transform - - uid: 3859 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 1 - type: Transform - - uid: 3860 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 1 - type: Transform - - uid: 3861 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,34.5 - parent: 1 - type: Transform - - uid: 3862 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,34.5 - parent: 1 - type: Transform - - uid: 3863 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1 - type: Transform - - uid: 3864 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,42.5 - parent: 1 - type: Transform - - uid: 3865 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,41.5 - parent: 1 - type: Transform - - uid: 3866 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,41.5 - parent: 1 - type: Transform - - uid: 3867 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,40.5 - parent: 1 - type: Transform - - uid: 3868 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,39.5 - parent: 1 - type: Transform - - uid: 3869 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,39.5 - parent: 1 - type: Transform - - uid: 3870 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 1 - type: Transform - - uid: 3871 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,37.5 - parent: 1 - type: Transform - - uid: 3872 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,37.5 - parent: 1 - type: Transform - - uid: 3873 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,36.5 - parent: 1 - type: Transform - - uid: 3874 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,35.5 - parent: 1 - type: Transform - - uid: 3875 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,35.5 - parent: 1 - type: Transform - - uid: 3876 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,34.5 - parent: 1 - type: Transform - - uid: 3877 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,34.5 - parent: 1 - type: Transform - - uid: 3878 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 1 - type: Transform - - uid: 3879 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,34.5 - parent: 1 - type: Transform - - uid: 3880 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,35.5 - parent: 1 - type: Transform - - uid: 3881 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,35.5 - parent: 1 - type: Transform - - uid: 3882 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,35.5 - parent: 1 - type: Transform - - uid: 3883 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,35.5 - parent: 1 - type: Transform - - uid: 3884 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,35.5 - parent: 1 - type: Transform - - uid: 3885 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,35.5 - parent: 1 - type: Transform - - uid: 3886 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,41.5 - parent: 1 - type: Transform - - uid: 3887 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - uid: 3888 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,41.5 - parent: 1 - type: Transform - - uid: 3889 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,41.5 - parent: 1 - type: Transform - - uid: 3890 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - uid: 3891 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,34.5 - parent: 1 - type: Transform - - uid: 3892 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 1 - type: Transform - - uid: 3893 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,34.5 - parent: 1 - type: Transform - - uid: 3894 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,34.5 - parent: 1 - type: Transform - - uid: 3895 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,34.5 - parent: 1 - type: Transform - - uid: 3896 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,34.5 - parent: 1 - type: Transform - - uid: 3897 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,33.5 - parent: 1 - type: Transform - - uid: 3899 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,34.5 - parent: 1 - type: Transform - - uid: 3900 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 1 - type: Transform - - uid: 3901 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,34.5 - parent: 1 - type: Transform - - uid: 3902 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,34.5 - parent: 1 - type: Transform - - uid: 3903 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,33.5 - parent: 1 - type: Transform - - uid: 3904 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,32.5 - parent: 1 - type: Transform - - uid: 3905 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 1 - type: Transform - - uid: 3906 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,32.5 - parent: 1 - type: Transform - - uid: 3907 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,32.5 - parent: 1 - type: Transform - - uid: 3908 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 1 - type: Transform - - uid: 3909 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,32.5 - parent: 1 - type: Transform - - uid: 3931 - components: - - pos: -13.5,33.5 - parent: 1 - type: Transform - - uid: 3940 - components: - - pos: -6.5,42.5 - parent: 1 - type: Transform - - uid: 5841 - components: - - pos: -16.5,-46.5 - parent: 1 - type: Transform - - uid: 5843 - components: - - pos: -16.5,-45.5 - parent: 1 - type: Transform - - uid: 5844 - components: - - pos: -16.5,-44.5 - parent: 1 - type: Transform - - uid: 5845 - components: - - pos: -16.5,-43.5 - parent: 1 - type: Transform - - uid: 5846 - components: - - pos: -16.5,-42.5 - parent: 1 - type: Transform - - uid: 5847 - components: - - pos: -16.5,-41.5 - parent: 1 - type: Transform - - uid: 5848 - components: - - pos: -16.5,-40.5 - parent: 1 - type: Transform - - uid: 5849 - components: - - pos: -16.5,-39.5 - parent: 1 - type: Transform - - uid: 5850 - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform - - uid: 5851 - components: - - pos: -16.5,-37.5 - parent: 1 - type: Transform - - uid: 5852 - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform - - uid: 5853 - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - uid: 5854 - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - uid: 5855 - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - uid: 5857 - components: - - pos: -17.5,-32.5 - parent: 1 - type: Transform - - uid: 7005 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 1 - type: Transform - - uid: 7006 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 1 - type: Transform - - uid: 7007 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 1 - type: Transform - - uid: 7008 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 1 - type: Transform - - uid: 7009 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 1 - type: Transform - - uid: 7010 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 1 - type: Transform - - uid: 7011 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 1 - type: Transform - - uid: 7012 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 1 - type: Transform - - uid: 7013 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 1 - type: Transform - - uid: 7014 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 1 - type: Transform - - uid: 7015 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 1 - type: Transform - - uid: 7016 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 7023 - components: - - pos: 31.5,-20.5 - parent: 1 - type: Transform - - uid: 7024 - components: - - pos: 32.5,-20.5 - parent: 1 - type: Transform - - uid: 7025 - components: - - pos: 33.5,-20.5 - parent: 1 - type: Transform - - uid: 7026 - components: - - pos: 34.5,-20.5 - parent: 1 - type: Transform - - uid: 7027 - components: - - pos: 35.5,-20.5 - parent: 1 - type: Transform - - uid: 7028 - components: - - pos: 36.5,-20.5 - parent: 1 - type: Transform - - uid: 7029 - components: - - pos: 37.5,-20.5 - parent: 1 - type: Transform - - uid: 7030 - components: - - pos: 38.5,-20.5 - parent: 1 - type: Transform - - uid: 7031 - components: - - pos: 32.5,-21.5 - parent: 1 - type: Transform - - uid: 7032 - components: - - pos: 32.5,-22.5 - parent: 1 - type: Transform - - uid: 7033 - components: - - pos: 32.5,-23.5 - parent: 1 - type: Transform - - uid: 7034 - components: - - pos: 32.5,-24.5 - parent: 1 - type: Transform - - uid: 7035 - components: - - pos: 32.5,-25.5 - parent: 1 - type: Transform - - uid: 7036 - components: - - pos: 33.5,-25.5 - parent: 1 - type: Transform - - uid: 7037 - components: - - pos: 34.5,-25.5 - parent: 1 - type: Transform - - uid: 7038 - components: - - pos: 35.5,-25.5 - parent: 1 - type: Transform - - uid: 7039 - components: - - pos: 36.5,-25.5 - parent: 1 - type: Transform - - uid: 7040 - components: - - pos: 37.5,-25.5 - parent: 1 - type: Transform - - uid: 7041 - components: - - pos: 38.5,-25.5 - parent: 1 - type: Transform - - uid: 7042 - components: - - pos: 38.5,-24.5 - parent: 1 - type: Transform - - uid: 7043 - components: - - pos: 38.5,-23.5 - parent: 1 - type: Transform - - uid: 7044 - components: - - pos: 38.5,-22.5 - parent: 1 - type: Transform - - uid: 7045 - components: - - pos: 38.5,-21.5 - parent: 1 - type: Transform - - uid: 7046 - components: - - pos: 39.5,-20.5 - parent: 1 - type: Transform - - uid: 7047 - components: - - pos: 40.5,-20.5 - parent: 1 - type: Transform - - uid: 7048 - components: - - pos: 41.5,-20.5 - parent: 1 - type: Transform - - uid: 7049 - components: - - pos: 41.5,-19.5 - parent: 1 - type: Transform - - uid: 7065 - components: - - pos: 41.5,-3.5 - parent: 1 - type: Transform - - uid: 7455 - components: - - pos: 24.5,-26.5 - parent: 1 - type: Transform - - uid: 7456 - components: - - pos: 24.5,-27.5 - parent: 1 - type: Transform - - uid: 7457 - components: - - pos: 25.5,-26.5 - parent: 1 - type: Transform - - uid: 7458 - components: - - pos: 25.5,-27.5 - parent: 1 - type: Transform - - uid: 7459 - components: - - pos: 26.5,-26.5 - parent: 1 - type: Transform - - uid: 7460 - components: - - pos: 26.5,-27.5 - parent: 1 - type: Transform - - uid: 8937 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 1 - type: Transform - - uid: 8938 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 1 - type: Transform - - uid: 8939 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 1 - type: Transform - - uid: 8940 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-15.5 - parent: 1 - type: Transform - - uid: 8941 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 1 - type: Transform - - uid: 8942 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-18.5 - parent: 1 - type: Transform - - uid: 8943 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 1 - type: Transform - - uid: 8944 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 1 - type: Transform - - uid: 8945 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-20.5 - parent: 1 - type: Transform - - uid: 8946 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-19.5 - parent: 1 - type: Transform - - uid: 8947 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 1 - type: Transform - - uid: 8948 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 1 - type: Transform - - uid: 8949 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 1 - type: Transform - - uid: 8950 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 1 - type: Transform - - uid: 8951 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 1 - type: Transform - - uid: 8952 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 1 - type: Transform - - uid: 8953 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 1 - type: Transform - - uid: 8954 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-22.5 - parent: 1 - type: Transform - - uid: 8955 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-22.5 - parent: 1 - type: Transform - - uid: 8956 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 1 - type: Transform - - uid: 8957 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 1 - type: Transform - - uid: 8958 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-17.5 - parent: 1 - type: Transform - - uid: 8959 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-17.5 - parent: 1 - type: Transform - - uid: 8960 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 1 - type: Transform - - uid: 8961 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 1 - type: Transform - - uid: 8962 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-17.5 - parent: 1 - type: Transform - - uid: 8963 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 1 - type: Transform - - uid: 8964 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-13.5 - parent: 1 - type: Transform - - uid: 8965 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-14.5 - parent: 1 - type: Transform - - uid: 8966 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 1 - type: Transform - - uid: 8967 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 1 - type: Transform - - uid: 8968 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform - - uid: 8969 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 1 - type: Transform - - uid: 8970 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-10.5 - parent: 1 - type: Transform - - uid: 8971 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-10.5 - parent: 1 - type: Transform - - uid: 8972 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-10.5 - parent: 1 - type: Transform - - uid: 8973 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 1 - type: Transform - - uid: 8974 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 1 - type: Transform - - uid: 8975 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform - - uid: 8976 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 1 - type: Transform - - uid: 8977 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 1 - type: Transform - - uid: 8978 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 1 - type: Transform - - uid: 8979 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-5.5 - parent: 1 - type: Transform - - uid: 8980 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform - - uid: 8981 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 8982 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1 - type: Transform - - uid: 8983 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 1 - type: Transform - - uid: 8984 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 8985 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-9.5 - parent: 1 - type: Transform - - uid: 8986 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 1 - type: Transform - - uid: 8987 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 1 - type: Transform - - uid: 8988 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 1 - type: Transform - - uid: 8989 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 1 - type: Transform - - uid: 8990 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 1 - type: Transform - - uid: 8991 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-20.5 - parent: 1 - type: Transform - - uid: 8992 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 1 - type: Transform - - uid: 8993 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-21.5 - parent: 1 - type: Transform - - uid: 8994 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 1 - type: Transform - - uid: 8995 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 1 - type: Transform - - uid: 8996 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 1 - type: Transform - - uid: 8997 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1 - type: Transform - - uid: 8998 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1 - type: Transform - - uid: 8999 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 1 - type: Transform - - uid: 9000 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1 - type: Transform - - uid: 9001 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1 - type: Transform - - uid: 9002 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 9003 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1 - type: Transform - - uid: 9004 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 1 - type: Transform - - uid: 9005 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1 - type: Transform - - uid: 9006 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-25.5 - parent: 1 - type: Transform - - uid: 9007 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 1 - type: Transform - - uid: 9008 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 1 - type: Transform - - uid: 9009 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-14.5 - parent: 1 - type: Transform - - uid: 9010 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 1 - type: Transform - - uid: 9011 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 1 - type: Transform - - uid: 9012 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-25.5 - parent: 1 - type: Transform - - uid: 9013 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-26.5 - parent: 1 - type: Transform - - uid: 9071 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 1 - type: Transform - - uid: 9072 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 1 - type: Transform - - uid: 9073 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-12.5 - parent: 1 - type: Transform - - uid: 9074 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 1 - type: Transform - - uid: 9075 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 1 - type: Transform - - uid: 9076 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform - - uid: 9077 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 9078 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 1 - type: Transform - - uid: 9079 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1 - type: Transform - - uid: 9080 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-14.5 - parent: 1 - type: Transform - - uid: 9081 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 1 - type: Transform - - uid: 9082 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-17.5 - parent: 1 - type: Transform - - uid: 9083 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-18.5 - parent: 1 - type: Transform - - uid: 9084 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-17.5 - parent: 1 - type: Transform - - uid: 9085 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-17.5 - parent: 1 - type: Transform - - uid: 9086 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 9087 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-17.5 - parent: 1 - type: Transform - - uid: 9088 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-18.5 - parent: 1 - type: Transform - - uid: 9089 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-18.5 - parent: 1 - type: Transform - - uid: 9090 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-17.5 - parent: 1 - type: Transform - - uid: 9091 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-15.5 - parent: 1 - type: Transform - - uid: 9092 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-13.5 - parent: 1 - type: Transform - - uid: 9093 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 1 - type: Transform - - uid: 9094 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 9095 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 1 - type: Transform - - uid: 9096 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-14.5 - parent: 1 - type: Transform - - uid: 9097 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 1 - type: Transform - - uid: 9098 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 9099 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 9100 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-3.5 - parent: 1 - type: Transform - - uid: 9101 - components: - - rot: 3.141592653589793 rad - pos: 31.5,-1.5 - parent: 1 - type: Transform - - uid: 9102 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-0.5 - parent: 1 - type: Transform - - uid: 9103 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-1.5 - parent: 1 - type: Transform - - uid: 9104 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-1.5 - parent: 1 - type: Transform - - uid: 9105 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 1 - type: Transform - - uid: 9106 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 9107 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 9108 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-0.5 - parent: 1 - type: Transform - - uid: 9109 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-1.5 - parent: 1 - type: Transform - - uid: 9111 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-1.5 - parent: 1 - type: Transform - - uid: 9112 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 9113 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-0.5 - parent: 1 - type: Transform - - uid: 9114 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-0.5 - parent: 1 - type: Transform - - uid: 9115 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-0.5 - parent: 1 - type: Transform - - uid: 9116 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-0.5 - parent: 1 - type: Transform - - uid: 9117 - components: - - rot: 3.141592653589793 rad - pos: 39.5,-0.5 - parent: 1 - type: Transform - - uid: 9118 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-1.5 - parent: 1 - type: Transform - - uid: 9119 - components: - - rot: 3.141592653589793 rad - pos: 44.5,-0.5 - parent: 1 - type: Transform - - uid: 9120 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-0.5 - parent: 1 - type: Transform - - uid: 9121 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 1 - type: Transform - - uid: 9122 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-20.5 - parent: 1 - type: Transform - - uid: 9123 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 1 - type: Transform - - uid: 9184 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,15.5 - parent: 1 - type: Transform - - uid: 9332 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,42.5 - parent: 1 - type: Transform - - uid: 9384 - components: - - rot: 3.141592653589793 rad - pos: 23.5,21.5 - parent: 1 - type: Transform - - uid: 9386 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform - - uid: 9387 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,21.5 - parent: 1 - type: Transform - - uid: 9388 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1 - type: Transform - - uid: 9389 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 9390 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 1 - type: Transform - - uid: 9391 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,26.5 - parent: 1 - type: Transform - - uid: 9392 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,26.5 - parent: 1 - type: Transform - - uid: 9393 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 9394 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - uid: 9395 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 1 - type: Transform - - uid: 9396 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 9397 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 1 - type: Transform - - uid: 9398 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,29.5 - parent: 1 - type: Transform - - uid: 9399 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,29.5 - parent: 1 - type: Transform - - uid: 9400 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 1 - type: Transform - - uid: 9401 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,33.5 - parent: 1 - type: Transform - - uid: 9402 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,33.5 - parent: 1 - type: Transform - - uid: 9403 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,32.5 - parent: 1 - type: Transform - - uid: 9404 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,29.5 - parent: 1 - type: Transform - - uid: 9405 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 1 - type: Transform - - uid: 9406 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,33.5 - parent: 1 - type: Transform - - uid: 9407 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 9408 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,33.5 - parent: 1 - type: Transform - - uid: 9409 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 1 - type: Transform - - uid: 9410 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 1 - type: Transform - - uid: 9411 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - type: Transform - - uid: 9412 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 1 - type: Transform - - uid: 9413 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 1 - type: Transform - - uid: 9414 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,24.5 - parent: 1 - type: Transform - - uid: 9415 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,22.5 - parent: 1 - type: Transform - - uid: 9416 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 1 - type: Transform - - uid: 9417 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,19.5 - parent: 1 - type: Transform - - uid: 9418 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,18.5 - parent: 1 - type: Transform - - uid: 9419 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1 - type: Transform - - uid: 9420 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 1 - type: Transform - - uid: 9421 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 9422 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 9423 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 9424 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,17.5 - parent: 1 - type: Transform - - uid: 9425 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,18.5 - parent: 1 - type: Transform - - uid: 9426 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 1 - type: Transform - - uid: 9427 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,18.5 - parent: 1 - type: Transform - - uid: 9428 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1 - type: Transform - - uid: 9429 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,21.5 - parent: 1 - type: Transform - - uid: 9430 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 1 - type: Transform - - uid: 9431 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,20.5 - parent: 1 - type: Transform - - uid: 9432 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 1 - type: Transform - - uid: 9433 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 1 - type: Transform - - uid: 9434 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 1 - type: Transform - - uid: 9435 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,35.5 - parent: 1 - type: Transform - - uid: 9436 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 1 - type: Transform - - uid: 9437 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,34.5 - parent: 1 - type: Transform - - uid: 9438 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,34.5 - parent: 1 - type: Transform - - uid: 9439 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,35.5 - parent: 1 - type: Transform - - uid: 9440 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,33.5 - parent: 1 - type: Transform - - uid: 9441 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,33.5 - parent: 1 - type: Transform - - uid: 9442 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,32.5 - parent: 1 - type: Transform - - uid: 9443 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,34.5 - parent: 1 - type: Transform - - uid: 9444 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,29.5 - parent: 1 - type: Transform - - uid: 9445 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,28.5 - parent: 1 - type: Transform - - uid: 9446 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,27.5 - parent: 1 - type: Transform - - uid: 9447 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,25.5 - parent: 1 - type: Transform - - uid: 9448 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,23.5 - parent: 1 - type: Transform - - uid: 9449 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,20.5 - parent: 1 - type: Transform - - uid: 9450 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,19.5 - parent: 1 - type: Transform - - uid: 9451 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 1 - type: Transform - - uid: 9452 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,16.5 - parent: 1 - type: Transform - - uid: 9453 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,17.5 - parent: 1 - type: Transform - - uid: 9454 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,17.5 - parent: 1 - type: Transform - - uid: 9455 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - uid: 9456 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,11.5 - parent: 1 - type: Transform - - uid: 9457 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,10.5 - parent: 1 - type: Transform - - uid: 9458 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,15.5 - parent: 1 - type: Transform - - uid: 9459 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 1 - type: Transform - - uid: 9460 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 1 - type: Transform - - uid: 9461 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 1 - type: Transform - - uid: 9462 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,6.5 - parent: 1 - type: Transform - - uid: 9463 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,6.5 - parent: 1 - type: Transform - - uid: 9464 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - type: Transform - - uid: 9465 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,5.5 - parent: 1 - type: Transform - - uid: 9466 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 9467 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,6.5 - parent: 1 - type: Transform - - uid: 9468 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 1 - type: Transform - - uid: 9469 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,5.5 - parent: 1 - type: Transform - - uid: 9741 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,16.5 - parent: 1 - type: Transform - - uid: 9742 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,18.5 - parent: 1 - type: Transform - - uid: 9743 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,19.5 - parent: 1 - type: Transform - - uid: 9744 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,18.5 - parent: 1 - type: Transform - - uid: 9745 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,19.5 - parent: 1 - type: Transform - - uid: 9746 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,19.5 - parent: 1 - type: Transform - - uid: 9747 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,18.5 - parent: 1 - type: Transform - - uid: 9748 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,19.5 - parent: 1 - type: Transform - - uid: 9749 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,19.5 - parent: 1 - type: Transform - - uid: 9750 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 9751 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,23.5 - parent: 1 - type: Transform - - uid: 9752 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,24.5 - parent: 1 - type: Transform - - uid: 9753 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,25.5 - parent: 1 - type: Transform - - uid: 9754 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - type: Transform - - uid: 9755 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 1 - type: Transform - - uid: 9756 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,23.5 - parent: 1 - type: Transform - - uid: 9757 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,25.5 - parent: 1 - type: Transform - - uid: 9758 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,23.5 - parent: 1 - type: Transform - - uid: 9759 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,26.5 - parent: 1 - type: Transform - - uid: 9760 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 1 - type: Transform - - uid: 9761 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,27.5 - parent: 1 - type: Transform - - uid: 9762 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,27.5 - parent: 1 - type: Transform - - uid: 9763 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,26.5 - parent: 1 - type: Transform - - uid: 9764 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 9765 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 1 - type: Transform - - uid: 9766 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 1 - type: Transform - - uid: 9767 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,29.5 - parent: 1 - type: Transform - - uid: 9768 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,27.5 - parent: 1 - type: Transform - - uid: 9769 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1 - type: Transform - - uid: 9770 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - type: Transform - - uid: 9771 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,24.5 - parent: 1 - type: Transform - - uid: 9772 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1 - type: Transform - - uid: 9773 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,25.5 - parent: 1 - type: Transform - - uid: 9774 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 1 - type: Transform - - uid: 9775 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,25.5 - parent: 1 - type: Transform - - uid: 9776 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 1 - type: Transform - - uid: 9777 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - uid: 9778 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,24.5 - parent: 1 - type: Transform - - uid: 9779 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,22.5 - parent: 1 - type: Transform - - uid: 9780 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,21.5 - parent: 1 - type: Transform - - uid: 9781 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,20.5 - parent: 1 - type: Transform - - uid: 9782 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 9783 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 1 - type: Transform - - uid: 9784 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,17.5 - parent: 1 - type: Transform - - uid: 9785 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,22.5 - parent: 1 - type: Transform - - uid: 9786 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,24.5 - parent: 1 - type: Transform - - uid: 9787 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 1 - type: Transform - - uid: 9788 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,20.5 - parent: 1 - type: Transform - - uid: 9789 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,19.5 - parent: 1 - type: Transform - - uid: 9790 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,18.5 - parent: 1 - type: Transform - - uid: 9791 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,18.5 - parent: 1 - type: Transform - - uid: 9792 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,18.5 - parent: 1 - type: Transform - - uid: 9793 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,18.5 - parent: 1 - type: Transform - - uid: 9794 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,18.5 - parent: 1 - type: Transform - - uid: 9795 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,16.5 - parent: 1 - type: Transform - - uid: 9796 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,15.5 - parent: 1 - type: Transform - - uid: 9797 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,14.5 - parent: 1 - type: Transform - - uid: 9798 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,12.5 - parent: 1 - type: Transform - - uid: 9799 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 1 - type: Transform - - uid: 9800 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 1 - type: Transform - - uid: 9801 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 9802 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,7.5 - parent: 1 - type: Transform - - uid: 9803 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 1 - type: Transform - - uid: 9804 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,28.5 - parent: 1 - type: Transform - - uid: 9805 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,27.5 - parent: 1 - type: Transform - - uid: 10090 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 1 - type: Transform - - uid: 12516 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-32.5 - parent: 1 - type: Transform -- proto: Cautery - entities: - - uid: 8244 - components: - - pos: -24.632475,20.505098 - parent: 1 - type: Transform - - uid: 9628 - components: - - pos: 16.576576,27.750107 - parent: 1 - type: Transform -- proto: Chair - entities: - - uid: 664 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform - - uid: 665 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 1 - type: Transform - - uid: 666 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform - - uid: 1839 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 1 - type: Transform - - uid: 1893 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform - - uid: 1894 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - type: Transform - - uid: 1895 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform - - uid: 1899 - components: - - rot: 3.141592653589793 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - uid: 1900 - components: - - rot: 3.141592653589793 rad - pos: -16.5,8.5 - parent: 1 - type: Transform - - uid: 1901 - components: - - rot: 3.141592653589793 rad - pos: -19.5,8.5 - parent: 1 - type: Transform - - uid: 3210 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,1.5 - parent: 1 - type: Transform - - uid: 3211 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,1.5 - parent: 1 - type: Transform - - uid: 3212 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,8.5 - parent: 1 - type: Transform - - uid: 3801 - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform - - uid: 3802 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - uid: 3803 - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform - - uid: 4845 - components: - - rot: 3.141592653589793 rad - pos: 39.5,27.5 - parent: 1 - type: Transform - - uid: 4846 - components: - - rot: 3.141592653589793 rad - pos: 40.5,27.5 - parent: 1 - type: Transform - - uid: 4847 - components: - - rot: 3.141592653589793 rad - pos: 41.5,27.5 - parent: 1 - type: Transform - - uid: 4848 - components: - - rot: 3.141592653589793 rad - pos: 44.5,27.5 - parent: 1 - type: Transform - - uid: 4849 - components: - - rot: 3.141592653589793 rad - pos: 45.5,27.5 - parent: 1 - type: Transform - - uid: 4850 - components: - - rot: 3.141592653589793 rad - pos: 46.5,27.5 - parent: 1 - type: Transform - - uid: 4851 - components: - - rot: 3.141592653589793 rad - pos: 41.5,25.5 - parent: 1 - type: Transform - - uid: 4852 - components: - - rot: 3.141592653589793 rad - pos: 42.5,25.5 - parent: 1 - type: Transform - - uid: 4853 - components: - - rot: 3.141592653589793 rad - pos: 43.5,25.5 - parent: 1 - type: Transform - - uid: 4854 - components: - - rot: 3.141592653589793 rad - pos: 44.5,25.5 - parent: 1 - type: Transform - - uid: 4910 - components: - - pos: 46.5,34.5 - parent: 1 - type: Transform - - uid: 5538 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,7.5 - parent: 1 - type: Transform - - uid: 5539 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,9.5 - parent: 1 - type: Transform - - uid: 5540 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,10.5 - parent: 1 - type: Transform - - uid: 5541 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 1 - type: Transform - - uid: 5542 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,18.5 - parent: 1 - type: Transform - - uid: 5543 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 1 - type: Transform - - uid: 5544 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 1 - type: Transform - - uid: 5545 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,17.5 - parent: 1 - type: Transform - - uid: 5546 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,18.5 - parent: 1 - type: Transform - - uid: 5549 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,3.5 - parent: 1 - type: Transform - - uid: 5550 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 1 - type: Transform - - uid: 5559 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,20.5 - parent: 1 - type: Transform - - uid: 5572 - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - uid: 7501 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform - - uid: 7502 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 1 - type: Transform - - uid: 7503 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform - - uid: 7505 - components: - - pos: 2.5,-30.5 - parent: 1 - type: Transform - - uid: 7506 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 1 - type: Transform - - uid: 7510 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,3.5 - parent: 1 - type: Transform - - uid: 7511 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,3.5 - parent: 1 - type: Transform - - uid: 7512 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - type: Transform - - uid: 7513 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,1.5 - parent: 1 - type: Transform - - uid: 7514 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,6.5 - parent: 1 - type: Transform - - uid: 7515 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,7.5 - parent: 1 - type: Transform - - uid: 7516 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,8.5 - parent: 1 - type: Transform - - uid: 7517 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,9.5 - parent: 1 - type: Transform - - uid: 7518 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,10.5 - parent: 1 - type: Transform - - uid: 7519 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 1 - type: Transform - - uid: 7520 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - uid: 7521 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,7.5 - parent: 1 - type: Transform - - uid: 7522 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - uid: 7523 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,9.5 - parent: 1 - type: Transform - - uid: 8892 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 1 - type: Transform - - uid: 8895 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 1 - type: Transform - - uid: 8898 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 1 - type: Transform - - uid: 8899 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 1 - type: Transform - - uid: 9141 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-12.5 - parent: 1 - type: Transform - - uid: 9165 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 9232 - components: - - rot: 3.141592653589793 rad - pos: 24.5,32.5 - parent: 1 - type: Transform - - uid: 9234 - components: - - rot: 3.141592653589793 rad - pos: 23.5,32.5 - parent: 1 - type: Transform - - uid: 9235 - components: - - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 1 - type: Transform - - uid: 9236 - components: - - rot: 3.141592653589793 rad - pos: 25.5,32.5 - parent: 1 - type: Transform - - uid: 9237 - components: - - pos: 27.5,35.5 - parent: 1 - type: Transform - - uid: 9238 - components: - - pos: 28.5,35.5 - parent: 1 - type: Transform - - uid: 9239 - components: - - pos: 29.5,35.5 - parent: 1 - type: Transform - - uid: 9316 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,23.5 - parent: 1 - type: Transform - - uid: 9361 - components: - - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 1 - type: Transform - - uid: 9362 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,22.5 - parent: 1 - type: Transform - - uid: 9367 - components: - - pos: 12.5,30.5 - parent: 1 - type: Transform - - uid: 9383 - components: - - rot: 3.141592653589793 rad - pos: 23.5,20.5 - parent: 1 - type: Transform - - uid: 9528 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 9529 - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 9540 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 1 - type: Transform - - uid: 9701 - components: - - rot: 3.141592653589793 rad - pos: -35.5,18.5 - parent: 1 - type: Transform - - uid: 9705 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,21.5 - parent: 1 - type: Transform - - uid: 9706 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 9712 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 1 - type: Transform -- proto: ChairCursed - entities: - - uid: 8763 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-24.5 - parent: 1 - type: Transform -- proto: ChairFolding - entities: - - uid: 1812 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,25.5 - parent: 1 - type: Transform - - uid: 1813 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 1 - type: Transform - - uid: 3449 - components: - - rot: 3.141592653589793 rad - pos: -37.5,5.5 - parent: 1 - type: Transform - - uid: 3450 - components: - - rot: 3.141592653589793 rad - pos: -37.5,6.5 - parent: 1 - type: Transform - - uid: 3451 - components: - - rot: 3.141592653589793 rad - pos: -37.5,7.5 - parent: 1 - type: Transform - - uid: 3452 - components: - - rot: 3.141592653589793 rad - pos: -37.5,8.5 - parent: 1 - type: Transform - - uid: 3453 - components: - - rot: 3.141592653589793 rad - pos: -36.5,5.5 - parent: 1 - type: Transform - - uid: 3454 - components: - - rot: 3.141592653589793 rad - pos: -36.5,6.5 - parent: 1 - type: Transform - - uid: 3455 - components: - - rot: 3.141592653589793 rad - pos: -36.5,7.5 - parent: 1 - type: Transform - - uid: 3456 - components: - - rot: 3.141592653589793 rad - pos: -36.5,8.5 - parent: 1 - type: Transform - - uid: 3457 - components: - - rot: 3.141592653589793 rad - pos: -32.5,8.5 - parent: 1 - type: Transform - - uid: 3458 - components: - - rot: 3.141592653589793 rad - pos: -32.5,7.5 - parent: 1 - type: Transform - - uid: 3459 - components: - - rot: 3.141592653589793 rad - pos: -32.5,6.5 - parent: 1 - type: Transform - - uid: 3460 - components: - - rot: 3.141592653589793 rad - pos: -32.5,5.5 - parent: 1 - type: Transform - - uid: 3461 - components: - - rot: 3.141592653589793 rad - pos: -31.5,8.5 - parent: 1 - type: Transform - - uid: 3462 - components: - - rot: 3.141592653589793 rad - pos: -31.5,7.5 - parent: 1 - type: Transform - - uid: 3463 - components: - - rot: 3.141592653589793 rad - pos: -31.5,6.5 - parent: 1 - type: Transform - - uid: 3464 - components: - - rot: 3.141592653589793 rad - pos: -31.5,5.5 - parent: 1 - type: Transform - - uid: 3465 - components: - - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 1 - type: Transform - - uid: 3466 - components: - - pos: -34.5,10.5 - parent: 1 - type: Transform - - uid: 5570 - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - uid: 5571 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 1 - type: Transform - - uid: 8803 - components: - - pos: -38.5,-22.5 - parent: 1 - type: Transform - - uid: 8804 - components: - - pos: -37.5,-22.5 - parent: 1 - type: Transform - - uid: 8810 - components: - - pos: -42.5,-16.5 - parent: 1 - type: Transform - - uid: 8811 - components: - - pos: -43.5,-14.5 - parent: 1 - type: Transform - - uid: 8812 - components: - - pos: -42.5,-14.5 - parent: 1 - type: Transform - - uid: 8813 - components: - - pos: -41.5,-14.5 - parent: 1 - type: Transform - - uid: 8814 - components: - - pos: -40.5,-14.5 - parent: 1 - type: Transform - - uid: 8893 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-22.5 - parent: 1 - type: Transform - - uid: 8896 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 8897 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 9142 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-18.5 - parent: 1 - type: Transform - - uid: 9166 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-1.5 - parent: 1 - type: Transform - - uid: 9360 - components: - - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 9539 - components: - - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 9703 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 9708 - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform -- proto: ChairFoldingSpawnFolded - entities: - - uid: 8801 - components: - - pos: -40.497337,-24.45458 - parent: 1 - type: Transform - - uid: 8802 - components: - - pos: -40.481712,-24.251455 - parent: 1 - type: Transform -- proto: ChairOfficeDark - entities: - - uid: 778 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - uid: 779 - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform - - uid: 1710 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-16.5 - parent: 1 - type: Transform - - uid: 1875 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - uid: 2868 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-50.5 - parent: 1 - type: Transform - - uid: 3914 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,51.5 - parent: 1 - type: Transform - - uid: 3915 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - type: Transform - - uid: 3916 - components: - - rot: 3.141592653589793 rad - pos: -6.5,55.5 - parent: 1 - type: Transform - - uid: 3917 - components: - - pos: -4.5,49.5 - parent: 1 - type: Transform - - uid: 4053 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - type: Transform - - uid: 4054 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - type: Transform - - uid: 4055 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1 - type: Transform - - uid: 4056 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,27.5 - parent: 1 - type: Transform - - uid: 4057 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - type: Transform - - uid: 4058 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,29.5 - parent: 1 - type: Transform - - uid: 4078 - components: - - rot: 3.141592653589793 rad - pos: -2.5,31.5 - parent: 1 - type: Transform - - uid: 4079 - components: - - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 1 - type: Transform - - uid: 4080 - components: - - rot: 3.141592653589793 rad - pos: -4.5,30.5 - parent: 1 - type: Transform - - uid: 4081 - components: - - rot: 3.141592653589793 rad - pos: -5.5,30.5 - parent: 1 - type: Transform - - uid: 4082 - components: - - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - uid: 4083 - components: - - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 1 - type: Transform - - uid: 4096 - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform - - uid: 4902 - components: - - rot: 3.141592653589793 rad - pos: 40.5,30.5 - parent: 1 - type: Transform - - uid: 4903 - components: - - rot: 3.141592653589793 rad - pos: 41.5,30.5 - parent: 1 - type: Transform - - uid: 4904 - components: - - rot: 3.141592653589793 rad - pos: 44.5,30.5 - parent: 1 - type: Transform - - uid: 4905 - components: - - rot: 3.141592653589793 rad - pos: 45.5,30.5 - parent: 1 - type: Transform - - uid: 4912 - components: - - pos: 39.5,34.5 - parent: 1 - type: Transform - - uid: 4966 - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform - - uid: 5332 - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - uid: 5364 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - uid: 5367 - components: - - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - uid: 5375 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - uid: 5574 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-7.5 - parent: 1 - type: Transform - - uid: 5575 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - uid: 5673 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-14.5 - parent: 1 - type: Transform - - uid: 5674 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 1 - type: Transform - - uid: 6394 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 6786 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-10.5 - parent: 1 - type: Transform - - uid: 7397 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 1 - type: Transform - - uid: 7398 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - uid: 7399 - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 8013 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 1 - type: Transform - - uid: 8894 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 1 - type: Transform - - uid: 9317 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,23.5 - parent: 1 - type: Transform - - uid: 9385 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1 - type: Transform - - uid: 9633 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,25.5 - parent: 1 - type: Transform - - uid: 11749 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 1 - type: Transform - - uid: 12424 - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform - - uid: 12455 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform -- proto: ChairOfficeLight - entities: - - uid: 1874 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform - - uid: 5608 - components: - - rot: 3.141592653589793 rad - pos: -12.5,15.5 - parent: 1 - type: Transform - - uid: 5609 - components: - - rot: 3.141592653589793 rad - pos: -9.5,13.5 - parent: 1 - type: Transform - - uid: 5610 - components: - - rot: 3.141592653589793 rad - pos: -8.5,6.5 - parent: 1 - type: Transform - - uid: 5921 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform - - uid: 9143 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-15.5 - parent: 1 - type: Transform - - uid: 9152 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 1 - type: Transform - - uid: 9162 - components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 9366 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,30.5 - parent: 1 - type: Transform - - uid: 9547 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,23.5 - parent: 1 - type: Transform - - uid: 9702 - components: - - rot: 3.141592653589793 rad - pos: -32.5,21.5 - parent: 1 - type: Transform - - uid: 9704 - components: - - rot: 3.141592653589793 rad - pos: -24.5,26.5 - parent: 1 - type: Transform -- proto: ChairRitual - entities: - - uid: 8761 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-23.5 - parent: 1 - type: Transform - - uid: 8762 - components: - - pos: -41.5,-22.5 - parent: 1 - type: Transform -- proto: ChairWood - entities: - - uid: 2031 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - uid: 2787 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-50.5 - parent: 1 - type: Transform - - uid: 3448 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform - - uid: 5030 - components: - - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 5033 - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform - - uid: 5034 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 5037 - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform - - uid: 5038 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 5046 - components: - - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 1 - type: Transform - - uid: 5047 - components: - - rot: 3.141592653589793 rad - pos: 2.5,9.5 - parent: 1 - type: Transform - - uid: 5048 - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform - - uid: 5576 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 1 - type: Transform - - uid: 8301 - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - uid: 8302 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-17.5 - parent: 1 - type: Transform - - uid: 8303 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - type: Transform - - uid: 8304 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform - - uid: 8499 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-17.5 - parent: 1 - type: Transform - - uid: 12523 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 1 - type: Transform -- proto: chem_master - entities: - - uid: 5604 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - uid: 5605 - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform -- proto: ChemDispenser - entities: - - uid: 5606 - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform - - uid: 5612 - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform -- proto: ChemistryHotplate - entities: - - uid: 5871 - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform -- proto: ChessBoard - entities: - - uid: 5058 - components: - - rot: -1.5707963267948966 rad - pos: 3.502126,25.59834 - parent: 1 - type: Transform - - uid: 7657 - components: - - pos: 2.5021737,-31.407312 - parent: 1 - type: Transform -- proto: ChurchOrganInstrument - entities: - - uid: 3468 - components: - - rot: 3.141592653589793 rad - pos: -31.5,11.5 - parent: 1 - type: Transform -- proto: CigarGoldCase - entities: - - uid: 4136 - components: - - pos: -3.2445543,23.545168 - parent: 1 - type: Transform -- proto: CircuitImprinter - entities: - - uid: 3807 - components: - - pos: -9.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetBase - entities: - - uid: 12521 - components: - - pos: -23.5,-28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12522 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetChefFilled - entities: - - uid: 5963 - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 3610 - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform - - uid: 4085 - components: - - pos: -4.5,27.5 - parent: 1 - type: Transform - - uid: 5057 - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - uid: 5562 - components: - - pos: 44.5,23.5 - parent: 1 - type: Transform - - uid: 5563 - components: - - pos: 46.5,3.5 - parent: 1 - type: Transform - - uid: 5565 - components: - - pos: 42.5,4.5 - parent: 1 - type: Transform - - uid: 6330 - components: - - pos: -20.5,-16.5 - parent: 1 - type: Transform - - uid: 7238 - components: - - pos: 5.5,-27.5 - parent: 1 - type: Transform - - uid: 7526 - components: - - pos: -39.5,13.5 - parent: 1 - type: Transform - - uid: 7647 - components: - - pos: -39.5,4.5 - parent: 1 - type: Transform - - uid: 8836 - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform - - uid: 8839 - components: - - pos: -24.5,-10.5 - parent: 1 - type: Transform - - uid: 8840 - components: - - pos: -10.5,-17.5 - parent: 1 - type: Transform - - uid: 8841 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - uid: 8844 - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform - - uid: 8845 - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform - - uid: 8849 - components: - - pos: 44.5,-1.5 - parent: 1 - type: Transform - - uid: 8902 - components: - - pos: -41.5,-12.5 - parent: 1 - type: Transform - - uid: 9173 - components: - - pos: 32.5,-7.5 - parent: 1 - type: Transform - - uid: 9247 - components: - - pos: 37.5,35.5 - parent: 1 - type: Transform - - uid: 9248 - components: - - pos: 36.5,35.5 - parent: 1 - type: Transform - - uid: 9345 - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform - - uid: 9346 - components: - - pos: -4.5,17.5 - parent: 1 - type: Transform - - uid: 9347 - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - uid: 9356 - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform - - uid: 9379 - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform - - uid: 9531 - components: - - pos: 41.5,17.5 - parent: 1 - type: Transform - - uid: 9534 - components: - - pos: 30.5,5.5 - parent: 1 - type: Transform - - uid: 9665 - components: - - pos: -31.5,25.5 - parent: 1 - type: Transform - - uid: 9668 - components: - - pos: -36.5,16.5 - parent: 1 - type: Transform - - uid: 9669 - components: - - pos: -29.5,6.5 - parent: 1 - type: Transform - - uid: 9672 - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - uid: 12536 - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetFireFilled - entities: - - uid: 4086 - components: - - pos: -5.5,27.5 - parent: 1 - type: Transform - - uid: 5056 - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - uid: 5564 - components: - - pos: 46.5,4.5 - parent: 1 - type: Transform - - uid: 6100 - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - uid: 6331 - components: - - pos: -19.5,-16.5 - parent: 1 - type: Transform - - uid: 7239 - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform - - uid: 7530 - components: - - pos: -39.5,5.5 - parent: 1 - type: Transform - - uid: 8837 - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform - - uid: 8838 - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform - - uid: 8842 - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform - - uid: 8843 - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform - - uid: 8846 - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform - - uid: 8850 - components: - - pos: 43.5,-1.5 - parent: 1 - type: Transform - - uid: 9174 - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform - - uid: 9249 - components: - - pos: 35.5,35.5 - parent: 1 - type: Transform - - uid: 9348 - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - uid: 9380 - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform - - uid: 9532 - components: - - pos: 42.5,17.5 - parent: 1 - type: Transform - - uid: 9533 - components: - - pos: 30.5,6.5 - parent: 1 - type: Transform - - uid: 9574 - components: - - pos: 46.5,23.5 - parent: 1 - type: Transform - - uid: 9666 - components: - - pos: -31.5,24.5 - parent: 1 - type: Transform - - uid: 9667 - components: - - pos: -36.5,15.5 - parent: 1 - type: Transform - - uid: 9670 - components: - - pos: -29.5,7.5 - parent: 1 - type: Transform - - uid: 9671 - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform - - uid: 12537 - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform -- proto: ClosetJanitorFilled - entities: - - uid: 7659 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14972 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7660 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3JanitorFilled - entities: - - uid: 7662 - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 3057 - - 3056 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: ClosetL3VirologyFilled - entities: - - uid: 5694 - components: - - pos: -17.5,20.5 - parent: 1 - type: Transform - - uid: 5695 - components: - - pos: -17.5,19.5 - parent: 1 - type: Transform -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 8851 - components: - - pos: -24.5,-11.5 - parent: 1 - type: Transform - - uid: 8854 - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - uid: 8855 - components: - - pos: -35.5,-19.5 - parent: 1 - type: Transform - - uid: 8856 - components: - - pos: -17.5,-20.5 - parent: 1 - type: Transform - - uid: 8857 - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform - - uid: 8861 - components: - - pos: -33.5,-12.5 - parent: 1 - type: Transform - - uid: 8871 - components: - - pos: -36.5,-19.5 - parent: 1 - type: Transform - - uid: 8890 - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform - - uid: 9131 - components: - - pos: 7.5,-12.5 - parent: 1 - type: Transform - - uid: 9133 - components: - - pos: 14.5,-15.5 - parent: 1 - type: Transform - - uid: 9161 - components: - - pos: 40.5,-1.5 - parent: 1 - type: Transform - - uid: 9172 - components: - - pos: 32.5,-8.5 - parent: 1 - type: Transform - - uid: 9179 - components: - - pos: 23.5,-0.5 - parent: 1 - type: Transform - - uid: 9242 - components: - - pos: 29.5,32.5 - parent: 1 - type: Transform - - uid: 9253 - components: - - pos: 35.5,32.5 - parent: 1 - type: Transform - - uid: 9349 - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform - - uid: 9353 - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform - - uid: 9357 - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform - - uid: 9364 - components: - - pos: 21.5,28.5 - parent: 1 - type: Transform - - uid: 9381 - components: - - pos: 25.5,21.5 - parent: 1 - type: Transform - - uid: 9530 - components: - - pos: 40.5,17.5 - parent: 1 - type: Transform - - uid: 9673 - components: - - pos: -36.5,17.5 - parent: 1 - type: Transform - - uid: 9674 - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform - - uid: 9675 - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform - - uid: 9676 - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform - - uid: 9677 - components: - - pos: -19.5,29.5 - parent: 1 - type: Transform - - uid: 9678 - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform - - uid: 9707 - components: - - pos: -7.5,24.5 - parent: 1 - type: Transform - - uid: 9734 - components: - - pos: -34.5,21.5 - parent: 1 - type: Transform -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6099 - components: - - pos: -27.5,-7.5 - parent: 1 - type: Transform - - uid: 6332 - components: - - pos: -18.5,-16.5 - parent: 1 - type: Transform - - uid: 9679 - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform -- proto: ClosetToolFilled - entities: - - uid: 662 - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform - - uid: 8852 - components: - - pos: -33.5,-13.5 - parent: 1 - type: Transform - - uid: 9137 - components: - - pos: 28.5,-13.5 - parent: 1 - type: Transform - - uid: 9171 - components: - - pos: 41.5,-1.5 - parent: 1 - type: Transform -- proto: ClothingBackpackClown - entities: - - uid: 7791 - components: - - pos: -9.479882,-29.613472 - parent: 1 - type: Transform -- proto: ClothingBeltChampion - entities: - - uid: 4133 - components: - - pos: -2.0726793,23.701418 - parent: 1 - type: Transform -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 9624 - components: - - pos: 16.498451,25.579258 - parent: 1 - type: Transform -- proto: ClothingBeltUtilityFilled - entities: - - uid: 6028 - components: - - pos: -17.427578,-2.5386095 - parent: 1 - type: Transform - - uid: 8222 - components: - - pos: -3.2247663,-20.380867 - parent: 1 - type: Transform -- proto: ClothingEyesEyepatch - entities: - - uid: 9493 - components: - - pos: 17.334412,33.640858 - parent: 1 - type: Transform - - uid: 9494 - components: - - pos: 17.537537,33.500233 - parent: 1 - type: Transform -- proto: ClothingEyesGlasses - entities: - - uid: 5887 - components: - - pos: -17.56469,5.4986477 - parent: 1 - type: Transform - - uid: 6051 - components: - - pos: -16.578178,-4.4178576 - parent: 1 - type: Transform - - uid: 6052 - components: - - pos: -16.593803,-4.1209826 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 8820 - components: - - pos: -43.5167,-17.531178 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 8821 - components: - - pos: -40.42295,-17.562428 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 8822 - components: - - pos: -43.532326,-20.546803 - parent: 1 - type: Transform - - uid: 8823 - components: - - pos: -40.469826,-20.531178 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 9319 - components: - - pos: 12.551676,20.51373 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesColorPurple - entities: - - uid: 3056 - components: - - flags: InContainer - type: MetaData - - parent: 7662 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 3057 - components: - - flags: InContainer - type: MetaData - - parent: 7662 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 8230 - components: - - pos: -2.3917544,-20.443367 - parent: 1 - type: Transform - - uid: 9521 - components: - - pos: -4.5182076,-31.477982 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesCombat - entities: - - uid: 7138 - components: - - pos: 33.449986,-18.355843 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesLatex - entities: - - uid: 5348 - components: - - pos: 23.541037,5.5013475 - parent: 1 - type: Transform - - uid: 9644 - components: - - pos: -25.418951,24.343168 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 5874 - components: - - pos: -22.4964,13.596224 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 12284 - components: - - pos: 46.50932,-1.5721288 - parent: 1 - type: Transform -- proto: ClothingHandsGlovesRobohands - entities: - - uid: 6074 - components: - - pos: -9.486496,-13.051972 - parent: 1 - type: Transform -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 9326 - components: - - pos: -13.503023,28.53958 - parent: 1 - type: Transform -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 12535 - components: - - pos: -21.389526,-28.408783 - parent: 1 - type: Transform -- proto: ClothingHeadHatHairflower - entities: - - uid: 4135 - components: - - pos: -3.6820545,23.685793 - parent: 1 - type: Transform -- proto: ClothingHeadHatHoodCulthood - entities: - - uid: 8797 - components: - - pos: -39.669212,-24.282705 - parent: 1 - type: Transform - - uid: 8798 - components: - - pos: -39.466087,-24.282705 - parent: 1 - type: Transform -- proto: ClothingHeadHatPirate - entities: - - uid: 9489 - components: - - pos: 16.834412,33.453358 - parent: 1 - type: Transform - - uid: 9490 - components: - - pos: 16.725037,33.656483 - parent: 1 - type: Transform -- proto: ClothingHeadHatRichard - entities: - - uid: 12539 - components: - - pos: -18.568806,-30.46414 - parent: 1 - type: Transform -- proto: ClothingHeadHatWelding - entities: - - uid: 8908 - components: - - pos: -38.506927,-17.413034 - parent: 1 - type: Transform -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 9328 - components: - - pos: -14.628023,27.492704 - parent: 1 - type: Transform -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 9327 - components: - - pos: -14.268648,27.648954 - parent: 1 - type: Transform -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 9718 - components: - - pos: -23.488003,26.56069 - parent: 1 - type: Transform -- proto: ClothingHeadHatWitch1 - entities: - - uid: 7546 - components: - - pos: -35.132103,11.605273 - parent: 1 - type: Transform - - uid: 8280 - components: - - pos: -24.502247,-20.155039 - parent: 1 - type: Transform -- proto: ClothingMaskClown - entities: - - uid: 7790 - components: - - pos: -9.354882,-29.035347 - parent: 1 - type: Transform -- proto: ClothingMaskGasCentcom - entities: - - uid: 9014 - components: - - pos: -22.500423,-8.478397 - parent: 1 - type: Transform -- proto: ClothingMaskGasSecurity - entities: - - uid: 9321 - components: - - pos: 12.497511,21.52373 - parent: 1 - type: Transform -- proto: ClothingMaskSterile - entities: - - uid: 5349 - components: - - pos: 23.509787,5.6575975 - parent: 1 - type: Transform - - uid: 9645 - components: - - pos: -25.575201,24.655668 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCap - entities: - - uid: 6397 - components: - - pos: 4.585783,31.487268 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCE - entities: - - uid: 5675 - components: - - pos: 18.495747,-13.358288 - parent: 1 - type: Transform -- proto: ClothingNeckMantleCMO - entities: - - uid: 1869 - components: - - pos: -20.496048,14.567978 - parent: 1 - type: Transform -- proto: ClothingNeckMantleHOP - entities: - - uid: 5927 - components: - - flags: InContainer - type: MetaData - - parent: 4965 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckMantleRD - entities: - - uid: 1877 - components: - - pos: -22.452333,-1.4018333 - parent: 1 - type: Transform -- proto: ClothingNeckScarfStripedBlue - entities: - - uid: 5883 - components: - - pos: -20.521955,5.5536256 - parent: 1 - type: Transform -- proto: ClothingNeckStethoscope - entities: - - uid: 5889 - components: - - pos: -14.496586,5.5848756 - parent: 1 - type: Transform -- proto: ClothingNeckTieRed - entities: - - uid: 12534 - components: - - pos: -21.717651,-29.127533 - parent: 1 - type: Transform -- proto: ClothingOuterCoatBomber - entities: - - uid: 7807 - components: - - pos: -3.4980807,-28.439547 - parent: 1 - type: Transform -- proto: ClothingOuterCoatInspector - entities: - - uid: 12524 - components: - - pos: -21.321499,-29.42984 - parent: 1 - type: Transform -- proto: ClothingOuterCoatJensen - entities: - - uid: 9322 - components: - - pos: -24.505365,-15.407537 - parent: 1 - type: Transform -- proto: ClothingOuterCoatPirate - entities: - - uid: 9487 - components: - - pos: 14.396911,32.515858 - parent: 1 - type: Transform - - uid: 9488 - components: - - pos: 14.615661,32.578358 - parent: 1 - type: Transform -- proto: ClothingOuterRobesCult - entities: - - uid: 8799 - components: - - pos: -39.591087,-24.532705 - parent: 1 - type: Transform - - uid: 8800 - components: - - pos: -39.356712,-24.532705 - parent: 1 - type: Transform -- proto: ClothingOuterWinterCap - entities: - - uid: 5926 - components: - - flags: InContainer - type: MetaData - - parent: 4090 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterCE - entities: - - uid: 5670 - components: - - flags: InContainer - type: MetaData - - parent: 5669 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterCMO - entities: - - uid: 1868 - components: - - flags: InContainer - type: MetaData - - parent: 1867 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterHoP - entities: - - uid: 5928 - components: - - flags: InContainer - type: MetaData - - parent: 4965 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterHoS - entities: - - uid: 12478 - components: - - flags: InContainer - type: MetaData - - parent: 5374 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterQM - entities: - - uid: 7444 - components: - - flags: InContainer - type: MetaData - - parent: 7443 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterWinterRD - entities: - - uid: 12418 - components: - - flags: InContainer - type: MetaData - - parent: 1845 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingShoesBootsCombat - entities: - - uid: 8275 - components: - - desc: Robust pilot's boots for combat scenarios or combat situations. All combat, all the time. - name: pilot's boots - type: MetaData - - pos: -19.507818,-48.36427 - parent: 1 - type: Transform -- proto: ClothingShoesBootsJack - entities: - - uid: 9320 - components: - - pos: 14.338758,21.725782 - parent: 1 - type: Transform - - uid: 9497 - components: - - pos: 14.573133,21.522657 - parent: 1 - type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 4922 - components: - - pos: 39.41031,21.404913 - parent: 1 - type: Transform - - uid: 4928 - components: - - pos: 39.613434,21.529913 - parent: 1 - type: Transform - - uid: 7137 - components: - - pos: 31.59061,-16.652718 - parent: 1 - type: Transform -- proto: ClothingUniformColorRainbow - entities: - - uid: 8279 - components: - - pos: -24.486622,-20.530039 - parent: 1 - type: Transform -- proto: ClothingUniformJumpskirtOperative - entities: - - uid: 9622 - components: - - pos: 15.393528,25.548008 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 9623 - components: - - pos: 15.721653,25.376133 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitPirate - entities: - - uid: 9491 - components: - - pos: 14.350036,33.375233 - parent: 1 - type: Transform - - uid: 9492 - components: - - pos: 14.662536,33.531483 - parent: 1 - type: Transform -- proto: ClownRecorder - entities: - - uid: 8274 - components: - - pos: -9.689836,-28.97975 - parent: 1 - type: Transform -- proto: ComfyChair - entities: - - uid: 1711 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 1873 - components: - - rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 1 - type: Transform - - uid: 1876 - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform - - uid: 2866 - components: - - pos: -15.5,-53.5 - parent: 1 - type: Transform - - uid: 2867 - components: - - pos: -13.5,-53.5 - parent: 1 - type: Transform - - uid: 4304 - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform - - uid: 4911 - components: - - pos: 42.5,34.5 - parent: 1 - type: Transform - - uid: 5039 - components: - - rot: 3.141592653589793 rad - pos: 4.5,10.5 - parent: 1 - type: Transform - - uid: 5053 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,25.5 - parent: 1 - type: Transform - - uid: 5054 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - uid: 5377 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,13.5 - parent: 1 - type: Transform - - uid: 5573 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 1 - type: Transform - - uid: 5953 - components: - - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - - uid: 7712 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-29.5 - parent: 1 - type: Transform - - uid: 8232 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-29.5 - parent: 1 - type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 6123 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 1 - type: Transform -- proto: ComputerCargoBounty - entities: - - uid: 7247 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 1 - type: Transform -- proto: ComputerCargoOrders - entities: - - uid: 4919 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 1 - type: Transform - - uid: 7395 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 1 - type: Transform -- proto: ComputerCargoShuttle - entities: - - uid: 4918 - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- proto: ComputerComms - entities: - - uid: 4076 - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform - - uid: 4097 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 1888 - components: - - rot: 3.141592653589793 rad - pos: -8.5,5.5 - parent: 1 - type: Transform - - uid: 4074 - components: - - pos: -4.5,31.5 - parent: 1 - type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 776 - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - uid: 5366 - components: - - pos: 25.5,14.5 - parent: 1 - type: Transform - - uid: 5370 - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform -- proto: ComputerFrame - entities: - - uid: 2685 - components: - - rot: 3.141592653589793 rad - pos: -4.5,48.5 - parent: 1 - type: Transform - - uid: 2752 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - uid: 2757 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,51.5 - parent: 1 - type: Transform - - uid: 2765 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,53.5 - parent: 1 - type: Transform - - uid: 5904 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 1 - type: Transform -- proto: ComputerId - entities: - - uid: 4070 - components: - - pos: -2.5,32.5 - parent: 1 - type: Transform - - uid: 4955 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 1 - type: Transform -- proto: ComputerMedicalRecords - entities: - - uid: 1871 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,13.5 - parent: 1 - type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 4072 - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform - - uid: 5415 - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform - - uid: 5668 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 1 - type: Transform -- proto: ComputerRadar - entities: - - uid: 7282 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 1 - type: Transform -- proto: ComputerResearchAndDevelopment - entities: - - uid: 3805 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - uid: 5365 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 5667 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 1 - type: Transform -- proto: ComputerShuttleCargo - entities: - - uid: 1723 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 1 - type: Transform -- proto: ComputerSolarControl - entities: - - uid: 2557 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,30.5 - parent: 1 - type: Transform - - uid: 2931 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-51.5 - parent: 1 - type: Transform - - uid: 4807 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-23.5 - parent: 1 - type: Transform - - uid: 6760 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 774 - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform - - uid: 4073 - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform - - uid: 4959 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - - uid: 5360 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,5.5 - parent: 1 - type: Transform -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 777 - components: - - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 1 - type: Transform - - uid: 3794 - components: - - pos: 1.5,55.5 - parent: 1 - type: Transform - - uid: 4071 - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform - - uid: 5313 - components: - - rot: 3.141592653589793 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - uid: 5363 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - type: Transform - - uid: 5369 - components: - - pos: 26.5,14.5 - parent: 1 - type: Transform -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 3822 - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform -- proto: ConveyorBelt - entities: - - uid: 1730 - components: - - pos: 10.5,-31.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1731 - components: - - pos: 10.5,-30.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1732 - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1733 - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1734 - components: - - pos: 10.5,-27.5 - parent: 1 - type: Transform - - links: - - 7429 - type: DeviceLinkSink - - uid: 1735 - components: - - pos: 14.5,-31.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1736 - components: - - pos: 14.5,-30.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1737 - components: - - pos: 14.5,-29.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1738 - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1739 - components: - - pos: 14.5,-27.5 - parent: 1 - type: Transform - - links: - - 7430 - type: DeviceLinkSink - - uid: 1740 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-23.5 - parent: 1 - type: Transform - - links: - - 7431 - type: DeviceLinkSink - - uid: 1741 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 1 - type: Transform - - links: - - 7431 - type: DeviceLinkSink - - uid: 1742 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 1 - type: Transform - - links: - - 7431 - type: DeviceLinkSink - - uid: 3563 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3564 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3565 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,25.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3566 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,25.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3567 - components: - - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3568 - components: - - rot: 3.141592653589793 rad - pos: -33.5,23.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink - - uid: 3569 - components: - - rot: 3.141592653589793 rad - pos: -33.5,22.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink -- proto: CowToolboxFilled - entities: - - uid: 12285 - components: - - pos: 47.516796,-12.569088 - parent: 1 - type: Transform -- proto: CrateArtifactContainer - entities: - - uid: 3823 - components: - - pos: -14.5,-18.5 - parent: 1 - type: Transform - - uid: 6327 - components: - - pos: -15.5,-18.5 - parent: 1 - type: Transform -- proto: CrateEmptySpawner - entities: - - uid: 1529 - components: - - pos: 21.5,-26.5 - parent: 1 - type: Transform - - uid: 7427 - components: - - pos: 16.5,-26.5 - parent: 1 - type: Transform - - uid: 7428 - components: - - pos: 17.5,-27.5 - parent: 1 - type: Transform - - uid: 9365 - components: - - pos: 21.5,29.5 - parent: 1 - type: Transform - - uid: 9374 - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform - - uid: 9548 - components: - - pos: 36.5,5.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEJar - entities: - - uid: 6773 - components: - - pos: 29.5,-8.5 - parent: 1 - type: Transform -- proto: CrateEngineeringAMEShielding - entities: - - uid: 6774 - components: - - pos: 29.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6775 - - 6776 - - 6777 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: CrateEngineeringCableBulk - entities: - - uid: 1136 - components: - - pos: 18.5,-3.5 - parent: 1 - type: Transform - - uid: 2524 - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform -- proto: CrateEngineeringCableHV - entities: - - uid: 2556 - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform -- proto: CrateFilledSpawner - entities: - - uid: 1512 - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform - - uid: 7285 - components: - - pos: 20.5,-27.5 - parent: 1 - type: Transform - - uid: 7296 - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - uid: 8284 - components: - - pos: -23.5,-24.5 - parent: 1 - type: Transform - - uid: 8824 - components: - - pos: -25.5,-25.5 - parent: 1 - type: Transform - - uid: 9245 - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform - - uid: 9685 - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform -- proto: CrateFreezer - entities: - - uid: 5911 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 6008 - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform -- proto: CrateMedicalSurgery - entities: - - uid: 5520 - components: - - pos: -22.5,24.5 - parent: 1 - type: Transform -- proto: CrateNPCCow - entities: - - uid: 5971 - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform - - open: True - removedMasks: 28 - type: EntityStorage - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - type: Fixtures - - isPlaceable: True - type: PlaceableSurface -- proto: CrateNPCHamlet - entities: - - uid: 7180 - components: - - pos: -3.5,30.5 - parent: 1 - type: Transform -- proto: CrateSecurityRiot - entities: - - uid: 8344 - components: - - pos: 23.5,14.5 - parent: 1 - type: Transform -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 7661 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform -- proto: CrayonBox - entities: - - uid: 6041 - components: - - pos: -9.510162,-31.109522 - parent: 1 - type: Transform -- proto: CrayonMime - entities: - - uid: 7787 - components: - - pos: -13.70612,-29.090147 - parent: 1 - type: Transform - - uid: 7788 - components: - - pos: -13.596745,-29.121397 - parent: 1 - type: Transform -- proto: Crematorium - entities: - - uid: 3477 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,15.5 - parent: 1 - type: Transform -- proto: CrewMonitoringServer - entities: - - uid: 3773 - components: - - pos: 1.5,49.5 - parent: 1 - type: Transform -- proto: CrewMonitoringServerMachineCircuitboard - entities: - - uid: 4007 - components: - - pos: -2.4571166,54.52544 - parent: 1 - type: Transform -- proto: CrowbarRed - entities: - - uid: 5601 - components: - - pos: -23.451687,5.4552503 - parent: 1 - type: Transform - - uid: 6336 - components: - - pos: -14.519168,-9.104249 - parent: 1 - type: Transform - - uid: 9580 - components: - - pos: 46.50183,2.500444 - parent: 1 - type: Transform - - uid: 9581 - components: - - pos: 46.673706,2.406694 - parent: 1 - type: Transform - - uid: 9582 - components: - - pos: 44.47058,20.50442 - parent: 1 - type: Transform - - uid: 9583 - components: - - pos: 44.673706,20.41067 - parent: 1 - type: Transform - - uid: 12526 - components: - - pos: -21.430874,-29.30484 - parent: 1 - type: Transform -- proto: CultAltarSpawner - entities: - - uid: 8760 - components: - - pos: -41.5,-23.5 - parent: 1 - type: Transform -- proto: d20Dice - entities: - - uid: 5591 - components: - - pos: -39.55801,-5.7503414 - parent: 1 - type: Transform -- proto: d8Dice - entities: - - uid: 5592 - components: - - pos: -40.636135,-6.3128414 - parent: 1 - type: Transform -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 7803 - components: - - pos: -11.479882,-31.566597 - parent: 1 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 328 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,16.5 - parent: 1 - type: Transform - - uid: 8372 - components: - - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 1 - type: Transform - - uid: 8373 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 9831 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,4.5 - parent: 1 - type: Transform - - uid: 12543 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - type: Transform - - uid: 12551 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 1 - type: Transform - - uid: 12552 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-27.5 - parent: 1 - type: Transform - - uid: 12554 - components: - - pos: -21.5,12.5 - parent: 1 - type: Transform - - uid: 12555 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 12556 - components: - - pos: 35.5,4.5 - parent: 1 - type: Transform - - uid: 12557 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 12558 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - uid: 12559 - components: - - rot: -1.5707963267948966 rad - pos: 47.5,23.5 - parent: 1 - type: Transform - - uid: 12561 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,25.5 - parent: 1 - type: Transform - - uid: 12607 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 1 - type: Transform -- proto: DeployableBarrier - entities: - - uid: 760 - components: - - anchored: False - pos: 22.5,10.5 - parent: 1 - type: Transform - - uid: 761 - components: - - anchored: False - pos: 22.5,12.5 - parent: 1 - type: Transform - - uid: 763 - components: - - anchored: False - pos: 23.5,12.5 - parent: 1 - type: Transform - - uid: 1842 - components: - - anchored: False - pos: 23.5,10.5 - parent: 1 - type: Transform -- proto: DeskBell - entities: - - uid: 5453 - components: - - pos: 13.386117,14.75304 - parent: 1 - type: Transform - - uid: 5454 - components: - - pos: 0.7052691,18.503328 - parent: 1 - type: Transform - - uid: 5455 - components: - - pos: -8.312405,12.452121 - parent: 1 - type: Transform - - uid: 5456 - components: - - pos: -8.23428,7.664645 - parent: 1 - type: Transform - - uid: 5457 - components: - - pos: -8.258537,-4.530675 - parent: 1 - type: Transform - - uid: 5458 - components: - - pos: -12.205997,12.431334 - parent: 1 - type: Transform - - uid: 8486 - components: - - pos: 12.719743,-9.462604 - parent: 1 - type: Transform - - uid: 8487 - components: - - pos: 3.1651187,7.7825413 - parent: 1 - type: Transform - - uid: 8488 - components: - - pos: 7.4230685,-21.500029 - parent: 1 - type: Transform - - uid: 8489 - components: - - pos: -36.9685,-2.2472436 - parent: 1 - type: Transform - - uid: 8494 - components: - - pos: 3.247385,4.510758 - parent: 1 - type: Transform - - uid: 8498 - components: - - pos: 3.278635,-0.52339196 - parent: 1 - type: Transform -- proto: DiceBag - entities: - - uid: 5590 - components: - - pos: -40.011135,-5.1565914 - parent: 1 - type: Transform -- proto: DiseaseDiagnoser - entities: - - uid: 5689 - components: - - pos: -15.5,21.5 - parent: 1 - type: Transform -- proto: DisposalBend - entities: - - uid: 2941 - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - uid: 3941 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - uid: 3942 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 1 - type: Transform - - uid: 3943 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,39.5 - parent: 1 - type: Transform - - uid: 3944 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,34.5 - parent: 1 - type: Transform - - uid: 3945 - components: - - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 1 - type: Transform - - uid: 3946 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,39.5 - parent: 1 - type: Transform - - uid: 3947 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,40.5 - parent: 1 - type: Transform - - uid: 3948 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,41.5 - parent: 1 - type: Transform - - uid: 3949 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,34.5 - parent: 1 - type: Transform - - uid: 3950 - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform - - uid: 4015 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,29.5 - parent: 1 - type: Transform - - uid: 4016 - components: - - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 1 - type: Transform - - uid: 4018 - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - uid: 4032 - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform - - uid: 5856 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-32.5 - parent: 1 - type: Transform - - uid: 6128 - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform - - uid: 6129 - components: - - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - uid: 6150 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 1 - type: Transform - - uid: 6151 - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 1 - type: Transform - - uid: 6152 - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 6167 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 6174 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 7175 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 1 - type: Transform - - uid: 7176 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 1 - type: Transform - - uid: 7177 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 1 - type: Transform - - uid: 7187 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 7188 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1 - type: Transform - - uid: 7189 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 1 - type: Transform - - uid: 9806 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,16.5 - parent: 1 - type: Transform - - uid: 9807 - components: - - rot: 3.141592653589793 rad - pos: -40.5,2.5 - parent: 1 - type: Transform - - uid: 9859 - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - uid: 9894 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform - - uid: 9895 - components: - - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - uid: 9898 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 9911 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 1 - type: Transform - - uid: 9926 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - uid: 9984 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,25.5 - parent: 1 - type: Transform - - uid: 9988 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,2.5 - parent: 1 - type: Transform - - uid: 10028 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 10029 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 1 - type: Transform - - uid: 10030 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-26.5 - parent: 1 - type: Transform - - uid: 10031 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-26.5 - parent: 1 - type: Transform - - uid: 10032 - components: - - pos: 5.5,-22.5 - parent: 1 - type: Transform - - uid: 10033 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1 - type: Transform - - uid: 10034 - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - uid: 10053 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 1 - type: Transform - - uid: 10066 - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - uid: 10067 - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - uid: 10068 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - uid: 12599 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 12600 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 1 - type: Transform - - uid: 12601 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-19.5 - parent: 1 - type: Transform - - uid: 12602 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-19.5 - parent: 1 - type: Transform - - uid: 12603 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-17.5 - parent: 1 - type: Transform - - uid: 12604 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 1 - type: Transform - - uid: 12605 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform - - uid: 12606 - components: - - pos: -30.5,-17.5 - parent: 1 - type: Transform -- proto: DisposalJunction - entities: - - uid: 4042 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 1 - type: Transform - - uid: 6130 - components: - - pos: -16.5,11.5 - parent: 1 - type: Transform - - uid: 6131 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - uid: 6172 - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - uid: 9886 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 1 - type: Transform - - uid: 9908 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 9987 - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform - - uid: 9989 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,2.5 - parent: 1 - type: Transform - - uid: 10059 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 1 - type: Transform - - uid: 10061 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-22.5 - parent: 1 - type: Transform - - uid: 10063 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 10088 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,15.5 - parent: 1 - type: Transform - - uid: 10089 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - type: Transform - - uid: 12465 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform - - uid: 12560 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,2.5 - parent: 1 - type: Transform -- proto: DisposalJunctionFlipped - entities: - - uid: 6173 - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - uid: 7179 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 1 - type: Transform - - uid: 9833 - components: - - rot: 3.141592653589793 rad - pos: -28.5,4.5 - parent: 1 - type: Transform - - uid: 9896 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - uid: 9897 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 9907 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 1 - type: Transform - - uid: 9910 - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform - - uid: 9990 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,2.5 - parent: 1 - type: Transform - - uid: 10060 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-22.5 - parent: 1 - type: Transform - - uid: 10062 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1 - type: Transform -- proto: DisposalPipe - entities: - - uid: 2203 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-18.5 - parent: 1 - type: Transform - - uid: 2252 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-32.5 - parent: 1 - type: Transform - - uid: 2954 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-47.5 - parent: 1 - type: Transform - - uid: 2955 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-46.5 - parent: 1 - type: Transform - - uid: 2956 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-45.5 - parent: 1 - type: Transform - - uid: 2957 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-44.5 - parent: 1 - type: Transform - - uid: 2958 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-43.5 - parent: 1 - type: Transform - - uid: 2959 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-42.5 - parent: 1 - type: Transform - - uid: 2960 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-41.5 - parent: 1 - type: Transform - - uid: 2961 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-40.5 - parent: 1 - type: Transform - - uid: 2962 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-39.5 - parent: 1 - type: Transform - - uid: 2963 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-38.5 - parent: 1 - type: Transform - - uid: 2964 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-37.5 - parent: 1 - type: Transform - - uid: 2965 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-36.5 - parent: 1 - type: Transform - - uid: 2966 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-35.5 - parent: 1 - type: Transform - - uid: 2967 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-34.5 - parent: 1 - type: Transform - - uid: 2968 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-33.5 - parent: 1 - type: Transform - - uid: 2972 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 1 - type: Transform - - uid: 2974 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-29.5 - parent: 1 - type: Transform - - uid: 2977 - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - uid: 2978 - components: - - pos: -26.5,-27.5 - parent: 1 - type: Transform - - uid: 2979 - components: - - pos: -26.5,-28.5 - parent: 1 - type: Transform - - uid: 2982 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-32.5 - parent: 1 - type: Transform - - uid: 3010 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 1 - type: Transform - - uid: 3011 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-32.5 - parent: 1 - type: Transform - - uid: 3013 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-31.5 - parent: 1 - type: Transform - - uid: 3014 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 1 - type: Transform - - uid: 3930 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,41.5 - parent: 1 - type: Transform - - uid: 3932 - components: - - pos: -13.5,33.5 - parent: 1 - type: Transform - - uid: 3933 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,34.5 - parent: 1 - type: Transform - - uid: 3934 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 1 - type: Transform - - uid: 3935 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,34.5 - parent: 1 - type: Transform - - uid: 3936 - components: - - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 1 - type: Transform - - uid: 3937 - components: - - rot: 3.141592653589793 rad - pos: -9.5,36.5 - parent: 1 - type: Transform - - uid: 3938 - components: - - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 1 - type: Transform - - uid: 3939 - components: - - pos: -6.5,42.5 - parent: 1 - type: Transform - - uid: 3951 - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 3952 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - uid: 4017 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - uid: 4019 - components: - - pos: -7.5,27.5 - parent: 1 - type: Transform - - uid: 4020 - components: - - pos: -7.5,28.5 - parent: 1 - type: Transform - - uid: 4021 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,29.5 - parent: 1 - type: Transform - - uid: 4022 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,29.5 - parent: 1 - type: Transform - - uid: 4023 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,29.5 - parent: 1 - type: Transform - - uid: 4024 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 4025 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,29.5 - parent: 1 - type: Transform - - uid: 4026 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - uid: 4027 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 4028 - components: - - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 1 - type: Transform - - uid: 4029 - components: - - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 1 - type: Transform - - uid: 4030 - components: - - rot: 3.141592653589793 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 4031 - components: - - rot: 3.141592653589793 rad - pos: 1.5,25.5 - parent: 1 - type: Transform - - uid: 4033 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - uid: 4034 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 4035 - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - uid: 4036 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - uid: 4037 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 4038 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - uid: 4039 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - uid: 4040 - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 4041 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - uid: 5346 - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - uid: 6132 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - uid: 6133 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - uid: 6134 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 6135 - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform - - uid: 6136 - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - uid: 6137 - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 6138 - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - uid: 6139 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - uid: 6140 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform - - uid: 6141 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - uid: 6142 - components: - - rot: 3.141592653589793 rad - pos: -12.5,8.5 - parent: 1 - type: Transform - - uid: 6143 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 - type: Transform - - uid: 6144 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 6145 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - uid: 6146 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 1 - type: Transform - - uid: 6147 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 6148 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,9.5 - parent: 1 - type: Transform - - uid: 6153 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 1 - type: Transform - - uid: 6154 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 1 - type: Transform - - uid: 6155 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 1 - type: Transform - - uid: 6156 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 1 - type: Transform - - uid: 6157 - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - uid: 6158 - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 6159 - components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - uid: 6160 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - uid: 6161 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 6162 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - uid: 6164 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - - uid: 6165 - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - uid: 6166 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 6168 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1 - type: Transform - - uid: 6169 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1 - type: Transform - - uid: 6170 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 6171 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform - - uid: 6176 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 6177 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 6178 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 6179 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 7155 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-16.5 - parent: 1 - type: Transform - - uid: 7156 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 7157 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 7158 - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform - - uid: 7159 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 7160 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 7161 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 7162 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - uid: 7163 - components: - - pos: -16.5,-8.5 - parent: 1 - type: Transform - - uid: 7164 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 7165 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - uid: 7166 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform - - uid: 7167 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 7168 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - uid: 7169 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 7170 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 7171 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 7172 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 7173 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 7174 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 7178 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 1 - type: Transform - - uid: 7190 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform - - uid: 7191 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 1 - type: Transform - - uid: 7192 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 1 - type: Transform - - uid: 7193 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 1 - type: Transform - - uid: 7194 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 1 - type: Transform - - uid: 7195 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 1 - type: Transform - - uid: 7196 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 1 - type: Transform - - uid: 7197 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform - - uid: 7198 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 7200 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 1 - type: Transform - - uid: 7201 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform - - uid: 7202 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 1 - type: Transform - - uid: 8329 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform - - uid: 9809 - components: - - rot: 3.141592653589793 rad - pos: -40.5,3.5 - parent: 1 - type: Transform - - uid: 9810 - components: - - rot: 3.141592653589793 rad - pos: -40.5,4.5 - parent: 1 - type: Transform - - uid: 9811 - components: - - rot: 3.141592653589793 rad - pos: -40.5,5.5 - parent: 1 - type: Transform - - uid: 9812 - components: - - rot: 3.141592653589793 rad - pos: -40.5,6.5 - parent: 1 - type: Transform - - uid: 9813 - components: - - rot: 3.141592653589793 rad - pos: -40.5,7.5 - parent: 1 - type: Transform - - uid: 9814 - components: - - rot: 3.141592653589793 rad - pos: -40.5,8.5 - parent: 1 - type: Transform - - uid: 9815 - components: - - rot: 3.141592653589793 rad - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 9816 - components: - - rot: 3.141592653589793 rad - pos: -40.5,10.5 - parent: 1 - type: Transform - - uid: 9817 - components: - - rot: 3.141592653589793 rad - pos: -40.5,11.5 - parent: 1 - type: Transform - - uid: 9818 - components: - - rot: 3.141592653589793 rad - pos: -40.5,12.5 - parent: 1 - type: Transform - - uid: 9819 - components: - - rot: 3.141592653589793 rad - pos: -40.5,13.5 - parent: 1 - type: Transform - - uid: 9820 - components: - - rot: 3.141592653589793 rad - pos: -40.5,14.5 - parent: 1 - type: Transform - - uid: 9821 - components: - - rot: 3.141592653589793 rad - pos: -40.5,15.5 - parent: 1 - type: Transform - - uid: 9822 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 1 - type: Transform - - uid: 9823 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 9824 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,2.5 - parent: 1 - type: Transform - - uid: 9825 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,2.5 - parent: 1 - type: Transform - - uid: 9826 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,2.5 - parent: 1 - type: Transform - - uid: 9827 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,2.5 - parent: 1 - type: Transform - - uid: 9828 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,2.5 - parent: 1 - type: Transform - - uid: 9829 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,2.5 - parent: 1 - type: Transform - - uid: 9830 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,2.5 - parent: 1 - type: Transform - - uid: 9832 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,2.5 - parent: 1 - type: Transform - - uid: 9836 - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - uid: 9837 - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform - - uid: 9838 - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform - - uid: 9839 - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - - uid: 9840 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 9841 - components: - - pos: -28.5,9.5 - parent: 1 - type: Transform - - uid: 9842 - components: - - pos: -28.5,10.5 - parent: 1 - type: Transform - - uid: 9843 - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform - - uid: 9844 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 9845 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - uid: 9846 - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform - - uid: 9847 - components: - - pos: -28.5,15.5 - parent: 1 - type: Transform - - uid: 9848 - components: - - pos: -28.5,16.5 - parent: 1 - type: Transform - - uid: 9849 - components: - - pos: -28.5,17.5 - parent: 1 - type: Transform - - uid: 9850 - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform - - uid: 9851 - components: - - pos: -28.5,19.5 - parent: 1 - type: Transform - - uid: 9852 - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 9853 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 9854 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 9855 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 1 - type: Transform - - uid: 9856 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - type: Transform - - uid: 9857 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 1 - type: Transform - - uid: 9860 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,2.5 - parent: 1 - type: Transform - - uid: 9861 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,2.5 - parent: 1 - type: Transform - - uid: 9862 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 1 - type: Transform - - uid: 9863 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 1 - type: Transform - - uid: 9864 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,2.5 - parent: 1 - type: Transform - - uid: 9865 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 1 - type: Transform - - uid: 9866 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 1 - type: Transform - - uid: 9867 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,2.5 - parent: 1 - type: Transform - - uid: 9868 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 9869 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,2.5 - parent: 1 - type: Transform - - uid: 9870 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 1 - type: Transform - - uid: 9871 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,2.5 - parent: 1 - type: Transform - - uid: 9872 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 1 - type: Transform - - uid: 9873 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 1 - type: Transform - - uid: 9874 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - uid: 9875 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 1 - type: Transform - - uid: 9876 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 9877 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,2.5 - parent: 1 - type: Transform - - uid: 9878 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - uid: 9879 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - uid: 9880 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 9881 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 9882 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - uid: 9883 - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - uid: 9884 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - uid: 9885 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - uid: 9887 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - uid: 9888 - components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 1 - type: Transform - - uid: 9889 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 9890 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 9891 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - uid: 9892 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 9893 - components: - - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 9899 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 9900 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 9901 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 9902 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 9903 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 1 - type: Transform - - uid: 9904 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 1 - type: Transform - - uid: 9905 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 1 - type: Transform - - uid: 9906 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 9912 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 9913 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 9914 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 1 - type: Transform - - uid: 9915 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 9916 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 9917 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform - - uid: 9918 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 1 - type: Transform - - uid: 9919 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 1 - type: Transform - - uid: 9920 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 1 - type: Transform - - uid: 9921 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-2.5 - parent: 1 - type: Transform - - uid: 9922 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-1.5 - parent: 1 - type: Transform - - uid: 9923 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform - - uid: 9924 - components: - - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 9925 - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - uid: 9927 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform - - uid: 9928 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 9929 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - type: Transform - - uid: 9930 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 1 - type: Transform - - uid: 9931 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 9932 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 1 - type: Transform - - uid: 9933 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,2.5 - parent: 1 - type: Transform - - uid: 9934 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,2.5 - parent: 1 - type: Transform - - uid: 9935 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 1 - type: Transform - - uid: 9936 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,2.5 - parent: 1 - type: Transform - - uid: 9937 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 1 - type: Transform - - uid: 9938 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,2.5 - parent: 1 - type: Transform - - uid: 9939 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,2.5 - parent: 1 - type: Transform - - uid: 9940 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 1 - type: Transform - - uid: 9941 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 9942 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 9943 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 1 - type: Transform - - uid: 9944 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 1 - type: Transform - - uid: 9945 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 1 - type: Transform - - uid: 9946 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 1 - type: Transform - - uid: 9947 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 9948 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 1 - type: Transform - - uid: 9949 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - type: Transform - - uid: 9950 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 1 - type: Transform - - uid: 9951 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 1 - type: Transform - - uid: 9952 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 1 - type: Transform - - uid: 9953 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 - type: Transform - - uid: 9954 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - type: Transform - - uid: 9955 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 9956 - components: - - pos: 38.5,3.5 - parent: 1 - type: Transform - - uid: 9957 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,2.5 - parent: 1 - type: Transform - - uid: 9958 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,2.5 - parent: 1 - type: Transform - - uid: 9959 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,2.5 - parent: 1 - type: Transform - - uid: 9960 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,2.5 - parent: 1 - type: Transform - - uid: 9961 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 9962 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,2.5 - parent: 1 - type: Transform - - uid: 9963 - components: - - rot: 3.141592653589793 rad - pos: 45.5,3.5 - parent: 1 - type: Transform - - uid: 9964 - components: - - rot: 3.141592653589793 rad - pos: 45.5,4.5 - parent: 1 - type: Transform - - uid: 9965 - components: - - rot: 3.141592653589793 rad - pos: 45.5,5.5 - parent: 1 - type: Transform - - uid: 9966 - components: - - rot: 3.141592653589793 rad - pos: 45.5,6.5 - parent: 1 - type: Transform - - uid: 9967 - components: - - rot: 3.141592653589793 rad - pos: 45.5,7.5 - parent: 1 - type: Transform - - uid: 9968 - components: - - rot: 3.141592653589793 rad - pos: 45.5,8.5 - parent: 1 - type: Transform - - uid: 9969 - components: - - rot: 3.141592653589793 rad - pos: 45.5,9.5 - parent: 1 - type: Transform - - uid: 9970 - components: - - rot: 3.141592653589793 rad - pos: 45.5,10.5 - parent: 1 - type: Transform - - uid: 9971 - components: - - rot: 3.141592653589793 rad - pos: 45.5,11.5 - parent: 1 - type: Transform - - uid: 9972 - components: - - rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 9973 - components: - - rot: 3.141592653589793 rad - pos: 45.5,14.5 - parent: 1 - type: Transform - - uid: 9974 - components: - - rot: 3.141592653589793 rad - pos: 45.5,15.5 - parent: 1 - type: Transform - - uid: 9975 - components: - - rot: 3.141592653589793 rad - pos: 45.5,16.5 - parent: 1 - type: Transform - - uid: 9976 - components: - - rot: 3.141592653589793 rad - pos: 45.5,17.5 - parent: 1 - type: Transform - - uid: 9977 - components: - - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 1 - type: Transform - - uid: 9978 - components: - - rot: 3.141592653589793 rad - pos: 45.5,19.5 - parent: 1 - type: Transform - - uid: 9979 - components: - - rot: 3.141592653589793 rad - pos: 45.5,20.5 - parent: 1 - type: Transform - - uid: 9980 - components: - - rot: 3.141592653589793 rad - pos: 45.5,21.5 - parent: 1 - type: Transform - - uid: 9981 - components: - - rot: 3.141592653589793 rad - pos: 45.5,22.5 - parent: 1 - type: Transform - - uid: 9982 - components: - - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 1 - type: Transform - - uid: 9983 - components: - - rot: 3.141592653589793 rad - pos: 45.5,24.5 - parent: 1 - type: Transform - - uid: 9992 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 9993 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 9994 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 9995 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 1 - type: Transform - - uid: 9996 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 1 - type: Transform - - uid: 9997 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 1 - type: Transform - - uid: 9998 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 9999 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-17.5 - parent: 1 - type: Transform - - uid: 10000 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 10001 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-19.5 - parent: 1 - type: Transform - - uid: 10002 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 1 - type: Transform - - uid: 10003 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-21.5 - parent: 1 - type: Transform - - uid: 10004 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 1 - type: Transform - - uid: 10005 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 1 - type: Transform - - uid: 10006 - components: - - pos: 5.5,-23.5 - parent: 1 - type: Transform - - uid: 10007 - components: - - pos: 5.5,-24.5 - parent: 1 - type: Transform - - uid: 10008 - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform - - uid: 10009 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 1 - type: Transform - - uid: 10010 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 10011 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 1 - type: Transform - - uid: 10012 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 1 - type: Transform - - uid: 10013 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 1 - type: Transform - - uid: 10014 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 1 - type: Transform - - uid: 10015 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 1 - type: Transform - - uid: 10016 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 1 - type: Transform - - uid: 10017 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 1 - type: Transform - - uid: 10018 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-25.5 - parent: 1 - type: Transform - - uid: 10019 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 1 - type: Transform - - uid: 10020 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-23.5 - parent: 1 - type: Transform - - uid: 10021 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-22.5 - parent: 1 - type: Transform - - uid: 10022 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 1 - type: Transform - - uid: 10023 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 10024 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 1 - type: Transform - - uid: 10025 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 1 - type: Transform - - uid: 10026 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1 - type: Transform - - uid: 10027 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 1 - type: Transform - - uid: 10035 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 1 - type: Transform - - uid: 10036 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 1 - type: Transform - - uid: 10037 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-25.5 - parent: 1 - type: Transform - - uid: 10038 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 1 - type: Transform - - uid: 10039 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - uid: 10040 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 1 - type: Transform - - uid: 10041 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 1 - type: Transform - - uid: 10042 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 10043 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 1 - type: Transform - - uid: 10044 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 1 - type: Transform - - uid: 10045 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - type: Transform - - uid: 10046 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 1 - type: Transform - - uid: 10047 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 10048 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 1 - type: Transform - - uid: 10049 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 1 - type: Transform - - uid: 10050 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-23.5 - parent: 1 - type: Transform - - uid: 10051 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 10052 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - uid: 10064 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 1 - type: Transform - - uid: 10069 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - type: Transform - - uid: 10070 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 10071 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 1 - type: Transform - - uid: 10072 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - type: Transform - - uid: 10073 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - type: Transform - - uid: 10074 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 - type: Transform - - uid: 10075 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - type: Transform - - uid: 10076 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - type: Transform - - uid: 10077 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - uid: 10078 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - type: Transform - - uid: 10079 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - type: Transform - - uid: 10080 - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - uid: 10081 - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - uid: 10082 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 10083 - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - uid: 10084 - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 10085 - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform - - uid: 10086 - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform - - uid: 12466 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-5.5 - parent: 1 - type: Transform - - uid: 12467 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 1 - type: Transform - - uid: 12512 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 1 - type: Transform - - uid: 12513 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 1 - type: Transform - - uid: 12514 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 1 - type: Transform - - uid: 12515 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1 - type: Transform - - uid: 12569 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-19.5 - parent: 1 - type: Transform - - uid: 12570 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 1 - type: Transform - - uid: 12571 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-19.5 - parent: 1 - type: Transform - - uid: 12572 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-19.5 - parent: 1 - type: Transform - - uid: 12573 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-19.5 - parent: 1 - type: Transform - - uid: 12574 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-19.5 - parent: 1 - type: Transform - - uid: 12575 - components: - - pos: -37.5,-18.5 - parent: 1 - type: Transform - - uid: 12576 - components: - - pos: -37.5,-17.5 - parent: 1 - type: Transform - - uid: 12577 - components: - - pos: -37.5,-16.5 - parent: 1 - type: Transform - - uid: 12578 - components: - - pos: -37.5,-15.5 - parent: 1 - type: Transform - - uid: 12579 - components: - - pos: -37.5,-14.5 - parent: 1 - type: Transform - - uid: 12580 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 1 - type: Transform - - uid: 12581 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-13.5 - parent: 1 - type: Transform - - uid: 12582 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform - - uid: 12583 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 1 - type: Transform - - uid: 12584 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-11.5 - parent: 1 - type: Transform - - uid: 12585 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-10.5 - parent: 1 - type: Transform - - uid: 12586 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-9.5 - parent: 1 - type: Transform - - uid: 12587 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 12588 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-7.5 - parent: 1 - type: Transform - - uid: 12589 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 12590 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-5.5 - parent: 1 - type: Transform - - uid: 12591 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform - - uid: 12592 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 12593 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 1 - type: Transform - - uid: 12594 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 12595 - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform - - uid: 12596 - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - uid: 12597 - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform - - uid: 12598 - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform -- proto: DisposalTrunk - entities: - - uid: 2953 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-48.5 - parent: 1 - type: Transform - - uid: 2975 - components: - - pos: -26.5,-25.5 - parent: 1 - type: Transform - - uid: 3929 - components: - - rot: 3.141592653589793 rad - pos: -13.5,31.5 - parent: 1 - type: Transform - - uid: 3953 - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform - - uid: 4043 - components: - - rot: 3.141592653589793 rad - pos: -7.5,26.5 - parent: 1 - type: Transform - - uid: 4044 - components: - - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 6098 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 6125 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 1 - type: Transform - - uid: 6126 - components: - - rot: 3.141592653589793 rad - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 6127 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,18.5 - parent: 1 - type: Transform - - uid: 6149 - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - uid: 6163 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 6175 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 7154 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 1 - type: Transform - - uid: 7185 - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - - uid: 9834 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,16.5 - parent: 1 - type: Transform - - uid: 9835 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 1 - type: Transform - - uid: 9858 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,22.5 - parent: 1 - type: Transform - - uid: 9909 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 9985 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,25.5 - parent: 1 - type: Transform - - uid: 9986 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,13.5 - parent: 1 - type: Transform - - uid: 9991 - components: - - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 1 - type: Transform - - uid: 10054 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-26.5 - parent: 1 - type: Transform - - uid: 10055 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 1 - type: Transform - - uid: 10056 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-23.5 - parent: 1 - type: Transform - - uid: 10057 - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform - - uid: 10058 - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform - - uid: 10065 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 1 - type: Transform - - uid: 10087 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - uid: 12464 - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - uid: 12562 - components: - - pos: -32.5,-15.5 - parent: 1 - type: Transform -- proto: DisposalUnit - entities: - - uid: 1007 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 1838 - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - uid: 1892 - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - uid: 1903 - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform - - uid: 1995 - components: - - pos: -39.5,16.5 - parent: 1 - type: Transform - - uid: 2952 - components: - - pos: -16.5,-48.5 - parent: 1 - type: Transform - - uid: 3819 - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform - - uid: 3824 - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - uid: 3825 - components: - - pos: -13.5,31.5 - parent: 1 - type: Transform - - uid: 3826 - components: - - pos: -7.5,26.5 - parent: 1 - type: Transform - - uid: 3827 - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - uid: 3829 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 3830 - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform - - uid: 3831 - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - uid: 3832 - components: - - pos: -29.5,4.5 - parent: 1 - type: Transform - - uid: 3834 - components: - - pos: 38.5,4.5 - parent: 1 - type: Transform - - uid: 3837 - components: - - pos: -5.5,-22.5 - parent: 1 - type: Transform - - uid: 3838 - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform - - uid: 3839 - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform - - uid: 3841 - components: - - pos: -13.5,-26.5 - parent: 1 - type: Transform - - uid: 3842 - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform - - uid: 3843 - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform - - uid: 3844 - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform - - uid: 3845 - components: - - pos: 44.5,13.5 - parent: 1 - type: Transform - - uid: 3846 - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform - - uid: 3848 - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform - - uid: 4855 - components: - - pos: 46.5,25.5 - parent: 1 - type: Transform - - uid: 5021 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - uid: 6326 - components: - - pos: -14.5,-16.5 - parent: 1 - type: Transform - - uid: 7186 - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - - uid: 8343 - components: - - pos: -32.5,-15.5 - parent: 1 - type: Transform -- proto: DisposalYJunction - entities: - - uid: 9808 - components: - - rot: 3.141592653589793 rad - pos: -28.5,2.5 - parent: 1 - type: Transform -- proto: DogBed - entities: - - uid: 4960 - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform - - uid: 4971 - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform -- proto: Drill - entities: - - uid: 9639 - components: - - pos: -26.392878,20.608793 - parent: 1 - type: Transform -- proto: DrinkBottleWine - entities: - - uid: 7543 - components: - - pos: -33.460228,11.714648 - parent: 1 - type: Transform -- proto: DrinkChangelingStingCan - entities: - - uid: 12287 - components: - - pos: -11.69306,-33.29647 - parent: 1 - type: Transform -- proto: DrinkDetFlask - entities: - - uid: 12525 - components: - - pos: -21.680874,-28.320465 - parent: 1 - type: Transform -- proto: DrinkGlass - entities: - - uid: 5976 - components: - - pos: 0.57151127,7.5559425 - parent: 1 - type: Transform - - uid: 5977 - components: - - pos: 0.22776127,7.7278175 - parent: 1 - type: Transform - - uid: 5978 - components: - - pos: 1.4777613,7.7434425 - parent: 1 - type: Transform - - uid: 8267 - components: - - pos: -14.259693,-53.493797 - parent: 1 - type: Transform - - uid: 8268 - components: - - pos: -15.197193,-48.228172 - parent: 1 - type: Transform - - uid: 8269 - components: - - pos: -15.056568,-48.478172 - parent: 1 - type: Transform - - uid: 8277 - components: - - pos: -14.712818,-53.400047 - parent: 1 - type: Transform - - uid: 8309 - components: - - pos: -29.313759,-12.206892 - parent: 1 - type: Transform - - uid: 8310 - components: - - pos: -29.454384,-12.456892 - parent: 1 - type: Transform -- proto: DrinkGlassCoupeShaped - entities: - - uid: 5979 - components: - - pos: 1.8058863,7.6653175 - parent: 1 - type: Transform - - uid: 7544 - components: - - pos: -33.897728,11.652148 - parent: 1 - type: Transform - - uid: 7545 - components: - - pos: -34.319603,11.730273 - parent: 1 - type: Transform -- proto: DrinkGoldenCup - entities: - - uid: 4129 - components: - - pos: -1.434155,24.205725 - parent: 1 - type: Transform -- proto: DrinkMilkCarton - entities: - - uid: 6014 - components: - - pos: 0.5749459,1.7185974 - parent: 1 - type: Transform -- proto: DrinkMugBlack - entities: - - uid: 4913 - components: - - pos: 40.67775,25.53639 - parent: 1 - type: Transform -- proto: DrinkMugBlue - entities: - - uid: 4915 - components: - - pos: 40.318375,25.458265 - parent: 1 - type: Transform -- proto: DrinkMugRed - entities: - - uid: 4914 - components: - - pos: 40.380875,25.75514 - parent: 1 - type: Transform -- proto: DrinkShaker - entities: - - uid: 5975 - components: - - pos: 1.0246363,7.6965675 - parent: 1 - type: Transform - - uid: 8264 - components: - - pos: -15.603443,-48.431297 - parent: 1 - type: Transform - - uid: 8276 - components: - - pos: -14.415943,-53.165672 - parent: 1 - type: Transform - - uid: 8308 - components: - - pos: -29.766884,-12.316267 - parent: 1 - type: Transform -- proto: DrinkVacuumFlask - entities: - - uid: 12354 - components: - - pos: 5.53118,46.361736 - parent: 1 - type: Transform - - solutions: - drink: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 30 - reagents: - - Quantity: 30 - ReagentId: LongIslandIcedTea - type: SolutionContainerManager -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 5357 - components: - - flags: InContainer - type: MetaData - - parent: 5356 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Dropper - entities: - - uid: 6088 - components: - - pos: -28.506477,-7.2309704 - parent: 1 - type: Transform - - uid: 6089 - components: - - pos: -28.412727,-7.5278454 - parent: 1 - type: Transform -- proto: ElectricGuitarInstrument - entities: - - uid: 7804 - components: - - pos: -13.014593,-31.488472 - parent: 1 - type: Transform -- proto: EmergencyLight - entities: - - uid: 5524 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5525 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5526 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5527 - components: - - rot: 3.141592653589793 rad - pos: -2.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5528 - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5529 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5530 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5531 - components: - - rot: 3.141592653589793 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5532 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5533 - components: - - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 5534 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 6606 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 6607 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12362 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12363 - components: - - rot: 3.141592653589793 rad - pos: 35.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12364 - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12365 - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12366 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12367 - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12369 - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12370 - components: - - pos: 22.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12371 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12372 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12373 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12374 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12375 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12376 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12377 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12378 - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12379 - components: - - rot: 3.141592653589793 rad - pos: -12.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12380 - components: - - rot: 3.141592653589793 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12381 - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12382 - components: - - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12383 - components: - - rot: 3.141592653589793 rad - pos: -18.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12384 - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12385 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12386 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12387 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12388 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12389 - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12390 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12391 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12392 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12393 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12394 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12395 - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12396 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12397 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12398 - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12399 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12400 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12401 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight - - uid: 12454 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- proto: EmergencyMedipen - entities: - - uid: 1925 - components: - - pos: -22.134233,11.75826 - parent: 1 - type: Transform - - uid: 7681 - components: - - pos: -22.212358,11.492635 - parent: 1 - type: Transform -- proto: EmergencyRollerBed - entities: - - uid: 5862 - components: - - pos: -14.510358,11.588304 - parent: 1 - type: Transform - - uid: 5863 - components: - - pos: -13.494733,11.588304 - parent: 1 - type: Transform -- proto: EncryptionKeyCargo - entities: - - uid: 3778 - components: - - flags: InContainer - type: MetaData - - parent: 3777 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommand - entities: - - uid: 3780 - components: - - flags: InContainer - type: MetaData - - parent: 3779 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyCommon - entities: - - uid: 3783 - components: - - flags: InContainer - type: MetaData - - parent: 3782 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyEngineering - entities: - - uid: 3785 - components: - - flags: InContainer - type: MetaData - - parent: 3784 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyMedical - entities: - - uid: 3772 - components: - - flags: InContainer - type: MetaData - - parent: 3771 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyScience - entities: - - uid: 3790 - components: - - flags: InContainer - type: MetaData - - parent: 3789 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeySecurity - entities: - - uid: 3793 - components: - - flags: InContainer - type: MetaData - - parent: 3792 - type: Transform - - canCollide: False - type: Physics -- proto: EncryptionKeyService - entities: - - uid: 3770 - components: - - flags: InContainer - type: MetaData - - parent: 3769 - type: Transform - - canCollide: False - type: Physics -- proto: ExosuitFabricator - entities: - - uid: 663 - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 5490 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 5502 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,25.5 - parent: 1 - type: Transform - - uid: 5503 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,26.5 - parent: 1 - type: Transform - - uid: 5505 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 1 - type: Transform - - uid: 5506 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 5507 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,16.5 - parent: 1 - type: Transform - - uid: 5509 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,4.5 - parent: 1 - type: Transform - - uid: 5510 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 1 - type: Transform - - uid: 5511 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - uid: 5512 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,7.5 - parent: 1 - type: Transform - - uid: 5513 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,29.5 - parent: 1 - type: Transform - - uid: 5514 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,29.5 - parent: 1 - type: Transform - - uid: 5515 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - uid: 5516 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - uid: 5517 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,50.5 - parent: 1 - type: Transform - - uid: 5518 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,56.5 - parent: 1 - type: Transform - - uid: 5519 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - uid: 9279 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - uid: 9280 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 1 - type: Transform - - uid: 9281 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-5.5 - parent: 1 - type: Transform - - uid: 9282 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,8.5 - parent: 1 - type: Transform - - uid: 9283 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 9284 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 9285 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 1 - type: Transform - - uid: 9286 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 1 - type: Transform - - uid: 9287 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 9289 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 1 - type: Transform - - uid: 9290 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 9291 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 1 - type: Transform - - uid: 9292 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 1 - type: Transform - - uid: 9293 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,8.5 - parent: 1 - type: Transform - - uid: 9294 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,18.5 - parent: 1 - type: Transform - - uid: 9295 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,27.5 - parent: 1 - type: Transform - - uid: 9296 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 1 - type: Transform - - uid: 9297 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-4.5 - parent: 1 - type: Transform - - uid: 9298 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 1 - type: Transform - - uid: 9299 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 1 - type: Transform - - uid: 9300 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 1 - type: Transform - - uid: 9301 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 1 - type: Transform - - uid: 9302 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 1 - type: Transform - - uid: 9303 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 1 - type: Transform - - uid: 9304 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 1 - type: Transform - - uid: 9305 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 1 - type: Transform - - uid: 9306 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 1 - type: Transform - - uid: 11600 - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 12023 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 12402 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 1 - type: Transform - - uid: 12403 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-33.5 - parent: 1 - type: Transform -- proto: FaxMachineBase - entities: - - uid: 4111 - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform - - name: Bridge - type: FaxMachine - - uid: 4968 - components: - - pos: -0.5,21.5 - parent: 1 - type: Transform - - name: HoP Office - type: FaxMachine - - uid: 5329 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - name: Security - type: FaxMachine - - uid: 5582 - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform - - name: Library - type: FaxMachine - - uid: 5882 - components: - - pos: -12.5,6.5 - parent: 1 - type: Transform - - name: Medical - type: FaxMachine - - uid: 5974 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - name: Bar - type: FaxMachine - - uid: 6027 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - name: Science - type: FaxMachine - - uid: 6785 - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform - - name: Engineering - type: FaxMachine - - uid: 7242 - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform - - name: Cargo - type: FaxMachine - - uid: 9129 - components: - - pos: 40.5,33.5 - parent: 1 - type: Transform - - name: Courthouse - type: FaxMachine -- proto: FaxMachineCaptain - entities: - - uid: 4102 - components: - - pos: 5.5,27.5 - parent: 1 - type: Transform -- proto: FireAlarm - entities: - - uid: 5969 - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform - - devices: - - 3200 - - 3201 - - 3202 - - 1766 - - 1765 - - 3209 - - 3208 - - 3206 - - 3207 - - 3203 - - 3204 - - 3205 - type: DeviceList - - uid: 11595 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 1 - type: Transform - - devices: - - 3197 - - 3194 - - 3198 - type: DeviceList - - uid: 11596 - components: - - rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 1 - type: Transform - - devices: - - 3193 - - 3192 - - 3196 - - 3194 - - 3195 - type: DeviceList - - uid: 11597 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 1 - type: Transform - - devices: - - 3185 - - 3191 - - 3193 - - 3192 - - 3186 - type: DeviceList - - uid: 11599 - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform - - devices: - - 5009 - - 5010 - - 5011 - - 3190 - - 3199 - - 3191 - - 3134 - - 3133 - - 46 - - 5004 - - 5003 - - 5002 - - 5000 - - 5001 - type: DeviceList - - uid: 11607 - components: - - pos: 30.5,11.5 - parent: 1 - type: Transform - - devices: - - 3203 - - 3204 - - 3205 - - 3219 - - 3327 - - 3217 - - 3213 - - 3214 - - 3215 - type: DeviceList - - uid: 11610 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,26.5 - parent: 1 - type: Transform - - devices: - - 3224 - - 3225 - - 3226 - - 3227 - - 3228 - - 3220 - - 3221 - - 3222 - - 3223 - type: DeviceList - - uid: 11613 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 1 - type: Transform - - devices: - - 3134 - - 3133 - - 46 - - 3135 - - 3136 - - 3138 - - 3137 - - 11622 - - 11621 - - 11620 - - 11619 - - 11618 - - 11617 - - 11616 - - 11615 - - 11614 - type: DeviceList - - uid: 11624 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - devices: - - 3143 - - 3141 - - 3142 - - 3139 - - 3140 - type: DeviceList - - uid: 11626 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - devices: - - 3145 - - 3146 - - 3143 - - 3142 - type: DeviceList - - uid: 11631 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - devices: - - 3120 - - 3119 - - 3118 - - 3149 - - 3150 - - 3151 - - 5508 - - 5498 - - 5495 - - 5008 - - 5003 - - 5002 - - 5004 - - 3135 - - 3136 - type: DeviceList - - uid: 11633 - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform - - devices: - - 3183 - - 3184 - - 3171 - - 3170 - - 3169 - - 3168 - - 3167 - - 3166 - - 3165 - - 3189 - - 3164 - - 3173 - - 3172 - type: DeviceList - - uid: 11635 - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 11639 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 1 - type: Transform - - devices: - - 3187 - - 11637 - - 11643 - type: DeviceList - - uid: 11640 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,15.5 - parent: 1 - type: Transform - - devices: - - 3164 - - 3188 - type: DeviceList - - uid: 11641 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - devices: - - 3178 - - 3179 - - 3180 - - 3181 - type: DeviceList - - uid: 11648 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - devices: - - 3151 - - 3150 - - 3149 - - 3155 - - 3156 - - 3157 - type: DeviceList - - uid: 11650 - components: - - pos: -26.5,4.5 - parent: 1 - type: Transform - - devices: - - 3151 - - 3150 - - 3149 - - 3155 - - 3156 - - 3157 - - 11054 - - 11057 - - 2284 - - 2094 - - 3160 - - 3272 - - 3273 - - 3158 - - 3159 - - 3161 - type: DeviceList - - uid: 11652 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,9.5 - parent: 1 - type: Transform - - devices: - - 3158 - - 3159 - - 3161 - - 11653 - type: DeviceList - - uid: 11654 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - type: Transform - - devices: - - 2284 - - 2094 - - 3160 - - 3162 - - 3163 - type: DeviceList - - uid: 11656 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 - parent: 1 - type: Transform - - devices: - - 3273 - - 3272 - type: DeviceList - - uid: 11659 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 1 - type: Transform - - devices: - - 3115 - - 3116 - - 3117 - - 3104 - - 3103 - - 3102 - - 3096 - - 3097 - - 3100 - - 3101 - - 3118 - - 3119 - - 3120 - type: DeviceList - - uid: 11663 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 1 - type: Transform - - devices: - - 3094 - - 3095 - - 3102 - - 3103 - - 3104 - - 3105 - type: DeviceList - - uid: 11665 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 1 - type: Transform - - devices: - - 3111 - - 3112 - - 3113 - - 3106 - - 3107 - - 3108 - - 3109 - - 11668 - - 11669 - type: DeviceList - - uid: 11671 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-8.5 - parent: 1 - type: Transform - - devices: - - 1979 - - 2283 - - 996 - type: DeviceList - - uid: 11673 - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform - - devices: - - 3091 - - 3090 - - 3109 - - 3093 - - 3092 - type: DeviceList - - uid: 11675 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 1 - type: Transform - - devices: - - 3117 - - 3116 - - 3115 - - 3145 - - 3121 - - 3122 - - 3123 - - 3266 - - 3265 - - 3264 - type: DeviceList - - uid: 11677 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform - - devices: - - 3123 - - 3122 - - 3121 - - 11629 - - 11628 - - 11627 - - 3125 - - 3124 - - 3126 - - 3243 - - 1832 - - 3055 - type: DeviceList - - uid: 11679 - components: - - pos: 19.5,-2.5 - parent: 1 - type: Transform - - devices: - - 3229 - - 3230 - - 3233 - - 3232 - - 11687 - - 11688 - type: DeviceList - - uid: 11681 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 1 - type: Transform - - devices: - - 3231 - - 3232 - - 3233 - - 3241 - - 3242 - type: DeviceList - - uid: 11683 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-12.5 - parent: 1 - type: Transform - - devices: - - 3235 - - 3234 - - 3232 - - 3233 - - 3240 - - 11687 - - 11688 - - 11689 - type: DeviceList - - uid: 11685 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-13.5 - parent: 1 - type: Transform - - devices: - - 3236 - - 3237 - - 1222 - - 11686 - type: DeviceList - - uid: 11691 - components: - - pos: 20.5,4.5 - parent: 1 - type: Transform - - devices: - - 3129 - - 3128 - - 3127 - - 3498 - - 3499 - type: DeviceList - - uid: 11693 - components: - - pos: 33.5,4.5 - parent: 1 - type: Transform - - devices: - - 3499 - - 3498 - - 3501 - - 3502 - - 3503 - type: DeviceList - - uid: 11695 - components: - - rot: 3.141592653589793 rad - pos: 41.5,0.5 - parent: 1 - type: Transform - - devices: - - 3503 - - 3502 - - 3501 - - 3504 - - 3505 - - 3506 - type: DeviceList - - uid: 11696 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,9.5 - parent: 1 - type: Transform - - devices: - - 3506 - - 3505 - - 3504 - - 3507 - - 4898 - type: DeviceList - - uid: 11701 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,31.5 - parent: 1 - type: Transform - - devices: - - 11703 - - 11704 - type: DeviceList - - uid: 11702 - components: - - rot: 3.141592653589793 rad - pos: 42.5,24.5 - parent: 1 - type: Transform - - devices: - - 4898 - - 4897 - - 11703 - - 11704 - type: DeviceList - - uid: 11706 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-14.5 - parent: 1 - type: Transform - - devices: - - 3262 - - 3261 - - 3263 - - 3264 - - 3265 - - 3266 - type: DeviceList - - uid: 11708 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 1 - type: Transform - - devices: - - 3260 - - 3259 - - 3258 - - 3267 - - 3270 - - 3269 - - 3271 - - 3268 - type: DeviceList - - uid: 11710 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 1 - type: Transform - - devices: - - 3584 - - 3585 - - 3586 - - 3587 - - 3263 - - 3262 - - 3261 - - 3260 - - 3259 - - 3258 - - 7083 - - 7084 - - 7085 - type: DeviceList - - uid: 11712 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 1 - type: Transform - - devices: - - 7086 - - 7083 - - 7084 - - 7085 - type: DeviceList - - uid: 11715 - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform - - devices: - - 3247 - - 3246 - - 3250 - - 3251 - - 3252 - - 3253 - - 2186 - type: DeviceList - - uid: 11716 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-28.5 - parent: 1 - type: Transform - - devices: - - 3248 - - 3249 - type: DeviceList - - uid: 11717 - components: - - pos: 20.5,-19.5 - parent: 1 - type: Transform - - devices: - - 7250 - - 7249 - - 3595 - - 7301 - - 3257 - type: DeviceList -- proto: FireAxeCabinetFilled - entities: - - uid: 4101 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - uid: 12471 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 1 - type: Transform -- proto: FireExtinguisher - entities: - - uid: 6334 - components: - - pos: -14.675418,-8.401124 - parent: 1 - type: Transform -- proto: Firelock - entities: - - uid: 3508 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,6.5 - parent: 1 - type: Transform - - uid: 3509 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 1 - type: Transform - - uid: 3510 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,16.5 - parent: 1 - type: Transform - - uid: 3511 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,29.5 - parent: 1 - type: Transform - - uid: 3512 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,29.5 - parent: 1 - type: Transform - - uid: 3513 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,19.5 - parent: 1 - type: Transform - - uid: 3514 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,31.5 - parent: 1 - type: Transform - - uid: 3515 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - uid: 3516 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 3517 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 1 - type: Transform - - uid: 3518 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 1 - type: Transform - - uid: 3519 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 1 - type: Transform - - uid: 3520 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 1 - type: Transform - - uid: 3521 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,22.5 - parent: 1 - type: Transform - - uid: 3522 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,22.5 - parent: 1 - type: Transform - - uid: 3523 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,28.5 - parent: 1 - type: Transform - - uid: 3524 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,29.5 - parent: 1 - type: Transform - - uid: 3525 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 1 - type: Transform - - uid: 3526 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 1 - type: Transform - - uid: 3527 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,17.5 - parent: 1 - type: Transform - - uid: 3528 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,17.5 - parent: 1 - type: Transform - - uid: 3529 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 1 - type: Transform - - uid: 3530 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - uid: 3531 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 1 - type: Transform - - uid: 3532 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 1 - type: Transform - - uid: 3533 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 1 - type: Transform - - uid: 3534 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 1 - type: Transform - - uid: 3535 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-21.5 - parent: 1 - type: Transform - - uid: 3536 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 1 - type: Transform - - uid: 3537 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform - - uid: 3538 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 1 - type: Transform - - uid: 3539 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 1 - type: Transform - - uid: 3540 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 1 - type: Transform - - uid: 3541 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - uid: 12493 - components: - - pos: 33.5,-0.5 - parent: 1 - type: Transform -- proto: FirelockEdge - entities: - - uid: 996 - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - uid: 1222 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-2.5 - parent: 1 - type: Transform - - uid: 1764 - components: - - rot: 3.141592653589793 rad - pos: 18.5,7.5 - parent: 1 - type: Transform - - uid: 1765 - components: - - rot: 3.141592653589793 rad - pos: 15.5,7.5 - parent: 1 - type: Transform - - uid: 1766 - components: - - rot: 3.141592653589793 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 1832 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 1 - type: Transform - - uid: 2186 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 1 - type: Transform - - uid: 2864 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-48.5 - parent: 1 - type: Transform - - uid: 3055 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 1 - type: Transform - - uid: 3105 - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - uid: 3114 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-17.5 - parent: 1 - type: Transform - - uid: 3162 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 1 - type: Transform - - uid: 3187 - components: - - rot: 3.141592653589793 rad - pos: -13.5,21.5 - parent: 1 - type: Transform - - uid: 3188 - components: - - rot: 3.141592653589793 rad - pos: -23.5,16.5 - parent: 1 - type: Transform - - uid: 3189 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 1 - type: Transform - - uid: 3197 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,30.5 - parent: 1 - type: Transform - - uid: 3198 - components: - - pos: -9.5,26.5 - parent: 1 - type: Transform - - uid: 3208 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - uid: 3209 - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform - - uid: 3222 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 1 - type: Transform - - uid: 3223 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 1 - type: Transform - - uid: 3224 - components: - - rot: 3.141592653589793 rad - pos: 28.5,29.5 - parent: 1 - type: Transform - - uid: 3225 - components: - - rot: 3.141592653589793 rad - pos: 29.5,29.5 - parent: 1 - type: Transform - - uid: 3226 - components: - - rot: 3.141592653589793 rad - pos: 30.5,29.5 - parent: 1 - type: Transform - - uid: 3227 - components: - - rot: 3.141592653589793 rad - pos: 31.5,29.5 - parent: 1 - type: Transform - - uid: 3228 - components: - - rot: 3.141592653589793 rad - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 3238 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 1 - type: Transform - - uid: 3240 - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - uid: 3242 - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform - - uid: 3256 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 1 - type: Transform - - uid: 3257 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-20.5 - parent: 1 - type: Transform - - uid: 3274 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - type: Transform - - uid: 3507 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 1 - type: Transform - - uid: 3584 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-22.5 - parent: 1 - type: Transform - - uid: 3585 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 1 - type: Transform - - uid: 3586 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 1 - type: Transform - - uid: 3587 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 1 - type: Transform - - uid: 4897 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,26.5 - parent: 1 - type: Transform - - uid: 4898 - components: - - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 1 - type: Transform - - uid: 5000 - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform - - uid: 5001 - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform - - uid: 5002 - components: - - rot: 3.141592653589793 rad - pos: -6.5,11.5 - parent: 1 - type: Transform - - uid: 5003 - components: - - rot: 3.141592653589793 rad - pos: -5.5,11.5 - parent: 1 - type: Transform - - uid: 5004 - components: - - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 1 - type: Transform - - uid: 7148 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-16.5 - parent: 1 - type: Transform - - uid: 7149 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 1 - type: Transform - - uid: 7150 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-18.5 - parent: 1 - type: Transform - - uid: 11627 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 1 - type: Transform - - uid: 11628 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 1 - type: Transform - - uid: 11629 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform - - uid: 11668 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 1 - type: Transform - - uid: 11669 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-9.5 - parent: 1 - type: Transform - - uid: 11686 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-17.5 - parent: 1 - type: Transform - - uid: 12112 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,21.5 - parent: 1 - type: Transform -- proto: FirelockGlass - entities: - - uid: 46 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 1 - type: Transform - - uid: 1979 - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - uid: 2094 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - uid: 2283 - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - uid: 2284 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - uid: 3075 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform - - uid: 3090 - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform - - uid: 3091 - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform - - uid: 3092 - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform - - uid: 3093 - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform - - uid: 3094 - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform - - uid: 3095 - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform - - uid: 3096 - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform - - uid: 3097 - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - uid: 3098 - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform - - uid: 3099 - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform - - uid: 3100 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 3101 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - uid: 3102 - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform - - uid: 3103 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 3104 - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform - - uid: 3106 - components: - - pos: -17.5,-11.5 - parent: 1 - type: Transform - - uid: 3107 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - uid: 3108 - components: - - pos: -15.5,-11.5 - parent: 1 - type: Transform - - uid: 3109 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - uid: 3111 - components: - - pos: -17.5,-15.5 - parent: 1 - type: Transform - - uid: 3112 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - uid: 3113 - components: - - pos: -15.5,-15.5 - parent: 1 - type: Transform - - uid: 3115 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - uid: 3116 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 3117 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 3118 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - uid: 3119 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - uid: 3120 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - uid: 3121 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - uid: 3122 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 3123 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 1 - type: Transform - - uid: 3124 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 3125 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,0.5 - parent: 1 - type: Transform - - uid: 3126 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,0.5 - parent: 1 - type: Transform - - uid: 3127 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - uid: 3128 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - uid: 3129 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - uid: 3133 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,13.5 - parent: 1 - type: Transform - - uid: 3134 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 1 - type: Transform - - uid: 3135 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 1 - type: Transform - - uid: 3136 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 3137 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - uid: 3138 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - uid: 3139 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 3140 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - uid: 3141 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - uid: 3142 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 3143 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 3145 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 3146 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 3149 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - uid: 3150 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - uid: 3151 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - uid: 3155 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,1.5 - parent: 1 - type: Transform - - uid: 3156 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,2.5 - parent: 1 - type: Transform - - uid: 3157 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - uid: 3158 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - type: Transform - - uid: 3159 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,4.5 - parent: 1 - type: Transform - - uid: 3160 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - uid: 3161 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,4.5 - parent: 1 - type: Transform - - uid: 3163 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 3164 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,12.5 - parent: 1 - type: Transform - - uid: 3165 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,8.5 - parent: 1 - type: Transform - - uid: 3166 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 3167 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - uid: 3168 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 3169 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform - - uid: 3170 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - uid: 3171 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,7.5 - parent: 1 - type: Transform - - uid: 3172 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - uid: 3173 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 1 - type: Transform - - uid: 3174 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 3175 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 3176 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - uid: 3177 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 1 - type: Transform - - uid: 3178 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 3179 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 3180 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 3181 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - type: Transform - - uid: 3182 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - type: Transform - - uid: 3183 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,12.5 - parent: 1 - type: Transform - - uid: 3184 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,12.5 - parent: 1 - type: Transform - - uid: 3185 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - uid: 3186 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 3190 - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform - - uid: 3191 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - uid: 3192 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,26.5 - parent: 1 - type: Transform - - uid: 3193 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - uid: 3194 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform - - uid: 3195 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 1 - type: Transform - - uid: 3196 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - uid: 3199 - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform - - uid: 3200 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 3201 - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - uid: 3202 - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - uid: 3203 - components: - - pos: 24.5,10.5 - parent: 1 - type: Transform - - uid: 3204 - components: - - pos: 24.5,9.5 - parent: 1 - type: Transform - - uid: 3205 - components: - - pos: 24.5,8.5 - parent: 1 - type: Transform - - uid: 3206 - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - uid: 3207 - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - uid: 3213 - components: - - pos: 31.5,15.5 - parent: 1 - type: Transform - - uid: 3214 - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform - - uid: 3215 - components: - - pos: 33.5,15.5 - parent: 1 - type: Transform - - uid: 3216 - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform - - uid: 3217 - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform - - uid: 3219 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - uid: 3220 - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform - - uid: 3221 - components: - - pos: 33.5,24.5 - parent: 1 - type: Transform - - uid: 3229 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-6.5 - parent: 1 - type: Transform - - uid: 3230 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - uid: 3231 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 3232 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-10.5 - parent: 1 - type: Transform - - uid: 3233 - components: - - rot: 3.141592653589793 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform - - uid: 3234 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 1 - type: Transform - - uid: 3235 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - uid: 3236 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-11.5 - parent: 1 - type: Transform - - uid: 3237 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-10.5 - parent: 1 - type: Transform - - uid: 3241 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - uid: 3243 - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform - - uid: 3244 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - uid: 3245 - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - - uid: 3246 - components: - - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 3247 - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 3248 - components: - - pos: 5.5,-24.5 - parent: 1 - type: Transform - - uid: 3249 - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform - - uid: 3250 - components: - - pos: 9.5,-24.5 - parent: 1 - type: Transform - - uid: 3251 - components: - - pos: 10.5,-24.5 - parent: 1 - type: Transform - - uid: 3252 - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform - - uid: 3253 - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform - - uid: 3258 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 1 - type: Transform - - uid: 3259 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform - - uid: 3260 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform - - uid: 3261 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1 - type: Transform - - uid: 3262 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1 - type: Transform - - uid: 3263 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform - - uid: 3264 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 3265 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 3266 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - uid: 3267 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform - - uid: 3268 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform - - uid: 3269 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 1 - type: Transform - - uid: 3270 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - uid: 3271 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 1 - type: Transform - - uid: 3272 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,0.5 - parent: 1 - type: Transform - - uid: 3273 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,0.5 - parent: 1 - type: Transform - - uid: 3327 - components: - - pos: 35.5,11.5 - parent: 1 - type: Transform - - uid: 3498 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - type: Transform - - uid: 3499 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - uid: 3501 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform - - uid: 3502 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 1 - type: Transform - - uid: 3503 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 3504 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 1 - type: Transform - - uid: 3505 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 1 - type: Transform - - uid: 3506 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,3.5 - parent: 1 - type: Transform - - uid: 3595 - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform - - uid: 5008 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - uid: 5009 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 1 - type: Transform - - uid: 5010 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,11.5 - parent: 1 - type: Transform - - uid: 5011 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,11.5 - parent: 1 - type: Transform - - uid: 5495 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - uid: 5498 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - uid: 5508 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - uid: 7083 - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform - - uid: 7084 - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform - - uid: 7085 - components: - - pos: 2.5,-27.5 - parent: 1 - type: Transform - - uid: 7086 - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform - - uid: 7087 - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform - - uid: 7249 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform - - uid: 7250 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 1 - type: Transform - - uid: 7301 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 11602 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 11603 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 11614 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 11615 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 11616 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 11617 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 11618 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 11619 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 11620 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 11621 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 11622 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 1 - type: Transform - - uid: 11637 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - uid: 11643 - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - uid: 11653 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,12.5 - parent: 1 - type: Transform - - uid: 11687 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 1 - type: Transform - - uid: 11688 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 1 - type: Transform - - uid: 11689 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 1 - type: Transform - - uid: 11703 - components: - - rot: 3.141592653589793 rad - pos: 42.5,29.5 - parent: 1 - type: Transform - - uid: 11704 - components: - - rot: 3.141592653589793 rad - pos: 43.5,29.5 - parent: 1 - type: Transform -- proto: Fireplace - entities: - - uid: 4961 - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - uid: 12563 - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform -- proto: Flash - entities: - - uid: 5064 - components: - - pos: -0.72998714,31.713612 - parent: 1 - type: Transform -- proto: FlashlightLantern - entities: - - uid: 8929 - components: - - pos: -24.399763,-12.310871 - parent: 1 - type: Transform - - uid: 8930 - components: - - pos: -24.618513,-12.670246 - parent: 1 - type: Transform - - uid: 9550 - components: - - pos: 36.560673,24.84187 - parent: 1 - type: Transform - - uid: 9556 - components: - - pos: 36.357548,24.52937 - parent: 1 - type: Transform - - uid: 9732 - components: - - pos: -33.69252,18.729115 - parent: 1 - type: Transform - - uid: 9733 - components: - - pos: -33.34877,18.49474 - parent: 1 - type: Transform -- proto: FlashlightSeclite - entities: - - uid: 12531 - components: - - pos: -21.477749,-28.757965 - parent: 1 - type: Transform - - uid: 12532 - components: - - pos: 12.504955,21.180922 - parent: 1 - type: Transform - - uid: 12533 - components: - - pos: 12.504955,20.899672 - parent: 1 - type: Transform -- proto: Floodlight - entities: - - uid: 7307 - components: - - pos: 24.51259,-24.494957 - parent: 1 - type: Transform -- proto: FloorDrain - entities: - - uid: 5872 - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 5873 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 9655 - components: - - pos: 12.5,25.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 10117 - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures - - uid: 12481 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - fixtures: {} - type: Fixtures -- proto: FloorTileItemArcadeBlue2 - entities: - - uid: 8752 - components: - - pos: -39.510826,-23.477228 - parent: 1 - type: Transform - - count: 30 - type: Stack -- proto: FloorTileItemBoxing - entities: - - uid: 8725 - components: - - pos: -43.51509,-18.484356 - parent: 1 - type: Transform - - uid: 8726 - components: - - pos: -42.51509,-19.46873 - parent: 1 - type: Transform - - uid: 8727 - components: - - pos: -41.499466,-19.49998 - parent: 1 - type: Transform - - uid: 8728 - components: - - pos: -41.468216,-20.53123 - parent: 1 - type: Transform - - uid: 8729 - components: - - pos: -41.48384,-17.49998 - parent: 1 - type: Transform -- proto: FluteInstrument - entities: - - uid: 7805 - components: - - pos: -11.967718,-31.457222 - parent: 1 - type: Transform -- proto: FoamBlade - entities: - - uid: 12286 - components: - - pos: -11.477329,-33.530846 - parent: 1 - type: Transform -- proto: FoamCutlass - entities: - - uid: 9495 - components: - - pos: 16.350037,33.593983 - parent: 1 - type: Transform - - uid: 9496 - components: - - pos: 16.646912,33.578358 - parent: 1 - type: Transform -- proto: FoodBreadPlain - entities: - - uid: 7542 - components: - - pos: -36.085228,11.652148 - parent: 1 - type: Transform -- proto: FoodBurgerMime - entities: - - uid: 7785 - components: - - pos: -13.67487,-28.683897 - parent: 1 - type: Transform -- proto: FoodBurgerRobot - entities: - - uid: 12427 - components: - - pos: -12.540917,-11.312796 - parent: 1 - type: Transform -- proto: FoodCakeClown - entities: - - uid: 7789 - components: - - pos: -9.479882,-28.394722 - parent: 1 - type: Transform -- proto: FoodCakeSuppermatterSlice - entities: - - uid: 12541 - components: - - pos: -31.503586,-35.411694 - parent: 1 - type: Transform -- proto: FoodCartCold - entities: - - uid: 1793 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform -- proto: FoodCartHot - entities: - - uid: 1795 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform -- proto: FoodContainerEgg - entities: - - uid: 6015 - components: - - pos: 0.6686959,0.7498474 - parent: 1 - type: Transform -- proto: FoodDonutJellySlugcat - entities: - - uid: 12540 - components: - - pos: 17.536278,36.515877 - parent: 1 - type: Transform -- proto: FoodDonutJellySpaceman - entities: - - uid: 12355 - components: - - pos: 47.534332,36.51474 - parent: 1 - type: Transform -- proto: FoodFrozenSandwichStrawberry - entities: - - uid: 12289 - components: - - pos: -13.495724,52.499588 - parent: 1 - type: Transform -- proto: FoodFrozenSnowconeClown - entities: - - uid: 7792 - components: - - pos: -9.261132,-30.191597 - parent: 1 - type: Transform -- proto: FoodFrozenSnowconeMime - entities: - - uid: 7784 - components: - - pos: -13.67487,-29.449522 - parent: 1 - type: Transform -- proto: FoodMeatClown - entities: - - uid: 7793 - components: - - pos: -9.698632,-30.535347 - parent: 1 - type: Transform -- proto: FoodPieBananaCream - entities: - - uid: 7794 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform - - uid: 7795 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform - - uid: 7796 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform - - uid: 7797 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform - - uid: 7798 - components: - - pos: -9.370507,-31.394722 - parent: 1 - type: Transform -- proto: FoodTartMime - entities: - - uid: 7783 - components: - - pos: -13.20612,-28.277647 - parent: 1 - type: Transform -- proto: Fork - entities: - - uid: 5985 - components: - - pos: 1.2974858,10.5533285 - parent: 1 - type: Transform -- proto: GasAnalyzer - entities: - - uid: 6339 - components: - - pos: -14.47985,-9.759103 - parent: 1 - type: Transform -- proto: GasFilterFlipped - entities: - - uid: 6840 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-17.5 - parent: 1 - type: Transform - - uid: 6841 - components: - - name: plasma filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-15.5 - parent: 1 - type: Transform - - uid: 6842 - components: - - name: water vapor filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-13.5 - parent: 1 - type: Transform - - uid: 6843 - components: - - name: n2o filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 1 - type: Transform - - uid: 6844 - components: - - name: co2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-9.5 - parent: 1 - type: Transform - - uid: 6845 - components: - - name: o2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-7.5 - parent: 1 - type: Transform - - uid: 6846 - components: - - name: n2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-5.5 - parent: 1 - type: Transform -- proto: GasMinerCarbonDioxide - entities: - - uid: 6804 - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform -- proto: GasMinerNitrogenStation - entities: - - uid: 6808 - components: - - pos: 44.5,-5.5 - parent: 1 - type: Transform -- proto: GasMinerOxygenStation - entities: - - uid: 6807 - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform -- proto: GasMinerPlasma - entities: - - uid: 6806 - components: - - pos: 44.5,-15.5 - parent: 1 - type: Transform -- proto: GasMinerWaterVapor - entities: - - uid: 6805 - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform -- proto: GasMixer - entities: - - uid: 6942 - components: - - name: n2 + o2 to mix - type: MetaData - - pos: 37.5,-7.5 - parent: 1 - type: Transform -- proto: GasMixerFlipped - entities: - - uid: 6932 - components: - - name: distro mixer - type: MetaData - - rot: 3.141592653589793 rad - pos: 35.5,-6.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6943 - components: - - name: co2 to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-8.5 - parent: 1 - type: Transform - - uid: 6944 - components: - - name: n2o to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 1 - type: Transform - - uid: 6945 - components: - - name: water vapor to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-12.5 - parent: 1 - type: Transform - - uid: 6946 - components: - - name: plasma to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-14.5 - parent: 1 - type: Transform - - uid: 6947 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-16.5 - parent: 1 - type: Transform -- proto: GasOutletInjector - entities: - - uid: 1436 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 1 - type: Transform - - uid: 6815 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 1 - type: Transform - - uid: 6816 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-15.5 - parent: 1 - type: Transform - - uid: 6817 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 1 - type: Transform - - uid: 6818 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 1 - type: Transform - - uid: 6819 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 1 - type: Transform - - uid: 6821 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 1 - type: Transform - - uid: 6959 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-22.5 - parent: 1 - type: Transform -- proto: GasPassiveVent - entities: - - uid: 6119 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 1 - type: Transform - - uid: 6120 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 1 - type: Transform - - uid: 6121 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 1 - type: Transform - - uid: 6122 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 - parent: 1 - type: Transform - - uid: 6839 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-20.5 - parent: 1 - type: Transform - - uid: 6875 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform - - uid: 6876 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-7.5 - parent: 1 - type: Transform - - uid: 6877 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-9.5 - parent: 1 - type: Transform - - uid: 6878 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-11.5 - parent: 1 - type: Transform - - uid: 6879 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-13.5 - parent: 1 - type: Transform - - uid: 6880 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-15.5 - parent: 1 - type: Transform - - uid: 6881 - components: - - rot: 3.141592653589793 rad - pos: 45.5,-17.5 - parent: 1 - type: Transform - - uid: 6958 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-22.5 - parent: 1 - type: Transform - - uid: 6992 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-3.5 - parent: 1 - type: Transform -- proto: GasPipeBend - entities: - - uid: 6882 - components: - - pos: 45.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6883 - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6884 - components: - - pos: 45.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6885 - components: - - pos: 45.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6886 - components: - - pos: 45.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6887 - components: - - pos: 45.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6888 - components: - - pos: 45.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6931 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6936 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6941 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6948 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6949 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6950 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6979 - components: - - pos: 35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6982 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 10159 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10162 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10163 - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10164 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10165 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10166 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10167 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10186 - components: - - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10196 - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10201 - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10203 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10273 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10274 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10275 - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10276 - components: - - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10322 - components: - - pos: 38.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10323 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10353 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10354 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10401 - components: - - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10408 - components: - - pos: 46.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10419 - components: - - pos: 45.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10425 - components: - - pos: 44.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10437 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10440 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10456 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10457 - components: - - rot: 3.141592653589793 rad - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10458 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10575 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10580 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10607 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10624 - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10637 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10646 - components: - - pos: 33.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10682 - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10686 - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10687 - components: - - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10688 - components: - - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10699 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10700 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10717 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10719 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10734 - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10752 - components: - - rot: 3.141592653589793 rad - pos: -5.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10753 - components: - - pos: -5.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10800 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10801 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10802 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10820 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10846 - components: - - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10847 - components: - - rot: 3.141592653589793 rad - pos: -11.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10906 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10907 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10954 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10955 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11070 - components: - - pos: -35.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11071 - components: - - rot: 3.141592653589793 rad - pos: -37.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11072 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11078 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11079 - components: - - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11109 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11120 - components: - - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11130 - components: - - rot: 3.141592653589793 rad - pos: -39.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11210 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11211 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11226 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11227 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11228 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11318 - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11319 - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11420 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11422 - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11483 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11484 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11530 - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11532 - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11533 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11536 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11537 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11544 - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11555 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12142 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12143 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12144 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12145 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12146 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12149 - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12152 - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12153 - components: - - rot: 3.141592653589793 rad - pos: -10.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12160 - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12161 - components: - - pos: -0.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12162 - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12163 - components: - - pos: -2.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12164 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12165 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12166 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12167 - components: - - rot: 3.141592653589793 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12168 - components: - - rot: 3.141592653589793 rad - pos: -2.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12169 - components: - - rot: 3.141592653589793 rad - pos: -1.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12170 - components: - - rot: 3.141592653589793 rad - pos: -0.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12171 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12172 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12173 - components: - - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12174 - components: - - pos: -8.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12175 - components: - - rot: 3.141592653589793 rad - pos: -9.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12177 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12199 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12229 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12230 - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12231 - components: - - rot: 3.141592653589793 rad - pos: -8.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12232 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12240 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12241 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12242 - components: - - rot: 3.141592653589793 rad - pos: -9.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12243 - components: - - rot: 3.141592653589793 rad - pos: -10.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12244 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12245 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12246 - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12247 - components: - - pos: -2.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12262 - components: - - pos: -9.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12263 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12264 - components: - - rot: 3.141592653589793 rad - pos: -3.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12265 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 1837 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10454 - components: - - pos: 7.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10519 - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10728 - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10844 - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10877 - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10926 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11051 - components: - - pos: -35.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11191 - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11197 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11256 - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11522 - components: - - pos: 4.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12196 - components: - - pos: -7.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12249 - components: - - pos: -2.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 926 - components: - - pos: 33.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 949 - components: - - pos: 33.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3351 - components: - - pos: 38.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 5007 - components: - - rot: 3.141592653589793 rad - pos: 42.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6103 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 1 - type: Transform - - uid: 6105 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 1 - type: Transform - - uid: 6111 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - type: Transform - - uid: 6112 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 1 - type: Transform - - uid: 6113 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 1 - type: Transform - - uid: 6114 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 1 - type: Transform - - uid: 6115 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6116 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6117 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6118 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6824 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6825 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6826 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6827 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6828 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6829 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6831 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6832 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6833 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6834 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6835 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6836 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6837 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6838 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6847 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6848 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6849 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6850 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6851 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6852 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6853 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6854 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6855 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6856 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6857 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6858 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6859 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6860 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6861 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6862 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6863 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6864 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6865 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6866 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6867 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6889 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6890 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6891 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6892 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6893 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6894 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6895 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6896 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6897 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6898 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6899 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6900 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6901 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6902 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6903 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6904 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6905 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6906 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6907 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6908 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6909 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6910 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6911 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6912 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6913 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6914 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6915 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6916 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6917 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6918 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6919 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6920 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6921 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6922 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6923 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6924 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6925 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6926 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6927 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6928 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6929 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6930 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6933 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6934 - components: - - pos: 35.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6935 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6939 - components: - - pos: 36.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6940 - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6951 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6952 - components: - - pos: 36.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6953 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6954 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6955 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6956 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6957 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6960 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6961 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6962 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6963 - components: - - rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6965 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6966 - components: - - rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 6981 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6991 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 8768 - components: - - pos: -16.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8769 - components: - - pos: -16.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8770 - components: - - pos: -16.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8771 - components: - - pos: -16.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8772 - components: - - pos: -16.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8773 - components: - - pos: -16.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8774 - components: - - pos: -16.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8775 - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8776 - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8777 - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8778 - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8779 - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8780 - components: - - pos: -16.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8781 - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8782 - components: - - pos: -16.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8783 - components: - - pos: -16.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8784 - components: - - pos: -16.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8785 - components: - - pos: -16.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8786 - components: - - pos: -16.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8787 - components: - - pos: -16.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8788 - components: - - pos: -16.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8789 - components: - - pos: -16.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8790 - components: - - pos: -16.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8791 - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8792 - components: - - pos: -15.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 8793 - components: - - pos: -14.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8794 - components: - - pos: -14.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10091 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10092 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10093 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10094 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10095 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10096 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10097 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10098 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10099 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10100 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10105 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10106 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10107 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10108 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10109 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10110 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10111 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10118 - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10119 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10120 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10121 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10122 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10123 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10124 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10125 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10126 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10127 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10128 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10129 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10130 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10131 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10132 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10133 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10134 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10135 - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10136 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10137 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10146 - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10147 - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10148 - components: - - pos: 23.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10150 - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10151 - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10152 - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10154 - components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10155 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10156 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10157 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10158 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10168 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10169 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10170 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10171 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10172 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10173 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10174 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10175 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10176 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10177 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10178 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10179 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10180 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10181 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10182 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10183 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10184 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10185 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10187 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10188 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10189 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10191 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10193 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10195 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10207 - components: - - pos: 9.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10208 - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10209 - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10211 - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10212 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10213 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10214 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10215 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10216 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10221 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10222 - components: - - rot: 3.141592653589793 rad - pos: 9.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10223 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10224 - components: - - rot: 3.141592653589793 rad - pos: 7.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10228 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10229 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10231 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10232 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10233 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10234 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10235 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10238 - components: - - pos: 9.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10239 - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10240 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10241 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10242 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10243 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10244 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10245 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10249 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10250 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10251 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10252 - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10253 - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10256 - components: - - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10257 - components: - - rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10258 - components: - - rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10259 - components: - - rot: 3.141592653589793 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10260 - components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10261 - components: - - rot: 3.141592653589793 rad - pos: 9.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10262 - components: - - rot: 3.141592653589793 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10263 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10264 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10266 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10267 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10268 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10269 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10278 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10280 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10281 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10282 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10283 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10284 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10285 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10286 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10287 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10288 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10289 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10290 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10291 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10292 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10293 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10294 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10295 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10296 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10297 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10298 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10299 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10300 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10301 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10302 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10303 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10304 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10305 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10306 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10307 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10308 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10309 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10311 - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10312 - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10313 - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10314 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10315 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10316 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10317 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10318 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10319 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10320 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10321 - components: - - rot: 3.141592653589793 rad - pos: 38.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10324 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10325 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10326 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10327 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10328 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10329 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10330 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10331 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10332 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10333 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10334 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10335 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10336 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10337 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10338 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10339 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10340 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10341 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10342 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10343 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10344 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10345 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10346 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10347 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10348 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10349 - components: - - pos: 46.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10350 - components: - - pos: 46.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10351 - components: - - pos: 46.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10352 - components: - - pos: 44.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10357 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10366 - components: - - pos: 46.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10367 - components: - - pos: 46.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10368 - components: - - pos: 46.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10369 - components: - - pos: 46.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10370 - components: - - pos: 46.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10371 - components: - - pos: 46.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10372 - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10373 - components: - - pos: 46.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10374 - components: - - pos: 46.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10375 - components: - - pos: 46.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10376 - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10377 - components: - - pos: 44.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10378 - components: - - pos: 44.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10379 - components: - - pos: 44.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10380 - components: - - pos: 44.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10381 - components: - - pos: 44.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10382 - components: - - pos: 44.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10383 - components: - - pos: 44.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10384 - components: - - pos: 44.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10385 - components: - - pos: 44.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10392 - components: - - pos: 44.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10393 - components: - - pos: 46.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10394 - components: - - pos: 46.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10395 - components: - - pos: 46.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10396 - components: - - pos: 46.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10397 - components: - - pos: 44.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10398 - components: - - pos: 44.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10399 - components: - - pos: 44.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10400 - components: - - pos: 44.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10404 - components: - - rot: 3.141592653589793 rad - pos: 44.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10405 - components: - - rot: 3.141592653589793 rad - pos: 44.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10406 - components: - - rot: 3.141592653589793 rad - pos: 44.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10407 - components: - - rot: 3.141592653589793 rad - pos: 45.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10409 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10410 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10411 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10412 - components: - - rot: -1.5707963267948966 rad - pos: 43.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10415 - components: - - pos: 44.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10416 - components: - - rot: 3.141592653589793 rad - pos: 43.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10417 - components: - - rot: 3.141592653589793 rad - pos: 42.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10418 - components: - - rot: 3.141592653589793 rad - pos: 42.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10420 - components: - - rot: 3.141592653589793 rad - pos: 43.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10421 - components: - - rot: 3.141592653589793 rad - pos: 45.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10422 - components: - - rot: 3.141592653589793 rad - pos: 43.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10423 - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10424 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10426 - components: - - rot: 3.141592653589793 rad - pos: 44.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10427 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10429 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10430 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10434 - components: - - pos: 43.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10435 - components: - - pos: 43.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10438 - components: - - pos: 43.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10439 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10441 - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10443 - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10444 - components: - - rot: 3.141592653589793 rad - pos: 42.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10445 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10446 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10452 - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10455 - components: - - rot: 3.141592653589793 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10460 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10461 - components: - - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10462 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10463 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10464 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10465 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10466 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10469 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10470 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10471 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10472 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10473 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10476 - components: - - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10477 - components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10478 - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10480 - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10481 - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10482 - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10483 - components: - - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10485 - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10486 - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10487 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10488 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10489 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10490 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10491 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10496 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10497 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10498 - components: - - pos: 15.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10499 - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10500 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10501 - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10502 - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10503 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10504 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10505 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10506 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10508 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10515 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10516 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10517 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10521 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10522 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10523 - components: - - rot: 3.141592653589793 rad - pos: 21.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10524 - components: - - rot: 3.141592653589793 rad - pos: 21.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10525 - components: - - rot: 3.141592653589793 rad - pos: 21.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10526 - components: - - rot: 3.141592653589793 rad - pos: 21.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10527 - components: - - rot: 3.141592653589793 rad - pos: 20.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10528 - components: - - rot: 3.141592653589793 rad - pos: 20.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10529 - components: - - rot: 3.141592653589793 rad - pos: 22.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10530 - components: - - rot: 3.141592653589793 rad - pos: 22.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10531 - components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10532 - components: - - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10533 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10534 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10535 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10536 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10537 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10538 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10539 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10540 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10541 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10542 - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10545 - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10546 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10553 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10554 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10555 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10557 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10558 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10559 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10560 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10563 - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10564 - components: - - rot: 3.141592653589793 rad - pos: 31.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10565 - components: - - rot: 3.141592653589793 rad - pos: 31.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10566 - components: - - rot: 3.141592653589793 rad - pos: 31.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10567 - components: - - rot: 3.141592653589793 rad - pos: 33.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10568 - components: - - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10569 - components: - - rot: 3.141592653589793 rad - pos: 33.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10570 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10571 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10572 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10573 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10574 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10577 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10578 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10579 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10583 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10584 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10585 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10586 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10587 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10588 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10589 - components: - - rot: 3.141592653589793 rad - pos: 33.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10590 - components: - - rot: 3.141592653589793 rad - pos: 33.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10591 - components: - - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10592 - components: - - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10593 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10594 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10595 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10596 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10597 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10598 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10608 - components: - - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10609 - components: - - rot: 3.141592653589793 rad - pos: 32.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10610 - components: - - rot: 3.141592653589793 rad - pos: 32.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10611 - components: - - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10612 - components: - - rot: 3.141592653589793 rad - pos: 32.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10613 - components: - - rot: 3.141592653589793 rad - pos: 32.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10614 - components: - - rot: 3.141592653589793 rad - pos: 32.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10616 - components: - - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10617 - components: - - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10618 - components: - - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10619 - components: - - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10620 - components: - - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10621 - components: - - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10622 - components: - - rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10625 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10626 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10627 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10628 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10629 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10630 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10631 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10632 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10633 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10634 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10635 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10636 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10638 - components: - - rot: 3.141592653589793 rad - pos: 28.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10644 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10645 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10648 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10649 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10650 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10652 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10653 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10655 - components: - - pos: 30.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10656 - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10657 - components: - - pos: 28.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10666 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10667 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10670 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10671 - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10672 - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10673 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10674 - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10676 - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10677 - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10678 - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10679 - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10680 - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10681 - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10685 - components: - - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10689 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10690 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10691 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10692 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10693 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10694 - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10695 - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10701 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10702 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10703 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10704 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10705 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10708 - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10709 - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10710 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10711 - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10712 - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10715 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10716 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10718 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10721 - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10722 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10723 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10730 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10731 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10732 - components: - - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10733 - components: - - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10735 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10737 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10740 - components: - - rot: 3.141592653589793 rad - pos: -2.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10741 - components: - - rot: 3.141592653589793 rad - pos: -2.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10742 - components: - - rot: 3.141592653589793 rad - pos: -2.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10743 - components: - - rot: 3.141592653589793 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10744 - components: - - rot: 3.141592653589793 rad - pos: -2.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10745 - components: - - rot: 3.141592653589793 rad - pos: -3.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10746 - components: - - rot: 3.141592653589793 rad - pos: -3.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10747 - components: - - rot: 3.141592653589793 rad - pos: -3.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10754 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10755 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10756 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10757 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10759 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10760 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10761 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10766 - components: - - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10767 - components: - - rot: 3.141592653589793 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10768 - components: - - rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10769 - components: - - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10770 - components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10771 - components: - - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10774 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10775 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10776 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10777 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10779 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10780 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10781 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10782 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10783 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10787 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10788 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10789 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10790 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10791 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10792 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10793 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10795 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10796 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10797 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10798 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10799 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10804 - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10805 - components: - - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10807 - components: - - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10808 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10809 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10810 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10811 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10816 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10817 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10818 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10819 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10822 - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10823 - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10824 - components: - - pos: -6.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10825 - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10826 - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10827 - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10830 - components: - - rot: 3.141592653589793 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10831 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10832 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10833 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10834 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10835 - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10838 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10839 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10840 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10841 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10848 - components: - - rot: 3.141592653589793 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10849 - components: - - rot: 3.141592653589793 rad - pos: -12.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10850 - components: - - rot: 3.141592653589793 rad - pos: -12.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10851 - components: - - rot: 3.141592653589793 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10852 - components: - - rot: 3.141592653589793 rad - pos: -11.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10853 - components: - - rot: 3.141592653589793 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10856 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10857 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10858 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10859 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10860 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10861 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10862 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10865 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10866 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10867 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10868 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10869 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10870 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10871 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10873 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10874 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10881 - components: - - rot: 3.141592653589793 rad - pos: -14.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10882 - components: - - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10883 - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10884 - components: - - rot: 3.141592653589793 rad - pos: -15.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10885 - components: - - rot: 3.141592653589793 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10886 - components: - - rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10887 - components: - - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10888 - components: - - rot: 3.141592653589793 rad - pos: -21.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10889 - components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10890 - components: - - rot: 3.141592653589793 rad - pos: -21.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10891 - components: - - rot: 3.141592653589793 rad - pos: -16.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10892 - components: - - rot: 3.141592653589793 rad - pos: -16.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10893 - components: - - rot: 3.141592653589793 rad - pos: -16.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10894 - components: - - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10895 - components: - - rot: 3.141592653589793 rad - pos: -15.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10896 - components: - - rot: 3.141592653589793 rad - pos: -12.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10897 - components: - - rot: 3.141592653589793 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10898 - components: - - rot: 3.141592653589793 rad - pos: -12.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10904 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10909 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10910 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10911 - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10912 - components: - - pos: -23.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10913 - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10914 - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10915 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10916 - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10917 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10918 - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10919 - components: - - pos: -25.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10920 - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10927 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10928 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10929 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10930 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 10931 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10932 - components: - - rot: 3.141592653589793 rad - pos: -16.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10933 - components: - - rot: 3.141592653589793 rad - pos: -16.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10934 - components: - - rot: 3.141592653589793 rad - pos: -15.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10935 - components: - - rot: 3.141592653589793 rad - pos: -15.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10936 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10937 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10938 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10939 - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10940 - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10941 - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10942 - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10950 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10951 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10952 - components: - - pos: -15.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10953 - components: - - pos: -15.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10956 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10957 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10958 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10959 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10960 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10961 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10962 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10963 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10964 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10965 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10966 - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10973 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10974 - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10975 - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10976 - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10977 - components: - - pos: -6.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10978 - components: - - pos: -6.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10979 - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10980 - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10985 - components: - - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10986 - components: - - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10987 - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10988 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10989 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10990 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10991 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10993 - components: - - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10996 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10997 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10998 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10999 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11000 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11001 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11002 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11003 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11004 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11005 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11006 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11007 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11008 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11009 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11010 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11011 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11012 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11013 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11014 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11015 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11016 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11017 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11018 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11019 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11020 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11021 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11022 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11023 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11024 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11025 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11026 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11027 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11028 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11029 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11030 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11031 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11032 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11033 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11034 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11035 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11036 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11037 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11038 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11039 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11040 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11041 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11043 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11044 - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11049 - components: - - pos: -33.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11052 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11053 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11060 - components: - - pos: -35.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11061 - components: - - pos: -35.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11062 - components: - - pos: -35.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11063 - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11064 - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11065 - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11068 - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11069 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11073 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11074 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11075 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11076 - components: - - pos: -33.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11077 - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11080 - components: - - rot: 3.141592653589793 rad - pos: -32.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11081 - components: - - rot: 3.141592653589793 rad - pos: -32.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11086 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11087 - components: - - rot: 3.141592653589793 rad - pos: -37.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11088 - components: - - rot: 3.141592653589793 rad - pos: -37.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11089 - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11090 - components: - - pos: -36.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11092 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11093 - components: - - rot: 3.141592653589793 rad - pos: -36.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11095 - components: - - rot: 3.141592653589793 rad - pos: -37.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11096 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11097 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11098 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11099 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11100 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11101 - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11102 - components: - - pos: -41.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11103 - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11104 - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11105 - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11106 - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11107 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11108 - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11111 - components: - - rot: 3.141592653589793 rad - pos: -40.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11112 - components: - - rot: 3.141592653589793 rad - pos: -40.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11113 - components: - - rot: 3.141592653589793 rad - pos: -40.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11114 - components: - - rot: 3.141592653589793 rad - pos: -40.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11125 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11126 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11127 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11128 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11132 - components: - - rot: 3.141592653589793 rad - pos: -39.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11133 - components: - - rot: 3.141592653589793 rad - pos: -39.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11134 - components: - - rot: 3.141592653589793 rad - pos: -39.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11135 - components: - - rot: 3.141592653589793 rad - pos: -39.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11136 - components: - - rot: 3.141592653589793 rad - pos: -39.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11137 - components: - - rot: 3.141592653589793 rad - pos: -39.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11138 - components: - - rot: 3.141592653589793 rad - pos: -39.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11139 - components: - - rot: 3.141592653589793 rad - pos: -39.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11141 - components: - - rot: 3.141592653589793 rad - pos: -39.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11142 - components: - - rot: 3.141592653589793 rad - pos: -39.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11143 - components: - - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11144 - components: - - rot: 3.141592653589793 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11145 - components: - - rot: 3.141592653589793 rad - pos: -39.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11146 - components: - - rot: 3.141592653589793 rad - pos: -39.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11152 - components: - - rot: 3.141592653589793 rad - pos: -37.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11153 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11154 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11155 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11156 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11157 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11158 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11159 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11160 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11165 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11166 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11167 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11168 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11169 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11170 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11171 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11172 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11173 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11177 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11178 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11179 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11180 - components: - - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11181 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11182 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11183 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11184 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11185 - components: - - rot: 3.141592653589793 rad - pos: -6.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11186 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11187 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11188 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11189 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11193 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11196 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11200 - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11201 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11202 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11203 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11204 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11205 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11206 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11207 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11208 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11209 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11212 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11213 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11214 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11215 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11216 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11217 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11218 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11219 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11220 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11221 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11222 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11223 - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11224 - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11225 - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11229 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11231 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11232 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11235 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11236 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11237 - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11238 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11239 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11240 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11243 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11244 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11245 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11246 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11247 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11248 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11249 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11250 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11251 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11252 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11253 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11257 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11258 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11262 - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11263 - components: - - pos: -15.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11264 - components: - - pos: -15.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11265 - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11266 - components: - - pos: -15.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11267 - components: - - pos: -15.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11268 - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11269 - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11270 - components: - - pos: -16.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11271 - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11272 - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11273 - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11274 - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11277 - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11278 - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11279 - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11280 - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11281 - components: - - pos: -15.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11282 - components: - - pos: -15.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11288 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11289 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11290 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11291 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11292 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11293 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11294 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11295 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11296 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11297 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11298 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11299 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11300 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11301 - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11302 - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11303 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11304 - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11305 - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11306 - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11309 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11310 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11311 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11312 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11313 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11314 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11315 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11316 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11317 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11324 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11325 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11326 - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11327 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11328 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11329 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11333 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11334 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11335 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11336 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11338 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11339 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11340 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11341 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11342 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11345 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11346 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11348 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11349 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11350 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11351 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11352 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11353 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11354 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11356 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11357 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11358 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11359 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11360 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11361 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11362 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11363 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11364 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11365 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11368 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11369 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11370 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11371 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11372 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11373 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11374 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11375 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11376 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11377 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11378 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11379 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11380 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11381 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11382 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11383 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11384 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11385 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11386 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11393 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11394 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11395 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11396 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11397 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11398 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11399 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11400 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11401 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11404 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11405 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11406 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11407 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11412 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11413 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11414 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11415 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11417 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11418 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11419 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11421 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11423 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11424 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11425 - components: - - pos: -14.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11426 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11427 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11428 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11429 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11430 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11431 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11432 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11434 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11435 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11436 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11437 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11438 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11447 - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11448 - components: - - pos: -10.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11449 - components: - - pos: -10.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11450 - components: - - pos: -14.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11451 - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11452 - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11453 - components: - - pos: -6.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11454 - components: - - pos: -6.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11455 - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11456 - components: - - pos: -5.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11457 - components: - - pos: -5.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11458 - components: - - pos: -5.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11459 - components: - - pos: -2.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11460 - components: - - pos: -2.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11461 - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11462 - components: - - pos: -1.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11463 - components: - - pos: -1.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11464 - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11465 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11466 - components: - - pos: -3.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11467 - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11468 - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11469 - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11470 - components: - - pos: -2.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11487 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11488 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11489 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11490 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11491 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11492 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11493 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11494 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11495 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11496 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11497 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11498 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11499 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11500 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11501 - components: - - pos: -3.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11502 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11503 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11504 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11505 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11506 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11515 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11517 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11518 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11519 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11520 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11521 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11523 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11524 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11525 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11534 - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11535 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 11540 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11541 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11542 - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11545 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11546 - components: - - pos: 10.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11547 - components: - - pos: 10.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11548 - components: - - pos: 10.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11549 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11550 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11551 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11556 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11557 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11558 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11559 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11560 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11561 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11562 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11563 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11564 - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11565 - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11566 - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11567 - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11569 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11570 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11571 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11572 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11573 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11574 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11575 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11576 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11577 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11578 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11579 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11580 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11581 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11582 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11583 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11584 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11585 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11586 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11644 - components: - - rot: 3.141592653589793 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12127 - components: - - pos: -14.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12128 - components: - - pos: -14.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12129 - components: - - pos: -14.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12130 - components: - - pos: -14.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12131 - components: - - pos: -14.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12132 - components: - - pos: -14.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12133 - components: - - pos: -14.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12134 - components: - - pos: -14.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12135 - components: - - pos: -13.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12136 - components: - - pos: -13.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12137 - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12138 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12139 - components: - - pos: -13.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12140 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12141 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12150 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12151 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12154 - components: - - rot: 3.141592653589793 rad - pos: -10.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12155 - components: - - rot: 3.141592653589793 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12156 - components: - - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12157 - components: - - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12158 - components: - - rot: 3.141592653589793 rad - pos: 0.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12159 - components: - - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12176 - components: - - rot: 3.141592653589793 rad - pos: -10.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12178 - components: - - pos: -9.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12179 - components: - - pos: -9.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12180 - components: - - pos: -10.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12181 - components: - - rot: 3.141592653589793 rad - pos: -8.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12182 - components: - - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12183 - components: - - rot: 3.141592653589793 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12184 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12185 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12186 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12187 - components: - - pos: -2.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12188 - components: - - pos: -1.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12189 - components: - - pos: -0.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12190 - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12191 - components: - - pos: -9.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12192 - components: - - pos: -9.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12193 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12194 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12195 - components: - - rot: 3.141592653589793 rad - pos: -6.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12200 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12201 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12202 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12203 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12204 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12205 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12206 - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12208 - components: - - pos: -7.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12209 - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12210 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12211 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12212 - components: - - rot: 3.141592653589793 rad - pos: -7.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12214 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12215 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12216 - components: - - rot: 3.141592653589793 rad - pos: -8.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12217 - components: - - rot: 3.141592653589793 rad - pos: -8.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12218 - components: - - rot: 3.141592653589793 rad - pos: -4.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12220 - components: - - pos: -4.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12223 - components: - - rot: 3.141592653589793 rad - pos: -8.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12224 - components: - - rot: 3.141592653589793 rad - pos: -8.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12225 - components: - - rot: 3.141592653589793 rad - pos: -4.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12226 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12227 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12228 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12233 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12234 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12235 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12236 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12237 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 12238 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12239 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12250 - components: - - pos: -2.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12251 - components: - - pos: -2.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12252 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12253 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12254 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12255 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12256 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12257 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12258 - components: - - rot: 3.141592653589793 rad - pos: -10.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12259 - components: - - rot: 3.141592653589793 rad - pos: -10.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12260 - components: - - rot: 3.141592653589793 rad - pos: -10.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12261 - components: - - rot: 3.141592653589793 rad - pos: -10.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12266 - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12267 - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12273 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12274 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12275 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 6820 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6830 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6937 - components: - - pos: 36.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6938 - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6974 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6975 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 6983 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - uid: 7022 - components: - - rot: 3.141592653589793 rad - pos: 34.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - enabled: True - type: AmbientSound - - uid: 8765 - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 8766 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 9158 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10101 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10102 - components: - - rot: 3.141592653589793 rad - pos: 27.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10103 - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10104 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10138 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10139 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10140 - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10141 - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10149 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10153 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10194 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10198 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10199 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10200 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10202 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10205 - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10206 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10210 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10217 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10218 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10225 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10226 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10227 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10230 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10254 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10255 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10265 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10270 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10271 - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10272 - components: - - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10277 - components: - - rot: 3.141592653589793 rad - pos: 29.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10279 - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10310 - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10355 - components: - - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10356 - components: - - pos: 41.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10364 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10365 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10386 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10387 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10402 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10403 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10428 - components: - - rot: 3.141592653589793 rad - pos: 43.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10431 - components: - - rot: 3.141592653589793 rad - pos: 42.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10436 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10447 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10453 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10459 - components: - - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10467 - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10468 - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10479 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10484 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10492 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10493 - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10494 - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10495 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10507 - components: - - pos: 16.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10518 - components: - - rot: 3.141592653589793 rad - pos: 20.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10520 - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10543 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10544 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10556 - components: - - rot: 3.141592653589793 rad - pos: 31.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10561 - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10562 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10576 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10581 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10582 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10605 - components: - - pos: 31.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10606 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10615 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10623 - components: - - rot: 3.141592653589793 rad - pos: 29.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10651 - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10654 - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10668 - components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10669 - components: - - rot: 3.141592653589793 rad - pos: 5.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10675 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10683 - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10684 - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10698 - components: - - rot: 3.141592653589793 rad - pos: -0.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10713 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10714 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10720 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10729 - components: - - rot: 3.141592653589793 rad - pos: -1.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10736 - components: - - pos: -0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10738 - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10739 - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10758 - components: - - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10764 - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10765 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10784 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10794 - components: - - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10803 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10806 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10815 - components: - - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10828 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10829 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10836 - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10837 - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10845 - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10863 - components: - - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10864 - components: - - pos: -17.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10872 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10875 - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10876 - components: - - pos: -20.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10878 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10905 - components: - - rot: 3.141592653589793 rad - pos: -23.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10908 - components: - - rot: 3.141592653589793 rad - pos: -24.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10925 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10946 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10947 - components: - - rot: 3.141592653589793 rad - pos: -13.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10948 - components: - - pos: -14.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10949 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10981 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10982 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10983 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10984 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10992 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11045 - components: - - rot: 3.141592653589793 rad - pos: -23.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11046 - components: - - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11047 - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11048 - components: - - pos: -24.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11050 - components: - - rot: 3.141592653589793 rad - pos: -34.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11056 - components: - - rot: 3.141592653589793 rad - pos: -33.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11066 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11067 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11091 - components: - - pos: -37.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11094 - components: - - pos: -36.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11110 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11115 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11116 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11117 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11118 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11119 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11131 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11140 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11161 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11164 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11190 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11192 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11194 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11198 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11199 - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11254 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11255 - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11259 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11275 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11276 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11287 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11307 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11308 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11343 - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11344 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11347 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11355 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11387 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11388 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11389 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11390 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11391 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11392 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11402 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11403 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11416 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11433 - components: - - pos: -8.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11439 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11440 - components: - - pos: -1.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11441 - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11442 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11443 - components: - - pos: -5.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11444 - components: - - pos: -6.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11445 - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11446 - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11485 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11486 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11513 - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11514 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11516 - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11528 - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11529 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11531 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11543 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11553 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11554 - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11568 - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12197 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12198 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12207 - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12213 - components: - - pos: -7.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12219 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12221 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12222 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12248 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasPort - entities: - - uid: 1836 - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 3835 - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6101 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 1 - type: Transform - - uid: 6102 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 1 - type: Transform - - uid: 6109 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 1 - type: Transform - - uid: 6110 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 1 - type: Transform - - uid: 6984 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-15.5 - parent: 1 - type: Transform - - uid: 6985 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 1 - type: Transform - - uid: 6986 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-13.5 - parent: 1 - type: Transform - - uid: 7199 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 1 - type: Transform - - uid: 7203 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform -- proto: GasPressurePump - entities: - - uid: 3239 - components: - - name: waste pump - type: MetaData - - pos: 38.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 6104 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 1 - type: Transform - - uid: 6106 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 1 - type: Transform - - uid: 6107 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 1 - type: Transform - - uid: 6108 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform - - uid: 6868 - components: - - name: n2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-4.5 - parent: 1 - type: Transform - - uid: 6869 - components: - - name: o2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 1 - type: Transform - - uid: 6870 - components: - - name: co2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 1 - type: Transform - - uid: 6871 - components: - - name: n2o pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-10.5 - parent: 1 - type: Transform - - uid: 6872 - components: - - name: water vapor pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 1 - type: Transform - - uid: 6873 - components: - - name: plasma pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 1 - type: Transform - - uid: 6874 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-16.5 - parent: 1 - type: Transform - - uid: 6964 - components: - - name: distro pump - type: MetaData - - pos: 35.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 6976 - components: - - name: mix to space pump - type: MetaData - - pos: 35.5,-17.5 - parent: 1 - type: Transform - - uid: 6977 - components: - - name: mix pump - type: MetaData - - pos: 36.5,-18.5 - parent: 1 - type: Transform - - uid: 6980 - components: - - name: mix output pump - type: MetaData - - rot: 3.141592653589793 rad - pos: 34.5,-17.5 - parent: 1 - type: Transform - - uid: 10190 - components: - - pos: 10.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10192 - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasThermoMachineFreezer - entities: - - uid: 7020 - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform - - uid: 7021 - components: - - pos: 34.5,-8.5 - parent: 1 - type: Transform -- proto: GasThermoMachineHeater - entities: - - uid: 6814 - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform -- proto: GasValve - entities: - - uid: 6978 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-18.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound - - uid: 6990 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-3.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - enabled: False - type: AmbientSound -- proto: GasVentPump - entities: - - uid: 7151 - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 7182 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10112 - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10115 - components: - - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10143 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10144 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10160 - components: - - pos: 20.5,-7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10204 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10219 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10236 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10246 - components: - - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10247 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10248 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10358 - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10359 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10360 - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10390 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10391 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10413 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10432 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10450 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10451 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,34.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10475 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10512 - components: - - rot: 3.141592653589793 rad - pos: 12.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10513 - components: - - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10514 - components: - - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10547 - components: - - rot: 3.141592653589793 rad - pos: 22.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10548 - components: - - rot: 3.141592653589793 rad - pos: 26.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10552 - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10600 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10602 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10604 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10661 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10662 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10663 - components: - - pos: 29.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10665 - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10697 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10706 - components: - - pos: -0.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10707 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10724 - components: - - pos: 3.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10725 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10748 - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10749 - components: - - rot: 3.141592653589793 rad - pos: -3.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10762 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10785 - components: - - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10786 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10821 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10843 - components: - - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10879 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10902 - components: - - rot: 3.141592653589793 rad - pos: -14.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10903 - components: - - rot: 3.141592653589793 rad - pos: -20.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10923 - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10924 - components: - - rot: 3.141592653589793 rad - pos: -24.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10943 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10944 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10967 - components: - - rot: 3.141592653589793 rad - pos: -14.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10968 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10969 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 10995 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11057 - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11058 - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11059 - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11082 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11083 - components: - - pos: -32.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11121 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11122 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11123 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11124 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11129 - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11149 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11150 - components: - - rot: 3.141592653589793 rad - pos: -40.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11162 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11163 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11195 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11234 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11242 - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11261 - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11285 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11286 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11320 - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11321 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11330 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11367 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11410 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11411 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11476 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11477 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11478 - components: - - rot: 3.141592653589793 rad - pos: -11.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11479 - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11480 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11482 - components: - - pos: -7.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11510 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11511 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11512 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11526 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11539 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11589 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11590 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11591 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11605 - components: - - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11608 - components: - - rot: 3.141592653589793 rad - pos: 30.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11646 - components: - - rot: 3.141592653589793 rad - pos: -17.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 11720 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12148 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-49.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12268 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12269 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12276 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,52.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12279 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 12280 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,44.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 3828 - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 7152 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10113 - components: - - pos: 28.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10114 - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10142 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10145 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10161 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10197 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10220 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10237 - components: - - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10361 - components: - - rot: 3.141592653589793 rad - pos: 16.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10362 - components: - - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10363 - components: - - rot: 3.141592653589793 rad - pos: 41.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10388 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10389 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,16.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10414 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10433 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,27.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10448 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,32.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10449 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10474 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10509 - components: - - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10510 - components: - - rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10511 - components: - - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10549 - components: - - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10550 - components: - - rot: 3.141592653589793 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10551 - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10599 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10601 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10603 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10658 - components: - - rot: 3.141592653589793 rad - pos: 30.5,26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10659 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10660 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10664 - components: - - rot: 3.141592653589793 rad - pos: 6.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10696 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10726 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10727 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10750 - components: - - rot: 3.141592653589793 rad - pos: -2.5,24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10751 - components: - - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10763 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10772 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10773 - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10778 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10812 - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10813 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10814 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10842 - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10880 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10899 - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10900 - components: - - rot: 3.141592653589793 rad - pos: -15.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10901 - components: - - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10921 - components: - - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10922 - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10945 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10970 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10971 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10972 - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 10994 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11042 - components: - - rot: 3.141592653589793 rad - pos: -35.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11054 - components: - - rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11055 - components: - - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11084 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11085 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11147 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,7.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11148 - components: - - pos: -39.5,20.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11151 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11174 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11175 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11176 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11233 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11241 - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11260 - components: - - pos: -15.5,-4.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11283 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11284 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11322 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11323 - components: - - pos: -24.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11331 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11332 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11337 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11366 - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11408 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11409 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-23.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11471 - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11472 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11473 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11474 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11475 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11481 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11507 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11508 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-33.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11509 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-31.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11527 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11538 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11552 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-26.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11587 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11588 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11604 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11609 - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11645 - components: - - rot: 3.141592653589793 rad - pos: -18.5,8.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 11719 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12147 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-49.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12270 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,51.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12271 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12272 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,53.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12277 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,45.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - uid: 12278 - components: - - rot: 3.141592653589793 rad - pos: -7.5,44.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor -- proto: GeneratorBasic15kW - entities: - - uid: 3673 - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - uid: 3674 - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform -- proto: Girder - entities: - - uid: 1598 - components: - - pos: -10.5,-19.5 - parent: 1 - type: Transform - - uid: 1763 - components: - - pos: -25.5,19.5 - parent: 1 - type: Transform - - uid: 1788 - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - uid: 1792 - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform -- proto: GravityGenerator - entities: - - uid: 7548 - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- proto: Grille - entities: - - uid: 30 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 42 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 43 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 53 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 56 - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform - - uid: 58 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 59 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 65 - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform - - uid: 66 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 67 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 74 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 76 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 83 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 85 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 87 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 88 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 89 - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 90 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - uid: 91 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - uid: 92 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 99 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 100 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - uid: 101 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 102 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 104 - components: - - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 105 - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 113 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 114 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 115 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 116 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 138 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 139 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - uid: 140 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - uid: 141 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 166 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 167 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 169 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 173 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 176 - components: - - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 177 - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 179 - components: - - pos: -7.5,6.5 - parent: 1 - type: Transform - - uid: 181 - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 187 - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 196 - components: - - pos: -14.5,16.5 - parent: 1 - type: Transform - - uid: 197 - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 210 - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 213 - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 214 - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 234 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - uid: 240 - components: - - pos: -13.5,6.5 - parent: 1 - type: Transform - - uid: 241 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 242 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 243 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 244 - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 245 - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 246 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 247 - components: - - pos: -16.5,6.5 - parent: 1 - type: Transform - - uid: 248 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - uid: 249 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - uid: 250 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 251 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 252 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - uid: 253 - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform - - uid: 266 - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform - - uid: 364 - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform - - uid: 365 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - uid: 370 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform - - uid: 374 - components: - - pos: -3.5,33.5 - parent: 1 - type: Transform - - uid: 375 - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform - - uid: 377 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 383 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 1 - type: Transform - - uid: 384 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - uid: 385 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 1 - type: Transform - - uid: 386 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,27.5 - parent: 1 - type: Transform - - uid: 405 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 1 - type: Transform - - uid: 406 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - type: Transform - - uid: 408 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 1 - type: Transform - - uid: 409 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - type: Transform - - uid: 416 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - uid: 422 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - uid: 423 - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform - - uid: 424 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - uid: 425 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - uid: 427 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - type: Transform - - uid: 431 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - uid: 449 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 471 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 1 - type: Transform - - uid: 474 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform - - uid: 487 - components: - - rot: 3.141592653589793 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 488 - components: - - rot: 3.141592653589793 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 489 - components: - - rot: 3.141592653589793 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 490 - components: - - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 491 - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 492 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 493 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 494 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 522 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 523 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 532 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 533 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 546 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - uid: 580 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 1 - type: Transform - - uid: 581 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 583 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - uid: 584 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - uid: 585 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 1 - type: Transform - - uid: 586 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - uid: 596 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-11.5 - parent: 1 - type: Transform - - uid: 601 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-11.5 - parent: 1 - type: Transform - - uid: 619 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 1 - type: Transform - - uid: 620 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-13.5 - parent: 1 - type: Transform - - uid: 621 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 1 - type: Transform - - uid: 622 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-11.5 - parent: 1 - type: Transform - - uid: 623 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 624 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-4.5 - parent: 1 - type: Transform - - uid: 668 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 669 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - uid: 675 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 678 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 712 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 713 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 714 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - uid: 715 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 716 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 717 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,4.5 - parent: 1 - type: Transform - - uid: 718 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1 - type: Transform - - uid: 719 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 720 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 1 - type: Transform - - uid: 722 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 724 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 726 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 1 - type: Transform - - uid: 741 - components: - - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 1 - type: Transform - - uid: 742 - components: - - rot: 3.141592653589793 rad - pos: 19.5,11.5 - parent: 1 - type: Transform - - uid: 743 - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 1 - type: Transform - - uid: 744 - components: - - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 1 - type: Transform - - uid: 969 - components: - - pos: 28.5,31.5 - parent: 1 - type: Transform - - uid: 970 - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform - - uid: 971 - components: - - pos: 26.5,31.5 - parent: 1 - type: Transform - - uid: 972 - components: - - pos: 25.5,31.5 - parent: 1 - type: Transform - - uid: 973 - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform - - uid: 974 - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform - - uid: 975 - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform - - uid: 976 - components: - - pos: 30.5,29.5 - parent: 1 - type: Transform - - uid: 977 - components: - - pos: 31.5,29.5 - parent: 1 - type: Transform - - uid: 978 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 1029 - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - uid: 1035 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - uid: 1047 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 1052 - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform - - uid: 1053 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 1080 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - uid: 1081 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - uid: 1082 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - uid: 1087 - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform - - uid: 1088 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - uid: 1089 - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform - - uid: 1101 - components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform - - uid: 1129 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - uid: 1186 - components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform - - uid: 1187 - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform - - uid: 1188 - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - uid: 1189 - components: - - pos: 24.5,-4.5 - parent: 1 - type: Transform - - uid: 1190 - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform - - uid: 1191 - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 1192 - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - uid: 1193 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - uid: 1194 - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform - - uid: 1257 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,3.5 - parent: 1 - type: Transform - - uid: 1260 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,10.5 - parent: 1 - type: Transform - - uid: 1269 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,9.5 - parent: 1 - type: Transform - - uid: 1273 - components: - - pos: 46.5,0.5 - parent: 1 - type: Transform - - uid: 1274 - components: - - pos: 47.5,0.5 - parent: 1 - type: Transform - - uid: 1275 - components: - - pos: 47.5,1.5 - parent: 1 - type: Transform - - uid: 1277 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,2.5 - parent: 1 - type: Transform - - uid: 1280 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 1 - type: Transform - - uid: 1289 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,7.5 - parent: 1 - type: Transform - - uid: 1291 - components: - - pos: 47.5,15.5 - parent: 1 - type: Transform - - uid: 1292 - components: - - pos: 47.5,16.5 - parent: 1 - type: Transform - - uid: 1300 - components: - - pos: 47.5,17.5 - parent: 1 - type: Transform - - uid: 1325 - components: - - pos: 40.5,-3.5 - parent: 1 - type: Transform - - uid: 1326 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - uid: 1327 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - uid: 1328 - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform - - uid: 1329 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - uid: 1330 - components: - - pos: 40.5,-8.5 - parent: 1 - type: Transform - - uid: 1331 - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform - - uid: 1332 - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform - - uid: 1333 - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - uid: 1334 - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform - - uid: 1335 - components: - - pos: 40.5,-13.5 - parent: 1 - type: Transform - - uid: 1336 - components: - - pos: 40.5,-14.5 - parent: 1 - type: Transform - - uid: 1337 - components: - - pos: 40.5,-15.5 - parent: 1 - type: Transform - - uid: 1338 - components: - - pos: 40.5,-16.5 - parent: 1 - type: Transform - - uid: 1339 - components: - - pos: 40.5,-17.5 - parent: 1 - type: Transform - - uid: 1340 - components: - - pos: 40.5,-18.5 - parent: 1 - type: Transform - - uid: 1341 - components: - - pos: 40.5,-19.5 - parent: 1 - type: Transform - - uid: 1351 - components: - - pos: 31.5,-19.5 - parent: 1 - type: Transform - - uid: 1352 - components: - - pos: 32.5,-19.5 - parent: 1 - type: Transform - - uid: 1354 - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform - - uid: 1355 - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform - - uid: 1356 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - uid: 1357 - components: - - pos: 37.5,-19.5 - parent: 1 - type: Transform - - uid: 1358 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - uid: 1359 - components: - - pos: 39.5,-19.5 - parent: 1 - type: Transform - - uid: 1373 - components: - - pos: 37.5,-23.5 - parent: 1 - type: Transform - - uid: 1374 - components: - - pos: 37.5,-22.5 - parent: 1 - type: Transform - - uid: 1375 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - uid: 1376 - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform - - uid: 1377 - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform - - uid: 1378 - components: - - pos: 33.5,-22.5 - parent: 1 - type: Transform - - uid: 1379 - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform - - uid: 1427 - components: - - pos: 42.5,-17.5 - parent: 1 - type: Transform - - uid: 1428 - components: - - pos: 42.5,-15.5 - parent: 1 - type: Transform - - uid: 1429 - components: - - pos: 42.5,-13.5 - parent: 1 - type: Transform - - uid: 1430 - components: - - pos: 42.5,-11.5 - parent: 1 - type: Transform - - uid: 1431 - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform - - uid: 1432 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - uid: 1433 - components: - - pos: 42.5,-5.5 - parent: 1 - type: Transform - - uid: 1461 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - uid: 1475 - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform - - uid: 1493 - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform - - uid: 1497 - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform - - uid: 1501 - components: - - pos: 4.5,-24.5 - parent: 1 - type: Transform - - uid: 1502 - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform - - uid: 1514 - components: - - pos: 7.5,-25.5 - parent: 1 - type: Transform - - uid: 1515 - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - uid: 1528 - components: - - pos: 17.5,-23.5 - parent: 1 - type: Transform - - uid: 1531 - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform - - uid: 1534 - components: - - pos: 20.5,-28.5 - parent: 1 - type: Transform - - uid: 1553 - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform - - uid: 1554 - components: - - pos: 9.5,-30.5 - parent: 1 - type: Transform - - uid: 1555 - components: - - pos: 12.5,-30.5 - parent: 1 - type: Transform - - uid: 1556 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - uid: 1557 - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - uid: 1558 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - uid: 1563 - components: - - pos: 24.5,-25.5 - parent: 1 - type: Transform - - uid: 1564 - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform - - uid: 1565 - components: - - pos: 27.5,-23.5 - parent: 1 - type: Transform - - uid: 1566 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - uid: 1572 - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform - - uid: 1573 - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - - uid: 1574 - components: - - pos: 11.5,-24.5 - parent: 1 - type: Transform - - uid: 1575 - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform - - uid: 1617 - components: - - pos: 3.5,-30.5 - parent: 1 - type: Transform - - uid: 1618 - components: - - pos: 3.5,-29.5 - parent: 1 - type: Transform - - uid: 1622 - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform - - uid: 1623 - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform - - uid: 1624 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 1629 - components: - - pos: -1.5,-23.5 - parent: 1 - type: Transform - - uid: 1630 - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform - - uid: 1631 - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform - - uid: 1632 - components: - - pos: -5.5,-23.5 - parent: 1 - type: Transform - - uid: 1686 - components: - - pos: 43.5,23.5 - parent: 1 - type: Transform - - uid: 1724 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-28.5 - parent: 1 - type: Transform - - uid: 1725 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 1 - type: Transform - - uid: 1753 - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform - - uid: 1754 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - uid: 1785 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,25.5 - parent: 1 - type: Transform - - uid: 1800 - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform - - uid: 1801 - components: - - pos: -23.5,19.5 - parent: 1 - type: Transform - - uid: 1953 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,8.5 - parent: 1 - type: Transform - - uid: 1958 - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - - uid: 1959 - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 1991 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - type: Transform - - uid: 1992 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - uid: 1993 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - uid: 1994 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - uid: 2001 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 1 - type: Transform - - uid: 2068 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - uid: 2069 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,12.5 - parent: 1 - type: Transform - - uid: 2070 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 1 - type: Transform - - uid: 2072 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,12.5 - parent: 1 - type: Transform - - uid: 2073 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,2.5 - parent: 1 - type: Transform - - uid: 2074 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,2.5 - parent: 1 - type: Transform - - uid: 2075 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 1 - type: Transform - - uid: 2076 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,36.5 - parent: 1 - type: Transform - - uid: 2078 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 1 - type: Transform - - uid: 2079 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - uid: 2080 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - uid: 2093 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 1 - type: Transform - - uid: 2102 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 2109 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - uid: 2114 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,36.5 - parent: 1 - type: Transform - - uid: 2115 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - type: Transform - - uid: 2116 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 1 - type: Transform - - uid: 2117 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - type: Transform - - uid: 2118 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform - - uid: 2119 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,9.5 - parent: 1 - type: Transform - - uid: 2120 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform - - uid: 2121 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 1 - type: Transform - - uid: 2122 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform - - uid: 2128 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 1 - type: Transform - - uid: 2129 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 1 - type: Transform - - uid: 2133 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,12.5 - parent: 1 - type: Transform - - uid: 2152 - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform - - uid: 2221 - components: - - pos: 43.5,21.5 - parent: 1 - type: Transform - - uid: 2234 - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - uid: 2265 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 1 - type: Transform - - uid: 2266 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-24.5 - parent: 1 - type: Transform - - uid: 2267 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 1 - type: Transform - - uid: 2268 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-24.5 - parent: 1 - type: Transform - - uid: 2270 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - type: Transform - - uid: 2272 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 1 - type: Transform - - uid: 2285 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,26.5 - parent: 1 - type: Transform - - uid: 2286 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,26.5 - parent: 1 - type: Transform - - uid: 2287 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - type: Transform - - uid: 2288 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,26.5 - parent: 1 - type: Transform - - uid: 2293 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,31.5 - parent: 1 - type: Transform - - uid: 2294 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - type: Transform - - uid: 2295 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform - - uid: 2296 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 1 - type: Transform - - uid: 2298 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,22.5 - parent: 1 - type: Transform - - uid: 2303 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,30.5 - parent: 1 - type: Transform - - uid: 2304 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,24.5 - parent: 1 - type: Transform - - uid: 2325 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,37.5 - parent: 1 - type: Transform - - uid: 2332 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,36.5 - parent: 1 - type: Transform - - uid: 2339 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,37.5 - parent: 1 - type: Transform - - uid: 2377 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 1 - type: Transform - - uid: 2382 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,38.5 - parent: 1 - type: Transform - - uid: 2383 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,38.5 - parent: 1 - type: Transform - - uid: 2384 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,36.5 - parent: 1 - type: Transform - - uid: 2385 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,36.5 - parent: 1 - type: Transform - - uid: 2386 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - type: Transform - - uid: 2387 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - uid: 2388 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 2389 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 2390 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,38.5 - parent: 1 - type: Transform - - uid: 2391 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,36.5 - parent: 1 - type: Transform - - uid: 2392 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - type: Transform - - uid: 2393 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,38.5 - parent: 1 - type: Transform - - uid: 2394 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - - uid: 2395 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,38.5 - parent: 1 - type: Transform - - uid: 2396 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,37.5 - parent: 1 - type: Transform - - uid: 2397 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,38.5 - parent: 1 - type: Transform - - uid: 2405 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,36.5 - parent: 1 - type: Transform - - uid: 2410 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - type: Transform - - uid: 2411 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - type: Transform - - uid: 2412 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,36.5 - parent: 1 - type: Transform - - uid: 2415 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 1 - type: Transform - - uid: 2416 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,4.5 - parent: 1 - type: Transform - - uid: 2417 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,36.5 - parent: 1 - type: Transform - - uid: 2662 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 2690 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - type: Transform - - uid: 2691 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,54.5 - parent: 1 - type: Transform - - uid: 2783 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-53.5 - parent: 1 - type: Transform - - uid: 2784 - components: - - pos: -16.5,-47.5 - parent: 1 - type: Transform - - uid: 2795 - components: - - pos: -14.5,-54.5 - parent: 1 - type: Transform - - uid: 2796 - components: - - pos: -15.5,-54.5 - parent: 1 - type: Transform - - uid: 2804 - components: - - pos: -13.5,-54.5 - parent: 1 - type: Transform - - uid: 2807 - components: - - pos: -16.5,-54.5 - parent: 1 - type: Transform - - uid: 2836 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-55.5 - parent: 1 - type: Transform - - uid: 2851 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-52.5 - parent: 1 - type: Transform - - uid: 2852 - components: - - pos: -12.5,-54.5 - parent: 1 - type: Transform - - uid: 2891 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-56.5 - parent: 1 - type: Transform - - uid: 2892 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-57.5 - parent: 1 - type: Transform - - uid: 2893 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 1 - type: Transform - - uid: 2894 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-59.5 - parent: 1 - type: Transform - - uid: 2895 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-60.5 - parent: 1 - type: Transform - - uid: 2896 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-61.5 - parent: 1 - type: Transform - - uid: 2897 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-61.5 - parent: 1 - type: Transform - - uid: 2898 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-61.5 - parent: 1 - type: Transform - - uid: 2899 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-62.5 - parent: 1 - type: Transform - - uid: 2900 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-63.5 - parent: 1 - type: Transform - - uid: 2901 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-63.5 - parent: 1 - type: Transform - - uid: 2902 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-63.5 - parent: 1 - type: Transform - - uid: 2903 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-63.5 - parent: 1 - type: Transform - - uid: 2904 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-63.5 - parent: 1 - type: Transform - - uid: 2905 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-63.5 - parent: 1 - type: Transform - - uid: 2906 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-63.5 - parent: 1 - type: Transform - - uid: 2907 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-62.5 - parent: 1 - type: Transform - - uid: 2908 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 1 - type: Transform - - uid: 2909 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-60.5 - parent: 1 - type: Transform - - uid: 2910 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-59.5 - parent: 1 - type: Transform - - uid: 2911 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-58.5 - parent: 1 - type: Transform - - uid: 2912 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-57.5 - parent: 1 - type: Transform - - uid: 2913 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-56.5 - parent: 1 - type: Transform - - uid: 2914 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 1 - type: Transform - - uid: 2915 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-42.5 - parent: 1 - type: Transform - - uid: 2916 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-54.5 - parent: 1 - type: Transform - - uid: 2918 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-52.5 - parent: 1 - type: Transform - - uid: 2919 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-51.5 - parent: 1 - type: Transform - - uid: 2920 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-50.5 - parent: 1 - type: Transform - - uid: 2921 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-49.5 - parent: 1 - type: Transform - - uid: 2923 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 1 - type: Transform - - uid: 2924 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 1 - type: Transform - - uid: 2925 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 1 - type: Transform - - uid: 2933 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 - parent: 1 - type: Transform - - uid: 2935 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 1 - type: Transform - - uid: 2937 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 1 - type: Transform - - uid: 2938 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-38.5 - parent: 1 - type: Transform - - uid: 2940 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-36.5 - parent: 1 - type: Transform - - uid: 2942 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 1 - type: Transform - - uid: 2943 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 1 - type: Transform - - uid: 2945 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-39.5 - parent: 1 - type: Transform - - uid: 2946 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 1 - type: Transform - - uid: 2947 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 1 - type: Transform - - uid: 2948 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 1 - type: Transform - - uid: 2949 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-35.5 - parent: 1 - type: Transform - - uid: 2951 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-33.5 - parent: 1 - type: Transform - - uid: 2971 - components: - - pos: -22.5,-30.5 - parent: 1 - type: Transform - - uid: 2983 - components: - - pos: -24.5,-29.5 - parent: 1 - type: Transform - - uid: 2984 - components: - - pos: -21.5,-32.5 - parent: 1 - type: Transform - - uid: 2988 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 1 - type: Transform - - uid: 2989 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 1 - type: Transform - - uid: 2990 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 1 - type: Transform - - uid: 2992 - components: - - pos: -7.5,-34.5 - parent: 1 - type: Transform - - uid: 2993 - components: - - pos: -6.5,-34.5 - parent: 1 - type: Transform - - uid: 3007 - components: - - pos: -20.5,-32.5 - parent: 1 - type: Transform - - uid: 3008 - components: - - pos: -22.5,-32.5 - parent: 1 - type: Transform - - uid: 3009 - components: - - pos: -24.5,-32.5 - parent: 1 - type: Transform - - uid: 3016 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 1 - type: Transform - - uid: 3017 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 1 - type: Transform - - uid: 3019 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-34.5 - parent: 1 - type: Transform - - uid: 3021 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-36.5 - parent: 1 - type: Transform - - uid: 3024 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-37.5 - parent: 1 - type: Transform - - uid: 3025 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-37.5 - parent: 1 - type: Transform - - uid: 3026 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-38.5 - parent: 1 - type: Transform - - uid: 3027 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-38.5 - parent: 1 - type: Transform - - uid: 3029 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-38.5 - parent: 1 - type: Transform - - uid: 3030 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-38.5 - parent: 1 - type: Transform - - uid: 3031 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-38.5 - parent: 1 - type: Transform - - uid: 3033 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-37.5 - parent: 1 - type: Transform - - uid: 3036 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 1 - type: Transform - - uid: 3037 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 1 - type: Transform - - uid: 3038 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 1 - type: Transform - - uid: 3039 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 1 - type: Transform - - uid: 3040 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-33.5 - parent: 1 - type: Transform - - uid: 3043 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-30.5 - parent: 1 - type: Transform - - uid: 3044 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 1 - type: Transform - - uid: 3045 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-28.5 - parent: 1 - type: Transform - - uid: 3089 - components: - - pos: -36.5,13.5 - parent: 1 - type: Transform - - uid: 3254 - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform - - uid: 3815 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,25.5 - parent: 1 - type: Transform - - uid: 4049 - components: - - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - uid: 4050 - components: - - rot: 3.141592653589793 rad - pos: 4.5,32.5 - parent: 1 - type: Transform - - uid: 4051 - components: - - rot: 3.141592653589793 rad - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 4817 - components: - - pos: 47.5,20.5 - parent: 1 - type: Transform - - uid: 4818 - components: - - pos: 47.5,19.5 - parent: 1 - type: Transform - - uid: 4822 - components: - - pos: 46.5,24.5 - parent: 1 - type: Transform - - uid: 4823 - components: - - pos: 44.5,24.5 - parent: 1 - type: Transform - - uid: 4827 - components: - - pos: 40.5,29.5 - parent: 1 - type: Transform - - uid: 4828 - components: - - pos: 39.5,29.5 - parent: 1 - type: Transform - - uid: 4833 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,28.5 - parent: 1 - type: Transform - - uid: 4838 - components: - - pos: 47.5,27.5 - parent: 1 - type: Transform - - uid: 4839 - components: - - pos: 47.5,26.5 - parent: 1 - type: Transform - - uid: 4841 - components: - - pos: 41.5,29.5 - parent: 1 - type: Transform - - uid: 4843 - components: - - pos: 45.5,29.5 - parent: 1 - type: Transform - - uid: 4844 - components: - - pos: 46.5,29.5 - parent: 1 - type: Transform - - uid: 4873 - components: - - rot: 3.141592653589793 rad - pos: 40.5,35.5 - parent: 1 - type: Transform - - uid: 4874 - components: - - rot: 3.141592653589793 rad - pos: 41.5,35.5 - parent: 1 - type: Transform - - uid: 4875 - components: - - rot: 3.141592653589793 rad - pos: 42.5,35.5 - parent: 1 - type: Transform - - uid: 4876 - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - type: Transform - - uid: 4877 - components: - - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - type: Transform - - uid: 4878 - components: - - rot: 3.141592653589793 rad - pos: 45.5,35.5 - parent: 1 - type: Transform - - uid: 4881 - components: - - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - type: Transform - - uid: 4882 - components: - - rot: 3.141592653589793 rad - pos: 47.5,32.5 - parent: 1 - type: Transform - - uid: 4883 - components: - - rot: 3.141592653589793 rad - pos: 47.5,31.5 - parent: 1 - type: Transform - - uid: 6328 - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform - - uid: 6329 - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform - - uid: 7067 - components: - - pos: 3.5,-31.5 - parent: 1 - type: Transform - - uid: 7068 - components: - - pos: 3.5,-32.5 - parent: 1 - type: Transform - - uid: 7069 - components: - - pos: 3.5,-33.5 - parent: 1 - type: Transform - - uid: 7299 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 7303 - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform - - uid: 7572 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 1 - type: Transform - - uid: 7573 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-6.5 - parent: 1 - type: Transform - - uid: 7576 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-4.5 - parent: 1 - type: Transform - - uid: 7577 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-3.5 - parent: 1 - type: Transform - - uid: 7578 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-2.5 - parent: 1 - type: Transform - - uid: 7579 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 1 - type: Transform - - uid: 8258 - components: - - pos: -44.5,-18.5 - parent: 1 - type: Transform - - uid: 8266 - components: - - pos: -44.5,-17.5 - parent: 1 - type: Transform - - uid: 8271 - components: - - pos: -44.5,-16.5 - parent: 1 - type: Transform - - uid: 8273 - components: - - pos: -44.5,-19.5 - parent: 1 - type: Transform - - uid: 8321 - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform - - uid: 8322 - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform - - uid: 8328 - components: - - pos: 42.5,-21.5 - parent: 1 - type: Transform - - uid: 8491 - components: - - pos: -20.5,-55.5 - parent: 1 - type: Transform - - uid: 8492 - components: - - pos: -20.5,-53.5 - parent: 1 - type: Transform - - uid: 8493 - components: - - pos: -22.5,-51.5 - parent: 1 - type: Transform - - uid: 8497 - components: - - pos: -22.5,-50.5 - parent: 1 - type: Transform - - uid: 8501 - components: - - pos: -22.5,-48.5 - parent: 1 - type: Transform - - uid: 8502 - components: - - pos: -22.5,-47.5 - parent: 1 - type: Transform - - uid: 8503 - components: - - pos: -22.5,-46.5 - parent: 1 - type: Transform - - uid: 8504 - components: - - pos: -22.5,-45.5 - parent: 1 - type: Transform - - uid: 8505 - components: - - pos: -21.5,-45.5 - parent: 1 - type: Transform - - uid: 8507 - components: - - pos: -19.5,-45.5 - parent: 1 - type: Transform - - uid: 8509 - components: - - pos: -8.5,-36.5 - parent: 1 - type: Transform - - uid: 8510 - components: - - pos: -7.5,-36.5 - parent: 1 - type: Transform - - uid: 8511 - components: - - pos: -7.5,-37.5 - parent: 1 - type: Transform - - uid: 8512 - components: - - pos: -6.5,-37.5 - parent: 1 - type: Transform - - uid: 8514 - components: - - pos: -4.5,-37.5 - parent: 1 - type: Transform - - uid: 8515 - components: - - pos: -3.5,-37.5 - parent: 1 - type: Transform - - uid: 8517 - components: - - pos: -1.5,-37.5 - parent: 1 - type: Transform - - uid: 8519 - components: - - pos: 18.5,-31.5 - parent: 1 - type: Transform - - uid: 8520 - components: - - pos: 19.5,-31.5 - parent: 1 - type: Transform - - uid: 8521 - components: - - pos: 20.5,-31.5 - parent: 1 - type: Transform - - uid: 8524 - components: - - pos: 23.5,-31.5 - parent: 1 - type: Transform - - uid: 8526 - components: - - pos: 40.5,-26.5 - parent: 1 - type: Transform - - uid: 8528 - components: - - pos: 32.5,-27.5 - parent: 1 - type: Transform - - uid: 8529 - components: - - pos: 33.5,-27.5 - parent: 1 - type: Transform - - uid: 8530 - components: - - pos: 34.5,-27.5 - parent: 1 - type: Transform - - uid: 8532 - components: - - pos: 36.5,-27.5 - parent: 1 - type: Transform - - uid: 8534 - components: - - pos: 38.5,-27.5 - parent: 1 - type: Transform - - uid: 8536 - components: - - pos: 40.5,-24.5 - parent: 1 - type: Transform - - uid: 8537 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-23.5 - parent: 1 - type: Transform - - uid: 8539 - components: - - pos: 43.5,-21.5 - parent: 1 - type: Transform - - uid: 8541 - components: - - pos: 45.5,-21.5 - parent: 1 - type: Transform - - uid: 8542 - components: - - pos: 46.5,-21.5 - parent: 1 - type: Transform - - uid: 8544 - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform - - uid: 8545 - components: - - pos: 48.5,-21.5 - parent: 1 - type: Transform - - uid: 8546 - components: - - pos: 49.5,-19.5 - parent: 1 - type: Transform - - uid: 8547 - components: - - pos: 49.5,-18.5 - parent: 1 - type: Transform - - uid: 8548 - components: - - pos: 49.5,-17.5 - parent: 1 - type: Transform - - uid: 8550 - components: - - pos: 49.5,-15.5 - parent: 1 - type: Transform - - uid: 8551 - components: - - pos: 49.5,-14.5 - parent: 1 - type: Transform - - uid: 8552 - components: - - pos: 49.5,-13.5 - parent: 1 - type: Transform - - uid: 8553 - components: - - pos: 49.5,-12.5 - parent: 1 - type: Transform - - uid: 8555 - components: - - pos: 49.5,-10.5 - parent: 1 - type: Transform - - uid: 8556 - components: - - pos: 49.5,-9.5 - parent: 1 - type: Transform - - uid: 8557 - components: - - pos: 49.5,-8.5 - parent: 1 - type: Transform - - uid: 8558 - components: - - pos: 49.5,-7.5 - parent: 1 - type: Transform - - uid: 8560 - components: - - pos: 49.5,-5.5 - parent: 1 - type: Transform - - uid: 8561 - components: - - pos: 49.5,-4.5 - parent: 1 - type: Transform - - uid: 8562 - components: - - pos: 49.5,-3.5 - parent: 1 - type: Transform - - uid: 8563 - components: - - pos: 49.5,-2.5 - parent: 1 - type: Transform - - uid: 8566 - components: - - pos: 49.5,27.5 - parent: 1 - type: Transform - - uid: 8567 - components: - - pos: 49.5,28.5 - parent: 1 - type: Transform - - uid: 8568 - components: - - pos: 49.5,29.5 - parent: 1 - type: Transform - - uid: 8569 - components: - - pos: 49.5,30.5 - parent: 1 - type: Transform - - uid: 8571 - components: - - pos: 49.5,32.5 - parent: 1 - type: Transform - - uid: 8572 - components: - - pos: 49.5,33.5 - parent: 1 - type: Transform - - uid: 8574 - components: - - pos: 49.5,35.5 - parent: 1 - type: Transform - - uid: 8576 - components: - - pos: 48.5,37.5 - parent: 1 - type: Transform - - uid: 8577 - components: - - pos: 47.5,37.5 - parent: 1 - type: Transform - - uid: 8579 - components: - - pos: 45.5,37.5 - parent: 1 - type: Transform - - uid: 8580 - components: - - pos: 44.5,37.5 - parent: 1 - type: Transform - - uid: 8581 - components: - - pos: 43.5,37.5 - parent: 1 - type: Transform - - uid: 8583 - components: - - pos: 41.5,37.5 - parent: 1 - type: Transform - - uid: 8584 - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform - - uid: 8585 - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - uid: 8587 - components: - - pos: 4.5,45.5 - parent: 1 - type: Transform - - uid: 8589 - components: - - pos: 3.5,39.5 - parent: 1 - type: Transform - - uid: 8590 - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform - - uid: 8591 - components: - - pos: 2.5,42.5 - parent: 1 - type: Transform - - uid: 8593 - components: - - pos: 3.5,45.5 - parent: 1 - type: Transform - - uid: 8594 - components: - - pos: 7.5,51.5 - parent: 1 - type: Transform - - uid: 8595 - components: - - pos: 6.5,45.5 - parent: 1 - type: Transform - - uid: 8598 - components: - - pos: 7.5,48.5 - parent: 1 - type: Transform - - uid: 8599 - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform - - uid: 8602 - components: - - pos: 7.5,52.5 - parent: 1 - type: Transform - - uid: 8603 - components: - - pos: 7.5,53.5 - parent: 1 - type: Transform - - uid: 8606 - components: - - pos: 7.5,56.5 - parent: 1 - type: Transform - - uid: 8607 - components: - - pos: 7.5,57.5 - parent: 1 - type: Transform - - uid: 8608 - components: - - pos: 7.5,58.5 - parent: 1 - type: Transform - - uid: 8611 - components: - - pos: 4.5,59.5 - parent: 1 - type: Transform - - uid: 8612 - components: - - pos: 3.5,59.5 - parent: 1 - type: Transform - - uid: 8613 - components: - - pos: 2.5,59.5 - parent: 1 - type: Transform - - uid: 8615 - components: - - pos: 0.5,59.5 - parent: 1 - type: Transform - - uid: 8617 - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform - - uid: 8618 - components: - - pos: -3.5,60.5 - parent: 1 - type: Transform - - uid: 8619 - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - uid: 8620 - components: - - pos: -5.5,60.5 - parent: 1 - type: Transform - - uid: 8622 - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - uid: 8624 - components: - - pos: -9.5,60.5 - parent: 1 - type: Transform - - uid: 8625 - components: - - pos: -10.5,60.5 - parent: 1 - type: Transform - - uid: 8627 - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform - - uid: 8629 - components: - - pos: -14.5,58.5 - parent: 1 - type: Transform - - uid: 8630 - components: - - pos: -14.5,57.5 - parent: 1 - type: Transform - - uid: 8631 - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform - - uid: 8633 - components: - - pos: -14.5,54.5 - parent: 1 - type: Transform - - uid: 8634 - components: - - pos: -14.5,53.5 - parent: 1 - type: Transform - - uid: 8635 - components: - - pos: -14.5,52.5 - parent: 1 - type: Transform - - uid: 8636 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 1 - type: Transform - - uid: 8638 - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform - - uid: 8639 - components: - - pos: -14.5,48.5 - parent: 1 - type: Transform - - uid: 8640 - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform - - uid: 8643 - components: - - pos: -12.5,44.5 - parent: 1 - type: Transform - - uid: 8645 - components: - - pos: -12.5,42.5 - parent: 1 - type: Transform - - uid: 8646 - components: - - pos: -12.5,41.5 - parent: 1 - type: Transform - - uid: 8648 - components: - - pos: -14.5,37.5 - parent: 1 - type: Transform - - uid: 8652 - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform - - uid: 8653 - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform - - uid: 8654 - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform - - uid: 8655 - components: - - pos: -21.5,35.5 - parent: 1 - type: Transform - - uid: 8657 - components: - - pos: -21.5,37.5 - parent: 1 - type: Transform - - uid: 8658 - components: - - pos: -21.5,38.5 - parent: 1 - type: Transform - - uid: 8659 - components: - - pos: -21.5,39.5 - parent: 1 - type: Transform - - uid: 8661 - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform - - uid: 8662 - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform - - uid: 8664 - components: - - pos: -23.5,42.5 - parent: 1 - type: Transform - - uid: 8665 - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - uid: 8666 - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform - - uid: 8667 - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - uid: 8668 - components: - - pos: -25.5,44.5 - parent: 1 - type: Transform - - uid: 8669 - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform - - uid: 8670 - components: - - pos: -27.5,44.5 - parent: 1 - type: Transform - - uid: 8672 - components: - - pos: -29.5,44.5 - parent: 1 - type: Transform - - uid: 8673 - components: - - pos: -30.5,44.5 - parent: 1 - type: Transform - - uid: 8674 - components: - - pos: -30.5,43.5 - parent: 1 - type: Transform - - uid: 8675 - components: - - pos: -30.5,42.5 - parent: 1 - type: Transform - - uid: 8676 - components: - - pos: -31.5,42.5 - parent: 1 - type: Transform - - uid: 8678 - components: - - pos: -33.5,42.5 - parent: 1 - type: Transform - - uid: 8679 - components: - - pos: -33.5,40.5 - parent: 1 - type: Transform - - uid: 8680 - components: - - pos: -33.5,39.5 - parent: 1 - type: Transform - - uid: 8682 - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform - - uid: 8683 - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform - - uid: 8685 - components: - - pos: -33.5,34.5 - parent: 1 - type: Transform - - uid: 8687 - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - uid: 8688 - components: - - pos: -32.5,31.5 - parent: 1 - type: Transform - - uid: 8689 - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform - - uid: 8691 - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform - - uid: 8693 - components: - - pos: -36.5,29.5 - parent: 1 - type: Transform - - uid: 8695 - components: - - pos: -38.5,29.5 - parent: 1 - type: Transform - - uid: 8696 - components: - - pos: -39.5,29.5 - parent: 1 - type: Transform - - uid: 8697 - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform - - uid: 8699 - components: - - pos: -40.5,27.5 - parent: 1 - type: Transform - - uid: 8700 - components: - - pos: -40.5,26.5 - parent: 1 - type: Transform - - uid: 8702 - components: - - pos: -42.5,26.5 - parent: 1 - type: Transform - - uid: 8703 - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - uid: 8705 - components: - - pos: -44.5,23.5 - parent: 1 - type: Transform - - uid: 8706 - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - uid: 8708 - components: - - pos: -44.5,20.5 - parent: 1 - type: Transform - - uid: 8709 - components: - - pos: -44.5,19.5 - parent: 1 - type: Transform - - uid: 8711 - components: - - pos: -44.5,17.5 - parent: 1 - type: Transform - - uid: 8713 - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform - - uid: 8714 - components: - - pos: 14.5,36.5 - parent: 1 - type: Transform - - uid: 8715 - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform - - uid: 8717 - components: - - pos: 17.5,38.5 - parent: 1 - type: Transform - - uid: 8718 - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform - - uid: 8720 - components: - - pos: 20.5,38.5 - parent: 1 - type: Transform - - uid: 8721 - components: - - pos: 36.5,38.5 - parent: 1 - type: Transform - - uid: 8723 - components: - - pos: 38.5,38.5 - parent: 1 - type: Transform - - uid: 8724 - components: - - pos: 39.5,38.5 - parent: 1 - type: Transform - - uid: 8730 - components: - - pos: -46.5,-13.5 - parent: 1 - type: Transform - - uid: 8732 - components: - - pos: -46.5,-15.5 - parent: 1 - type: Transform - - uid: 8733 - components: - - pos: -46.5,-16.5 - parent: 1 - type: Transform - - uid: 8734 - components: - - pos: -46.5,-17.5 - parent: 1 - type: Transform - - uid: 8736 - components: - - pos: -46.5,-19.5 - parent: 1 - type: Transform - - uid: 8738 - components: - - pos: -45.5,-23.5 - parent: 1 - type: Transform - - uid: 8740 - components: - - pos: -45.5,-25.5 - parent: 1 - type: Transform - - uid: 8741 - components: - - pos: -45.5,-26.5 - parent: 1 - type: Transform - - uid: 8742 - components: - - pos: -45.5,-27.5 - parent: 1 - type: Transform - - uid: 8743 - components: - - pos: -44.5,-27.5 - parent: 1 - type: Transform - - uid: 8745 - components: - - pos: -42.5,-27.5 - parent: 1 - type: Transform - - uid: 8746 - components: - - pos: -41.5,-27.5 - parent: 1 - type: Transform - - uid: 8748 - components: - - pos: -39.5,-27.5 - parent: 1 - type: Transform - - uid: 8750 - components: - - pos: -44.5,-6.5 - parent: 1 - type: Transform - - uid: 8751 - components: - - pos: -44.5,-5.5 - parent: 1 - type: Transform - - uid: 8753 - components: - - pos: -44.5,-3.5 - parent: 1 - type: Transform - - uid: 8754 - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform - - uid: 8755 - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform - - uid: 8757 - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform - - uid: 10442 - components: - - rot: 3.141592653589793 rad - pos: 44.5,29.5 - parent: 1 - type: Transform - - uid: 12312 - components: - - rot: 3.141592653589793 rad - pos: -1.5,65.5 - parent: 1 - type: Transform - - uid: 12313 - components: - - rot: 3.141592653589793 rad - pos: -0.5,66.5 - parent: 1 - type: Transform - - uid: 12314 - components: - - rot: 3.141592653589793 rad - pos: 0.5,65.5 - parent: 1 - type: Transform - - uid: 12315 - components: - - rot: 3.141592653589793 rad - pos: -0.5,64.5 - parent: 1 - type: Transform - - uid: 12316 - components: - - rot: 3.141592653589793 rad - pos: -4.5,62.5 - parent: 1 - type: Transform - - uid: 12318 - components: - - rot: 3.141592653589793 rad - pos: -4.5,64.5 - parent: 1 - type: Transform - - uid: 12319 - components: - - rot: 3.141592653589793 rad - pos: -4.5,65.5 - parent: 1 - type: Transform - - uid: 12320 - components: - - rot: 3.141592653589793 rad - pos: -4.5,67.5 - parent: 1 - type: Transform - - uid: 12322 - components: - - rot: 3.141592653589793 rad - pos: -4.5,68.5 - parent: 1 - type: Transform - - uid: 12323 - components: - - rot: 3.141592653589793 rad - pos: -2.5,69.5 - parent: 1 - type: Transform - - uid: 12325 - components: - - rot: 3.141592653589793 rad - pos: -0.5,69.5 - parent: 1 - type: Transform - - uid: 12326 - components: - - rot: 3.141592653589793 rad - pos: 0.5,69.5 - parent: 1 - type: Transform - - uid: 12327 - components: - - rot: 3.141592653589793 rad - pos: 1.5,69.5 - parent: 1 - type: Transform - - uid: 12328 - components: - - rot: 3.141592653589793 rad - pos: 3.5,68.5 - parent: 1 - type: Transform - - uid: 12330 - components: - - rot: 3.141592653589793 rad - pos: 3.5,66.5 - parent: 1 - type: Transform - - uid: 12331 - components: - - rot: 3.141592653589793 rad - pos: 3.5,65.5 - parent: 1 - type: Transform - - uid: 12332 - components: - - rot: 3.141592653589793 rad - pos: 3.5,64.5 - parent: 1 - type: Transform - - uid: 12333 - components: - - rot: 3.141592653589793 rad - pos: 3.5,63.5 - parent: 1 - type: Transform - - uid: 12334 - components: - - rot: 3.141592653589793 rad - pos: 0.5,61.5 - parent: 1 - type: Transform - - uid: 12335 - components: - - rot: 3.141592653589793 rad - pos: 1.5,61.5 - parent: 1 - type: Transform - - uid: 12368 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - type: Transform - - uid: 12461 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - uid: 12527 - components: - - pos: -26.5,-29.5 - parent: 1 - type: Transform - - uid: 12528 - components: - - pos: -26.5,-28.5 - parent: 1 - type: Transform -- proto: GrilleBroken - entities: - - uid: 1786 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,25.5 - parent: 1 - type: Transform - - uid: 1790 - components: - - rot: 3.141592653589793 rad - pos: -27.5,23.5 - parent: 1 - type: Transform - - uid: 2917 - components: - - pos: -8.5,-53.5 - parent: 1 - type: Transform - - uid: 2922 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-48.5 - parent: 1 - type: Transform - - uid: 2936 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-40.5 - parent: 1 - type: Transform - - uid: 2939 - components: - - pos: -12.5,-37.5 - parent: 1 - type: Transform - - uid: 2944 - components: - - pos: -20.5,-40.5 - parent: 1 - type: Transform - - uid: 2950 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-34.5 - parent: 1 - type: Transform - - uid: 2973 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 1 - type: Transform - - uid: 2981 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-32.5 - parent: 1 - type: Transform - - uid: 3012 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 1 - type: Transform - - uid: 3018 - components: - - pos: -36.5,-27.5 - parent: 1 - type: Transform - - uid: 3020 - components: - - pos: -26.5,-35.5 - parent: 1 - type: Transform - - uid: 3022 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-31.5 - parent: 1 - type: Transform - - uid: 3023 - components: - - pos: -36.5,-32.5 - parent: 1 - type: Transform - - uid: 3028 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-36.5 - parent: 1 - type: Transform - - uid: 3032 - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-38.5 - parent: 1 - type: Transform - - uid: 3034 - components: - - pos: -34.5,-36.5 - parent: 1 - type: Transform - - uid: 3035 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-38.5 - parent: 1 - type: Transform - - uid: 3041 - components: - - pos: -28.5,-36.5 - parent: 1 - type: Transform - - uid: 3042 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 1 - type: Transform - - uid: 3046 - components: - - pos: -20.5,-54.5 - parent: 1 - type: Transform - - uid: 8485 - components: - - pos: -22.5,-49.5 - parent: 1 - type: Transform - - uid: 8500 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-45.5 - parent: 1 - type: Transform - - uid: 8506 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 1 - type: Transform - - uid: 8508 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-37.5 - parent: 1 - type: Transform - - uid: 8513 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 1 - type: Transform - - uid: 8516 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-31.5 - parent: 1 - type: Transform - - uid: 8518 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 1 - type: Transform - - uid: 8522 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 1 - type: Transform - - uid: 8523 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-27.5 - parent: 1 - type: Transform - - uid: 8525 - components: - - pos: 40.5,-22.5 - parent: 1 - type: Transform - - uid: 8527 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 - parent: 1 - type: Transform - - uid: 8531 - components: - - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 1 - type: Transform - - uid: 8533 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-27.5 - parent: 1 - type: Transform - - uid: 8535 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-27.5 - parent: 1 - type: Transform - - uid: 8538 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 1 - type: Transform - - uid: 8540 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-21.5 - parent: 1 - type: Transform - - uid: 8543 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-16.5 - parent: 1 - type: Transform - - uid: 8549 - components: - - pos: 49.5,-11.5 - parent: 1 - type: Transform - - uid: 8554 - components: - - rot: 3.141592653589793 rad - pos: 49.5,-6.5 - parent: 1 - type: Transform - - uid: 8559 - components: - - pos: 49.5,-1.5 - parent: 1 - type: Transform - - uid: 8564 - components: - - pos: 49.5,31.5 - parent: 1 - type: Transform - - uid: 8565 - components: - - rot: 3.141592653589793 rad - pos: 49.5,34.5 - parent: 1 - type: Transform - - uid: 8570 - components: - - rot: -1.5707963267948966 rad - pos: 49.5,37.5 - parent: 1 - type: Transform - - uid: 8573 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,37.5 - parent: 1 - type: Transform - - uid: 8575 - components: - - pos: 46.5,37.5 - parent: 1 - type: Transform - - uid: 8578 - components: - - rot: 3.141592653589793 rad - pos: -21.5,36.5 - parent: 1 - type: Transform - - uid: 8582 - components: - - pos: 4.5,36.5 - parent: 1 - type: Transform - - uid: 8586 - components: - - pos: 2.5,43.5 - parent: 1 - type: Transform - - uid: 8588 - components: - - rot: 3.141592653589793 rad - pos: 7.5,55.5 - parent: 1 - type: Transform - - uid: 8592 - components: - - pos: 7.5,54.5 - parent: 1 - type: Transform - - uid: 8597 - components: - - rot: 3.141592653589793 rad - pos: 7.5,47.5 - parent: 1 - type: Transform - - uid: 8600 - components: - - rot: 3.141592653589793 rad - pos: 7.5,50.5 - parent: 1 - type: Transform - - uid: 8601 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,45.5 - parent: 1 - type: Transform - - uid: 8604 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,60.5 - parent: 1 - type: Transform - - uid: 8605 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,59.5 - parent: 1 - type: Transform - - uid: 8610 - components: - - pos: 1.5,59.5 - parent: 1 - type: Transform - - uid: 8614 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,60.5 - parent: 1 - type: Transform - - uid: 8616 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,60.5 - parent: 1 - type: Transform - - uid: 8621 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,60.5 - parent: 1 - type: Transform - - uid: 8623 - components: - - pos: -14.5,59.5 - parent: 1 - type: Transform - - uid: 8626 - components: - - pos: -14.5,55.5 - parent: 1 - type: Transform - - uid: 8628 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,50.5 - parent: 1 - type: Transform - - uid: 8632 - components: - - rot: 3.141592653589793 rad - pos: -14.5,51.5 - parent: 1 - type: Transform - - uid: 8637 - components: - - pos: -14.5,46.5 - parent: 1 - type: Transform - - uid: 8641 - components: - - pos: -12.5,43.5 - parent: 1 - type: Transform - - uid: 8642 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 1 - type: Transform - - uid: 8644 - components: - - rot: 3.141592653589793 rad - pos: -13.5,38.5 - parent: 1 - type: Transform - - uid: 8647 - components: - - rot: 3.141592653589793 rad - pos: -33.5,41.5 - parent: 1 - type: Transform - - uid: 8649 - components: - - rot: -1.5707963267948966 rad - pos: -16.5,36.5 - parent: 1 - type: Transform - - uid: 8650 - components: - - rot: 3.141592653589793 rad - pos: -33.5,33.5 - parent: 1 - type: Transform - - uid: 8651 - components: - - pos: -26.5,-30.5 - parent: 1 - type: Transform - - uid: 8656 - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform - - uid: 8660 - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - uid: 8663 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,42.5 - parent: 1 - type: Transform - - uid: 8671 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,44.5 - parent: 1 - type: Transform - - uid: 8677 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,35.5 - parent: 1 - type: Transform - - uid: 8681 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,42.5 - parent: 1 - type: Transform - - uid: 8684 - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform - - uid: 8686 - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform - - uid: 8690 - components: - - rot: -1.5707963267948966 rad - pos: -35.5,29.5 - parent: 1 - type: Transform - - uid: 8692 - components: - - pos: -32.5,29.5 - parent: 1 - type: Transform - - uid: 8694 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,26.5 - parent: 1 - type: Transform - - uid: 8698 - components: - - rot: 3.141592653589793 rad - pos: -44.5,16.5 - parent: 1 - type: Transform - - uid: 8701 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,21.5 - parent: 1 - type: Transform - - uid: 8704 - components: - - rot: 3.141592653589793 rad - pos: -44.5,18.5 - parent: 1 - type: Transform - - uid: 8707 - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform - - uid: 8710 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,36.5 - parent: 1 - type: Transform - - uid: 8712 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,38.5 - parent: 1 - type: Transform - - uid: 8716 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,38.5 - parent: 1 - type: Transform - - uid: 8719 - components: - - pos: -46.5,-14.5 - parent: 1 - type: Transform - - uid: 8722 - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-18.5 - parent: 1 - type: Transform - - uid: 8731 - components: - - rot: 3.141592653589793 rad - pos: -46.5,-20.5 - parent: 1 - type: Transform - - uid: 8735 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-27.5 - parent: 1 - type: Transform - - uid: 8737 - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 1 - type: Transform - - uid: 8739 - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-27.5 - parent: 1 - type: Transform - - uid: 8744 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-7.5 - parent: 1 - type: Transform - - uid: 8747 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-4.5 - parent: 1 - type: Transform - - uid: 8749 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 1 - type: Transform - - uid: 8756 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 1 - type: Transform - - uid: 8767 - components: - - rot: 3.141592653589793 rad - pos: 3.5,38.5 - parent: 1 - type: Transform - - uid: 12317 - components: - - pos: -4.5,66.5 - parent: 1 - type: Transform - - uid: 12321 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,69.5 - parent: 1 - type: Transform - - uid: 12324 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,69.5 - parent: 1 - type: Transform - - uid: 12329 - components: - - pos: 3.5,67.5 - parent: 1 - type: Transform - - uid: 12336 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,61.5 - parent: 1 - type: Transform - - uid: 12337 - components: - - rot: 3.141592653589793 rad - pos: -4.5,63.5 - parent: 1 - type: Transform - - uid: 12338 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,62.5 - parent: 1 - type: Transform - - uid: 12341 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,61.5 - parent: 1 - type: Transform - - uid: 12529 - components: - - pos: -26.5,-27.5 - parent: 1 - type: Transform - - uid: 12530 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 1 - type: Transform -- proto: Handcuffs - entities: - - uid: 5063 - components: - - pos: -0.47162104,32.53128 - parent: 1 - type: Transform -- proto: HandheldGPSBasic - entities: - - uid: 12545 - components: - - pos: 20.351448,-20.427984 - parent: 1 - type: Transform - - uid: 12546 - components: - - pos: 20.632698,-20.552984 - parent: 1 - type: Transform -- proto: HandheldHealthAnalyzer - entities: - - uid: 12428 - components: - - pos: -12.421777,-11.625296 - parent: 1 - type: Transform -- proto: HandLabeler - entities: - - uid: 5093 - components: - - pos: -4.5167303,19.595882 - parent: 1 - type: Transform - - uid: 12544 - components: - - pos: 11.496555,-20.355099 - parent: 1 - type: Transform -- proto: HarpInstrument - entities: - - uid: 2846 - components: - - pos: -18.5,-50.5 - parent: 1 - type: Transform -- proto: HeadSkeleton - entities: - - uid: 8257 - components: - - flags: SessionSpecific - desc: jim :) - name: jim :) - type: MetaData - - pos: 25.50356,16.52645 - parent: 1 - type: Transform -- proto: Hemostat - entities: - - uid: 8243 - components: - - pos: -24.61685,20.770723 - parent: 1 - type: Transform - - uid: 9627 - components: - - pos: 18.467201,27.515732 - parent: 1 - type: Transform -- proto: HighSecArmoryLocked - entities: - - uid: 3326 - components: - - pos: 35.5,11.5 - parent: 1 - type: Transform -- proto: HighSecCommandLocked - entities: - - uid: 3283 - components: - - pos: -3.5,26.5 - parent: 1 - type: Transform - - uid: 3612 - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - uid: 3613 - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform - - uid: 3670 - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform - - uid: 7081 - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform -- proto: HolofanProjector - entities: - - uid: 7144 - components: - - pos: 31.574986,-16.324593 - parent: 1 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 794 - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform - - uid: 1804 - components: - - pos: 28.5,5.5 - parent: 1 - type: Transform - - uid: 1843 - components: - - pos: -20.5,-3.5 - parent: 1 - type: Transform - - uid: 1852 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 1855 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,7.5 - parent: 1 - type: Transform - - uid: 1856 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - uid: 1857 - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform - - uid: 1858 - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - uid: 5371 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 5372 - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform - - uid: 5376 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,16.5 - parent: 1 - type: Transform - - uid: 5672 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform - - uid: 7440 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 7718 - components: - - pos: -5.5,-29.5 - parent: 1 - type: Transform - - uid: 7719 - components: - - pos: -1.5,-29.5 - parent: 1 - type: Transform - - uid: 9638 - components: - - pos: 15.5,27.5 - parent: 1 - type: Transform - - uid: 12412 - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform - - uid: 12413 - components: - - pos: -10.5,-31.5 - parent: 1 - type: Transform - - uid: 12414 - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform - - uid: 12415 - components: - - pos: -17.5,-53.5 - parent: 1 - type: Transform - - uid: 12416 - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform - - uid: 12417 - components: - - pos: -31.5,13.5 - parent: 1 - type: Transform -- proto: HydroponicsToolClippers - entities: - - uid: 5462 - components: - - pos: 29.474905,24.50394 - parent: 1 - type: Transform - - uid: 12458 - components: - - pos: -2.512826,-0.5396495 - parent: 1 - type: Transform -- proto: HydroponicsToolHatchet - entities: - - uid: 12460 - components: - - pos: -2.2798755,-0.4458995 - parent: 1 - type: Transform -- proto: HydroponicsToolMiniHoe - entities: - - uid: 5461 - components: - - pos: 29.474905,24.550816 - parent: 1 - type: Transform - - uid: 12457 - components: - - pos: -2.012826,-0.4458995 - parent: 1 - type: Transform -- proto: HydroponicsToolSpade - entities: - - uid: 5463 - components: - - pos: 29.506155,24.550816 - parent: 1 - type: Transform - - uid: 12459 - components: - - pos: -2.465951,-0.3052745 - parent: 1 - type: Transform -- proto: hydroponicsTray - entities: - - uid: 4939 - components: - - pos: 31.5,28.5 - parent: 1 - type: Transform - - uid: 4940 - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - uid: 4943 - components: - - pos: 29.5,28.5 - parent: 1 - type: Transform - - uid: 4944 - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform - - uid: 5996 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 5997 - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 5998 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 5999 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 6000 - components: - - pos: 5.5,-2.5 - parent: 1 - type: Transform - - uid: 6001 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 6002 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 6003 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 6004 - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 6005 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - uid: 6006 - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform -- proto: InflatableDoorStack - entities: - - uid: 7147 - components: - - pos: 32.62186,-18.512093 - parent: 1 - type: Transform -- proto: InflatableWallStack - entities: - - uid: 7146 - components: - - pos: 32.40311,-18.355843 - parent: 1 - type: Transform -- proto: IngotGold - entities: - - uid: 4131 - components: - - pos: -1.465405,25.0651 - parent: 1 - type: Transform -- proto: IngotSilver - entities: - - uid: 4137 - components: - - pos: -1.4981794,24.932814 - parent: 1 - type: Transform -- proto: IntercomAll - entities: - - uid: 5491 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 5492 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform -- proto: IntercomCommand - entities: - - uid: 5488 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - type: Transform - - uid: 5489 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1 - type: Transform - - uid: 5504 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - type: Transform -- proto: IntercomCommon - entities: - - uid: 3910 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 3911 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,51.5 - parent: 1 - type: Transform - - uid: 3912 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,53.5 - parent: 1 - type: Transform - - uid: 3913 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,51.5 - parent: 1 - type: Transform -- proto: IntercomEngineering - entities: - - uid: 9272 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 1 - type: Transform - - uid: 9273 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 9274 - components: - - rot: 3.141592653589793 rad - pos: 22.5,-12.5 - parent: 1 - type: Transform - - uid: 9275 - components: - - pos: 22.5,-2.5 - parent: 1 - type: Transform - - uid: 9276 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 1 - type: Transform - - uid: 9277 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 1 - type: Transform - - uid: 9278 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-4.5 - parent: 1 - type: Transform -- proto: IntercomMedical - entities: - - uid: 5702 - components: - - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 9258 - components: - - rot: 3.141592653589793 rad - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 9259 - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform - - uid: 9260 - components: - - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 1 - type: Transform - - uid: 9261 - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform - - uid: 9262 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,21.5 - parent: 1 - type: Transform -- proto: IntercomScience - entities: - - uid: 24 - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - uid: 9263 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 1 - type: Transform - - uid: 9265 - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform - - uid: 9266 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 1 - type: Transform - - uid: 9267 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 1 - type: Transform -- proto: IntercomSecurity - entities: - - uid: 5302 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 5494 - components: - - rot: -1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - uid: 5496 - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform - - uid: 5497 - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 1 - type: Transform - - uid: 5499 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,14.5 - parent: 1 - type: Transform - - uid: 5500 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - uid: 5501 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,16.5 - parent: 1 - type: Transform - - uid: 10116 - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 11606 - components: - - pos: 28.5,11.5 - parent: 1 - type: Transform -- proto: IntercomService - entities: - - uid: 9256 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1 - type: Transform -- proto: IntercomSupply - entities: - - uid: 9268 - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform - - uid: 9269 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1 - type: Transform - - uid: 9270 - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform - - uid: 9271 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 1 - type: Transform -- proto: JanitorialTrolley - entities: - - uid: 12437 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1 - type: Transform -- proto: JetpackBlueFilled - entities: - - uid: 5005 - components: - - flags: InContainer - type: MetaData - - parent: 4120 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: JetpackMiniFilled - entities: - - uid: 4926 - components: - - pos: 40.56656,21.748663 - parent: 1 - type: Transform - - uid: 4927 - components: - - pos: 40.50406,21.498663 - parent: 1 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 4942 - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform - - uid: 5968 - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform -- proto: KitchenReagentGrinder - entities: - - uid: 4941 - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - uid: 5870 - components: - - pos: -10.5,16.5 - parent: 1 - type: Transform - - uid: 5914 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 5967 - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform -- proto: KitchenSpike - entities: - - uid: 5970 - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform -- proto: Lamp - entities: - - uid: 3986 - components: - - pos: -9.510255,48.896393 - parent: 1 - type: Transform - - uid: 3990 - components: - - pos: -8.49463,57.014515 - parent: 1 - type: Transform - - uid: 3991 - components: - - pos: -10.55713,54.97145 - parent: 1 - type: Transform - - uid: 4012 - components: - - pos: -7.5221167,46.845314 - parent: 1 - type: Transform - - uid: 5584 - components: - - pos: -40.604885,-5.037887 - parent: 1 - type: Transform - - uid: 6026 - components: - - pos: -12.614596,-0.4335618 - parent: 1 - type: Transform - - uid: 6048 - components: - - pos: -17.453178,-4.0584826 - parent: 1 - type: Transform - - uid: 7287 - components: - - pos: 16.489933,-23.942678 - parent: 1 - type: Transform - - uid: 8246 - components: - - pos: -9.624902,-11.094046 - parent: 1 - type: Transform - - uid: 9589 - components: - - pos: 40.264347,31.975986 - parent: 1 - type: Transform - - uid: 9590 - components: - - pos: 46.436222,31.944736 - parent: 1 - type: Transform - - uid: 9591 - components: - - pos: 39.451847,33.913486 - parent: 1 - type: Transform - - uid: 9635 - components: - - rot: 1.5707963267948966 rad - pos: 18.518274,26.145664 - parent: 1 - type: Transform -- proto: LampGold - entities: - - uid: 5583 - components: - - pos: -36.27676,-2.084762 - parent: 1 - type: Transform - - uid: 7418 - components: - - pos: 11.72576,-18.556658 - parent: 1 - type: Transform - - uid: 9016 - components: - - pos: -38.493835,-9.175766 - parent: 1 - type: Transform -- proto: LargeBeaker - entities: - - uid: 6087 - components: - - pos: -27.397102,-5.3872204 - parent: 1 - type: Transform -- proto: LightReplacer - entities: - - uid: 7668 - components: - - pos: 12.627049,-0.27726722 - parent: 1 - type: Transform -- proto: LockerAtmosphericsFilled - entities: - - uid: 7128 - components: - - pos: 33.5,-16.5 - parent: 1 - type: Transform - - uid: 7129 - components: - - pos: 32.5,-16.5 - parent: 1 - type: Transform -- proto: LockerBooze - entities: - - uid: 8297 - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerBoozeFilled - entities: - - uid: 5951 - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform -- proto: LockerBotanistFilled - entities: - - uid: 3372 - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 5994 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform -- proto: LockerCaptainFilled - entities: - - uid: 4090 - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5926 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerChemistryFilled - entities: - - uid: 5613 - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- proto: LockerChiefEngineerFilled - entities: - - uid: 5669 - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5670 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 1867 - components: - - pos: -20.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 98.0039 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1868 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerDetectiveFilled - entities: - - uid: 5356 - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5357 - - 5358 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 3898 - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform - - uid: 6762 - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform - - uid: 8827 - components: - - pos: -21.5,-24.5 - parent: 1 - type: Transform - - uid: 9138 - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform - - uid: 9355 - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform - - uid: 9680 - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform -- proto: LockerEngineerFilled - entities: - - uid: 3797 - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform - - uid: 6770 - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform - - uid: 6771 - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform - - uid: 6772 - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform -- proto: LockerEvidence - entities: - - uid: 12065 - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform - - uid: 12066 - components: - - pos: 16.5,8.5 - parent: 1 - type: Transform - - uid: 12067 - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform -- proto: LockerFreezer - entities: - - uid: 4120 - components: - - pos: -4.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4829 - - 4842 - - 5005 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 4965 - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5928 - - 5927 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 5374 - components: - - pos: 29.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12478 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerMedicalFilled - entities: - - uid: 1908 - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform - - uid: 1909 - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform - - uid: 5917 - components: - - pos: -23.5,9.5 - parent: 1 - type: Transform - - uid: 12608 - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform -- proto: LockerMedicineFilled - entities: - - uid: 1905 - components: - - pos: -19.5,11.5 - parent: 1 - type: Transform - - uid: 1910 - components: - - pos: -18.5,11.5 - parent: 1 - type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 7443 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7444 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerResearchDirectorFilled - entities: - - uid: 1845 - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12418 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 3594 - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform - - uid: 7295 - components: - - pos: 18.5,-23.5 - parent: 1 - type: Transform -- proto: LockerScienceFilled - entities: - - uid: 3816 - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - uid: 3817 - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - uid: 3818 - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - uid: 5912 - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform -- proto: LockerSecurityFilled - entities: - - uid: 764 - components: - - pos: 18.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 765 - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform - - uid: 766 - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform -- proto: LockerWallMedicalFilled - entities: - - uid: 10854 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,13.5 - parent: 1 - type: Transform - - uid: 10855 - components: - - rot: 3.141592653589793 rad - pos: -13.5,17.5 - parent: 1 - type: Transform -- proto: LockerWardenFilled - entities: - - uid: 5368 - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 6761 - components: - - pos: 18.5,-6.5 - parent: 1 - type: Transform - - uid: 8828 - components: - - pos: -21.5,-25.5 - parent: 1 - type: Transform - - uid: 8831 - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform - - uid: 9354 - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - uid: 9681 - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform -- proto: MachineAnomalyGenerator - entities: - - uid: 6063 - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- proto: MachineAnomalyVessel - entities: - - uid: 6097 - components: - - pos: -31.5,-7.5 - parent: 1 - type: Transform - - uid: 7153 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 1 - type: Transform -- proto: MachineAPE - entities: - - uid: 6093 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 1 - type: Transform - - uid: 6094 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 1 - type: Transform - - uid: 6095 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 1 - type: Transform - - uid: 6096 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 1 - type: Transform -- proto: MachineArtifactAnalyzer - entities: - - uid: 6124 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 1 - type: Transform -- proto: MagazinePistol - entities: - - uid: 5403 - components: - - pos: 29.556211,16.447828 - parent: 1 - type: Transform -- proto: MagazinePistolSubMachineGunRubber - entities: - - uid: 5311 - components: - - pos: 18.504484,15.628139 - parent: 1 - type: Transform - - uid: 5312 - components: - - pos: 18.77011,15.612514 - parent: 1 - type: Transform -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 5386 - components: - - pos: 27.431211,14.508017 - parent: 1 - type: Transform - - uid: 5387 - components: - - pos: 27.431211,14.367392 - parent: 1 - type: Transform -- proto: MagazineRifle - entities: - - uid: 5432 - components: - - pos: 38.28125,11.49122 - parent: 1 - type: Transform - - uid: 5433 - components: - - pos: 38.421875,11.506845 - parent: 1 - type: Transform -- proto: MagazineRifleRubber - entities: - - uid: 5434 - components: - - pos: 38.59375,11.506845 - parent: 1 - type: Transform - - uid: 5435 - components: - - pos: 38.75,11.506845 - parent: 1 - type: Transform -- proto: MaintenanceFluffSpawner - entities: - - uid: 8830 - components: - - pos: -25.5,-24.5 - parent: 1 - type: Transform - - uid: 8907 - components: - - pos: -33.5,-5.5 - parent: 1 - type: Transform - - uid: 8914 - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - uid: 8915 - components: - - pos: -33.5,-8.5 - parent: 1 - type: Transform - - uid: 8916 - components: - - pos: -31.5,-2.5 - parent: 1 - type: Transform - - uid: 8920 - components: - - pos: -15.5,-22.5 - parent: 1 - type: Transform - - uid: 8921 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 8922 - components: - - pos: -1.5,-17.5 - parent: 1 - type: Transform - - uid: 8923 - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - uid: 8926 - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform - - uid: 9049 - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 9146 - components: - - pos: 18.5,-18.5 - parent: 1 - type: Transform - - uid: 9150 - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform - - uid: 9154 - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform - - uid: 9167 - components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform - - uid: 9255 - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform - - uid: 9329 - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform - - uid: 9330 - components: - - pos: 16.5,23.5 - parent: 1 - type: Transform - - uid: 9471 - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform - - uid: 9472 - components: - - pos: 12.5,32.5 - parent: 1 - type: Transform - - uid: 9477 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 9478 - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 9481 - components: - - pos: 18.5,17.5 - parent: 1 - type: Transform - - uid: 9482 - components: - - pos: 19.5,22.5 - parent: 1 - type: Transform - - uid: 9485 - components: - - pos: 27.5,35.5 - parent: 1 - type: Transform - - uid: 9486 - components: - - pos: 29.5,35.5 - parent: 1 - type: Transform - - uid: 9551 - components: - - pos: 36.5,23.5 - parent: 1 - type: Transform - - uid: 9557 - components: - - pos: 41.5,11.5 - parent: 1 - type: Transform - - uid: 9558 - components: - - pos: 37.5,7.5 - parent: 1 - type: Transform - - uid: 9559 - components: - - pos: 42.5,7.5 - parent: 1 - type: Transform - - uid: 9714 - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - uid: 9716 - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform - - uid: 9717 - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform - - uid: 9721 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform - - uid: 9722 - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform - - uid: 9727 - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform -- proto: MaintenancePlantSpawner - entities: - - uid: 10641 - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - uid: 10642 - components: - - pos: 28.5,-18.5 - parent: 1 - type: Transform - - uid: 10643 - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform -- proto: MaintenanceToolSpawner - entities: - - uid: 8832 - components: - - pos: -23.5,-25.5 - parent: 1 - type: Transform - - uid: 8903 - components: - - pos: -41.5,-9.5 - parent: 1 - type: Transform - - uid: 8905 - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 8906 - components: - - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 8912 - components: - - pos: -24.5,-13.5 - parent: 1 - type: Transform - - uid: 8913 - components: - - pos: -26.5,-15.5 - parent: 1 - type: Transform - - uid: 8918 - components: - - pos: -18.5,-20.5 - parent: 1 - type: Transform - - uid: 8919 - components: - - pos: -14.5,-22.5 - parent: 1 - type: Transform - - uid: 8924 - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform - - uid: 8925 - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform - - uid: 9145 - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 9147 - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 9148 - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 9153 - components: - - pos: 26.5,-21.5 - parent: 1 - type: Transform - - uid: 9168 - components: - - pos: 42.5,-1.5 - parent: 1 - type: Transform - - uid: 9169 - components: - - pos: 32.5,-3.5 - parent: 1 - type: Transform - - uid: 9473 - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform - - uid: 9474 - components: - - pos: 12.5,30.5 - parent: 1 - type: Transform - - uid: 9476 - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 9479 - components: - - pos: 16.5,17.5 - parent: 1 - type: Transform - - uid: 9480 - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform - - uid: 9552 - components: - - pos: 36.5,25.5 - parent: 1 - type: Transform - - uid: 9553 - components: - - pos: 41.5,12.5 - parent: 1 - type: Transform - - uid: 9554 - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform - - uid: 9555 - components: - - pos: 42.5,6.5 - parent: 1 - type: Transform - - uid: 9713 - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform - - uid: 9719 - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform - - uid: 9720 - components: - - pos: -7.5,23.5 - parent: 1 - type: Transform - - uid: 9723 - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - uid: 9728 - components: - - pos: -32.5,21.5 - parent: 1 - type: Transform - - uid: 9729 - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform -- proto: MaintenanceWeaponSpawner - entities: - - uid: 8834 - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - uid: 8910 - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform - - uid: 9144 - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - uid: 9170 - components: - - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 9470 - components: - - pos: 21.5,30.5 - parent: 1 - type: Transform - - uid: 9483 - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform - - uid: 9484 - components: - - pos: 23.5,32.5 - parent: 1 - type: Transform - - uid: 9549 - components: - - pos: 36.5,26.5 - parent: 1 - type: Transform - - uid: 9715 - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform - - uid: 9724 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform -- proto: MaterialCloth - entities: - - uid: 5089 - components: - - pos: 0.3902992,21.580257 - parent: 1 - type: Transform -- proto: MaterialDurathread - entities: - - uid: 5090 - components: - - pos: 0.4215492,21.564632 - parent: 1 - type: Transform -- proto: MaterialReclaimer - entities: - - uid: 7289 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- proto: MaterialReclaimerMachineCircuitboard - entities: - - uid: 9518 - components: - - pos: -2.569489,-34.556107 - parent: 1 - type: Transform -- proto: MaterialWoodPlank - entities: - - uid: 8495 - components: - - pos: -30.470095,-14.477021 - parent: 1 - type: Transform -- proto: MedicalBed - entities: - - uid: 1853 - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform - - uid: 1854 - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform - - uid: 1862 - components: - - pos: -18.5,16.5 - parent: 1 - type: Transform - - uid: 5339 - components: - - pos: 23.5,6.5 - parent: 1 - type: Transform - - uid: 5607 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 5618 - components: - - pos: -10.5,21.5 - parent: 1 - type: Transform -- proto: MedicalTechFab - entities: - - uid: 5597 - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 4118 - components: - - pos: -2.430763,27.440598 - parent: 1 - type: Transform - - uid: 5900 - components: - - pos: -26.652166,11.588954 - parent: 1 - type: Transform -- proto: MedkitBruteFilled - entities: - - uid: 5893 - components: - - pos: -24.902317,11.678088 - parent: 1 - type: Transform - - uid: 5897 - components: - - pos: -24.902166,11.526454 - parent: 1 - type: Transform - - uid: 8819 - components: - - pos: -40.48545,-16.453053 - parent: 1 - type: Transform -- proto: MedkitBurnFilled - entities: - - uid: 5891 - components: - - pos: -25.409866,11.671727 - parent: 1 - type: Transform - - uid: 5898 - components: - - pos: -25.402166,11.510829 - parent: 1 - type: Transform -- proto: MedkitCombatFilled - entities: - - uid: 4119 - components: - - pos: -2.4295425,27.687153 - parent: 1 - type: Transform -- proto: MedkitFilled - entities: - - uid: 5059 - components: - - pos: 5.540815,19.460373 - parent: 1 - type: Transform - - uid: 5347 - components: - - pos: 23.535002,7.498471 - parent: 1 - type: Transform - - uid: 5895 - components: - - pos: -24.402317,11.678088 - parent: 1 - type: Transform - - uid: 5896 - components: - - pos: -24.386541,11.526454 - parent: 1 - type: Transform - - uid: 7419 - components: - - pos: 11.436758,-19.113333 - parent: 1 - type: Transform - - uid: 9579 - components: - - pos: 44.521946,6.5499096 - parent: 1 - type: Transform - - uid: 9641 - components: - - pos: -26.512701,21.421293 - parent: 1 - type: Transform -- proto: MedkitO2 - entities: - - uid: 5066 - components: - - pos: -3.487246,31.609404 - parent: 1 - type: Transform -- proto: MedkitOxygenFilled - entities: - - uid: 5352 - components: - - pos: 23.535002,7.373471 - parent: 1 - type: Transform - - uid: 5890 - components: - - pos: -25.909866,11.671727 - parent: 1 - type: Transform - - uid: 5899 - components: - - pos: -25.902166,11.510829 - parent: 1 - type: Transform -- proto: MedkitRadiationFilled - entities: - - uid: 5892 - components: - - pos: -26.402166,11.656432 - parent: 1 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 5894 - components: - - pos: -26.394794,11.510829 - parent: 1 - type: Transform -- proto: Mirror - entities: - - uid: 7888 - components: - - pos: -18.5,-23.5 - parent: 1 - type: Transform - - uid: 7889 - components: - - pos: -17.5,-23.5 - parent: 1 - type: Transform - - uid: 7890 - components: - - pos: -16.5,-23.5 - parent: 1 - type: Transform -- proto: MonkeyCube - entities: - - uid: 5990 - components: - - pos: -2.5931392,3.6905057 - parent: 1 - type: Transform -- proto: MonkeyCubeBox - entities: - - uid: 6333 - components: - - pos: -14.498325,-10.477551 - parent: 1 - type: Transform -- proto: MopBucketFull - entities: - - uid: 8847 - components: - - pos: 17.627773,-0.48197973 - parent: 1 - type: Transform - - uid: 9652 - components: - - pos: 13.5359125,24.626709 - parent: 1 - type: Transform - - uid: 11938 - components: - - pos: 13.5359125,25.564209 - parent: 1 - type: Transform -- proto: MopItem - entities: - - uid: 8848 - components: - - pos: 17.455898,-0.46635473 - parent: 1 - type: Transform - - uid: 9654 - components: - - pos: 13.2546625,23.517334 - parent: 1 - type: Transform - - uid: 9657 - components: - - pos: 13.4890375,23.501709 - parent: 1 - type: Transform -- proto: Morgue - entities: - - uid: 1913 - components: - - rot: 3.141592653589793 rad - pos: -25.5,13.5 - parent: 1 - type: Transform - - uid: 1914 - components: - - rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 1 - type: Transform - - uid: 1915 - components: - - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - uid: 1916 - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform - - uid: 1917 - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform - - uid: 1918 - components: - - pos: -24.5,16.5 - parent: 1 - type: Transform - - uid: 3476 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,16.5 - parent: 1 - type: Transform - - uid: 5343 - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 1 - type: Transform -- proto: MouseTimedSpawner - entities: - - uid: 11909 - components: - - pos: -37.5,-13.5 - parent: 1 - type: Transform - - uid: 11910 - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform - - uid: 11911 - components: - - pos: 18.5,29.5 - parent: 1 - type: Transform - - uid: 11912 - components: - - pos: 18.5,-17.5 - parent: 1 - type: Transform -- proto: Multitool - entities: - - uid: 6072 - components: - - pos: -5.580178,-15.315853 - parent: 1 - type: Transform - - uid: 6335 - components: - - pos: -14.316043,-8.369874 - parent: 1 - type: Transform -- proto: NanoManipulatorStockPart - entities: - - uid: 9501 - components: - - pos: -3.015568,-31.493607 - parent: 1 - type: Transform - - uid: 9502 - components: - - pos: -3.960114,-31.306107 - parent: 1 - type: Transform -- proto: NetworkConfigurator - entities: - - uid: 5602 - components: - - pos: -23.538898,5.5020247 - parent: 1 - type: Transform -- proto: NitrogenCanister - entities: - - uid: 6803 - components: - - pos: 43.5,-5.5 - parent: 1 - type: Transform - - uid: 6996 - components: - - pos: 36.5,-4.5 - parent: 1 - type: Transform - - uid: 6998 - components: - - pos: 35.5,-4.5 - parent: 1 - type: Transform - - uid: 8864 - components: - - pos: -13.5,-20.5 - parent: 1 - type: Transform - - uid: 8865 - components: - - pos: -29.5,-10.5 - parent: 1 - type: Transform - - uid: 8869 - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform - - uid: 9127 - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 9182 - components: - - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 9251 - components: - - pos: 31.5,32.5 - parent: 1 - type: Transform - - uid: 9342 - components: - - pos: 35.5,16.5 - parent: 1 - type: Transform - - uid: 9343 - components: - - pos: 21.5,23.5 - parent: 1 - type: Transform - - uid: 9344 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - uid: 9693 - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform - - uid: 9694 - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform -- proto: NitrogenTankFilled - entities: - - uid: 8927 - components: - - pos: -33.671288,-7.446391 - parent: 1 - type: Transform - - uid: 9730 - components: - - pos: -28.673817,12.610113 - parent: 1 - type: Transform -- proto: NitrousOxideCanister - entities: - - uid: 6324 - components: - - pos: -18.5,-18.5 - parent: 1 - type: Transform - - uid: 6810 - components: - - pos: 43.5,-11.5 - parent: 1 - type: Transform - - uid: 7003 - components: - - pos: 36.5,-2.5 - parent: 1 - type: Transform -- proto: NuclearBomb - entities: - - uid: 4128 - components: - - pos: -4.5,25.5 - parent: 1 - type: Transform -- proto: Ointment - entities: - - uid: 9630 - components: - - pos: 18.654701,27.734482 - parent: 1 - type: Transform -- proto: Omnitool - entities: - - uid: 4829 - components: - - flags: InContainer - type: MetaData - - parent: 4120 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: OperatingTable - entities: - - uid: 5521 - components: - - pos: -24.5,22.5 - parent: 1 - type: Transform -- proto: OreProcessor - entities: - - uid: 7286 - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform -- proto: OreProcessorMachineCircuitboard - entities: - - uid: 9517 - components: - - pos: -2.366364,-34.35298 - parent: 1 - type: Transform -- proto: OrganHumanHeart - entities: - - uid: 12288 - components: - - pos: -11.34931,-33.29647 - parent: 1 - type: Transform -- proto: OxygenCanister - entities: - - uid: 3356 - components: - - pos: 28.5,-20.5 - parent: 1 - type: Transform - - uid: 4924 - components: - - pos: 41.5,21.5 - parent: 1 - type: Transform - - uid: 6802 - components: - - pos: 43.5,-7.5 - parent: 1 - type: Transform - - uid: 6995 - components: - - pos: 36.5,-3.5 - parent: 1 - type: Transform - - uid: 6997 - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform - - uid: 7283 - components: - - pos: 26.5,-23.5 - parent: 1 - type: Transform - - uid: 8805 - components: - - pos: -34.5,-23.5 - parent: 1 - type: Transform - - uid: 8863 - components: - - pos: -14.5,-20.5 - parent: 1 - type: Transform - - uid: 8866 - components: - - pos: -28.5,-10.5 - parent: 1 - type: Transform - - uid: 8870 - components: - - pos: -33.5,-19.5 - parent: 1 - type: Transform - - uid: 9128 - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - uid: 9181 - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform - - uid: 9252 - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform - - uid: 9339 - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform - - uid: 9340 - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - uid: 9341 - components: - - pos: 35.5,17.5 - parent: 1 - type: Transform - - uid: 9662 - components: - - pos: -29.5,29.5 - parent: 1 - type: Transform - - uid: 9664 - components: - - pos: -18.5,31.5 - parent: 1 - type: Transform - - uid: 9695 - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform - - uid: 9696 - components: - - pos: -7.5,21.5 - parent: 1 - type: Transform -- proto: PaintingMonkey - entities: - - uid: 5040 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform -- proto: Paper - entities: - - uid: 5585 - components: - - pos: -39.604885,-5.4378414 - parent: 1 - type: Transform - - uid: 5586 - components: - - pos: -40.448635,-5.8909664 - parent: 1 - type: Transform - - uid: 5587 - components: - - pos: -39.55801,-6.2972164 - parent: 1 - type: Transform - - uid: 5588 - components: - - pos: -40.104885,-6.3753414 - parent: 1 - type: Transform - - uid: 5589 - components: - - pos: -40.011135,-5.7034664 - parent: 1 - type: Transform -- proto: PaperBin10 - entities: - - uid: 4110 - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform - - uid: 5073 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 5581 - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 6053 - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform - - uid: 7400 - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 7447 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - uid: 7782 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-28.5 - parent: 1 - type: Transform - - uid: 9588 - components: - - pos: 39.5,31.5 - parent: 1 - type: Transform -- proto: PaperBin5 - entities: - - uid: 3985 - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform - - uid: 3994 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - uid: 4974 - components: - - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 5331 - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - uid: 7405 - components: - - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 1 - type: Transform -- proto: PaperCaptainsThoughts - entities: - - uid: 4977 - components: - - pos: 4.359273,27.643576 - parent: 1 - type: Transform - - uid: 4978 - components: - - pos: 4.437398,27.643576 - parent: 1 - type: Transform - - uid: 4979 - components: - - pos: 4.515523,27.643576 - parent: 1 - type: Transform - - uid: 4980 - components: - - pos: 4.593648,27.643576 - parent: 1 - type: Transform -- proto: PaperOffice - entities: - - uid: 3999 - components: - - rot: 3.141592653589793 rad - pos: -8.849914,48.62344 - parent: 1 - type: Transform - - uid: 4000 - components: - - rot: 3.141592653589793 rad - pos: -8.928039,48.62344 - parent: 1 - type: Transform - - uid: 4001 - components: - - rot: 3.141592653589793 rad - pos: -8.943664,48.62344 - parent: 1 - type: Transform - - uid: 4002 - components: - - rot: 3.141592653589793 rad - pos: -3.4749136,48.607815 - parent: 1 - type: Transform - - uid: 4003 - components: - - rot: 3.141592653589793 rad - pos: -3.3967886,48.576565 - parent: 1 - type: Transform - - uid: 4004 - components: - - pos: -7.5999136,56.62344 - parent: 1 - type: Transform - - uid: 4005 - components: - - pos: -7.5061636,56.62344 - parent: 1 - type: Transform - - uid: 4006 - components: - - pos: -7.4592886,56.62344 - parent: 1 - type: Transform - - uid: 4112 - components: - - pos: -9.663862,28.018454 - parent: 1 - type: Transform - - uid: 4113 - components: - - pos: -9.585737,27.940329 - parent: 1 - type: Transform - - uid: 4114 - components: - - pos: -9.304487,29.049704 - parent: 1 - type: Transform - - uid: 4115 - components: - - pos: -9.460737,28.955954 - parent: 1 - type: Transform - - uid: 5074 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5075 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5076 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5077 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5078 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5079 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5080 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5081 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5082 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5083 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5084 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5085 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5086 - components: - - pos: -4.5159507,19.627132 - parent: 1 - type: Transform - - uid: 5087 - components: - - pos: -4.5472007,19.595882 - parent: 1 - type: Transform - - uid: 5088 - components: - - pos: -4.5472007,19.595882 - parent: 1 - type: Transform - - uid: 5391 - components: - - pos: 27.337461,13.773642 - parent: 1 - type: Transform - - uid: 5392 - components: - - pos: 27.368711,13.758017 - parent: 1 - type: Transform - - uid: 5393 - components: - - pos: 27.415586,13.711142 - parent: 1 - type: Transform - - uid: 5394 - components: - - pos: 27.478086,13.679892 - parent: 1 - type: Transform - - uid: 5398 - components: - - pos: 28.493711,16.557203 - parent: 1 - type: Transform - - uid: 5399 - components: - - pos: 28.540586,16.557203 - parent: 1 - type: Transform - - uid: 5400 - components: - - pos: 28.587461,16.557203 - parent: 1 - type: Transform - - uid: 5401 - components: - - pos: 28.618711,16.557203 - parent: 1 - type: Transform - - uid: 5678 - components: - - pos: 18.339497,-14.389538 - parent: 1 - type: Transform - - uid: 5679 - components: - - pos: 18.339497,-14.295788 - parent: 1 - type: Transform - - uid: 5680 - components: - - pos: 18.339497,-14.186413 - parent: 1 - type: Transform - - uid: 5681 - components: - - pos: 18.355122,-14.061413 - parent: 1 - type: Transform - - uid: 5875 - components: - - pos: -22.6214,16.518099 - parent: 1 - type: Transform - - uid: 5876 - components: - - pos: -22.605776,16.455599 - parent: 1 - type: Transform - - uid: 5877 - components: - - pos: -22.59015,16.377474 - parent: 1 - type: Transform - - uid: 5878 - components: - - pos: -22.574526,16.268099 - parent: 1 - type: Transform - - uid: 5884 - components: - - pos: -14.637211,5.5536256 - parent: 1 - type: Transform - - uid: 5885 - components: - - pos: -17.62719,5.5455227 - parent: 1 - type: Transform - - uid: 5886 - components: - - pos: -17.62719,5.5455227 - parent: 1 - type: Transform - - uid: 5888 - components: - - pos: -14.637211,5.5536256 - parent: 1 - type: Transform - - uid: 6058 - components: - - pos: -16.855633,-2.6907523 - parent: 1 - type: Transform - - uid: 6059 - components: - - pos: -16.855633,-2.5970023 - parent: 1 - type: Transform - - uid: 6060 - components: - - pos: -16.855633,-2.5188773 - parent: 1 - type: Transform - - uid: 6061 - components: - - pos: -16.855633,-2.4720023 - parent: 1 - type: Transform - - uid: 6062 - components: - - pos: -16.855633,-2.3938773 - parent: 1 - type: Transform - - uid: 6789 - components: - - pos: 12.221728,-12.274454 - parent: 1 - type: Transform - - uid: 6790 - components: - - pos: 12.221728,-12.352579 - parent: 1 - type: Transform - - uid: 6791 - components: - - pos: 12.221728,-12.415079 - parent: 1 - type: Transform - - uid: 6792 - components: - - pos: 12.221728,-12.493204 - parent: 1 - type: Transform - - uid: 7306 - components: - - pos: 13.624326,-23.419518 - parent: 1 - type: Transform - - uid: 7394 - components: - - pos: 13.561826,-23.419518 - parent: 1 - type: Transform - - uid: 7396 - components: - - pos: 13.499326,-23.419518 - parent: 1 - type: Transform - - uid: 7406 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7407 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7408 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7409 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7410 - components: - - pos: 5.516494,-21.287186 - parent: 1 - type: Transform - - uid: 7411 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7412 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7413 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7414 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7415 - components: - - pos: 11.453994,-18.162186 - parent: 1 - type: Transform - - uid: 7450 - components: - - pos: 5.1056714,-15.299889 - parent: 1 - type: Transform - - uid: 7451 - components: - - pos: 5.1056714,-15.299889 - parent: 1 - type: Transform - - uid: 7452 - components: - - pos: 5.1056714,-15.299889 - parent: 1 - type: Transform - - uid: 7453 - components: - - pos: 5.1056714,-15.299889 - parent: 1 - type: Transform - - uid: 8247 - components: - - pos: -9.640527,-11.922171 - parent: 1 - type: Transform - - uid: 9592 - components: - - pos: 40.748722,31.554111 - parent: 1 - type: Transform - - uid: 9593 - components: - - pos: 40.826847,31.554111 - parent: 1 - type: Transform - - uid: 9594 - components: - - pos: 40.904972,31.554111 - parent: 1 - type: Transform - - uid: 9595 - components: - - pos: 40.951847,31.554111 - parent: 1 - type: Transform - - uid: 9596 - components: - - pos: 44.951847,31.538486 - parent: 1 - type: Transform - - uid: 9597 - components: - - pos: 45.029972,31.538486 - parent: 1 - type: Transform - - uid: 9598 - components: - - pos: 45.108097,31.538486 - parent: 1 - type: Transform - - uid: 9599 - components: - - pos: 45.170597,31.538486 - parent: 1 - type: Transform - - uid: 9602 - components: - - rot: 3.141592653589793 rad - pos: 43.576847,33.600986 - parent: 1 - type: Transform - - uid: 9603 - components: - - rot: 3.141592653589793 rad - pos: 43.451847,33.600986 - parent: 1 - type: Transform - - uid: 9604 - components: - - rot: 3.141592653589793 rad - pos: 43.279972,33.58536 - parent: 1 - type: Transform - - uid: 9605 - components: - - rot: 3.141592653589793 rad - pos: 43.186222,33.58536 - parent: 1 - type: Transform - - uid: 9612 - components: - - rot: 3.141592653589793 rad - pos: 39.826847,33.632236 - parent: 1 - type: Transform - - uid: 9613 - components: - - rot: 3.141592653589793 rad - pos: 39.795597,33.632236 - parent: 1 - type: Transform - - uid: 9614 - components: - - rot: 3.141592653589793 rad - pos: 39.748722,33.632236 - parent: 1 - type: Transform - - uid: 12431 - components: - - pos: -9.562402,-11.984671 - parent: 1 - type: Transform - - uid: 12432 - components: - - pos: -9.468652,-12.094046 - parent: 1 - type: Transform - - uid: 12433 - components: - - pos: -9.624902,-12.109671 - parent: 1 - type: Transform - - uid: 12434 - components: - - pos: -9.640527,-12.015921 - parent: 1 - type: Transform -- proto: PartRodMetal - entities: - - uid: 6092 - components: - - pos: -24.506477,-0.38722038 - parent: 1 - type: Transform - - uid: 6798 - components: - - pos: 18.539476,-8.350777 - parent: 1 - type: Transform - - uid: 6799 - components: - - pos: 18.539476,-8.350777 - parent: 1 - type: Transform - - uid: 7142 - components: - - pos: 32.46561,-18.402718 - parent: 1 - type: Transform - - uid: 7143 - components: - - pos: 32.46561,-18.402718 - parent: 1 - type: Transform - - uid: 11934 - components: - - pos: 12.1296625,23.642334 - parent: 1 - type: Transform - - uid: 11935 - components: - - pos: 11.9734125,23.657959 - parent: 1 - type: Transform -- proto: Pen - entities: - - uid: 1881 - components: - - pos: -19.882591,14.621025 - parent: 1 - type: Transform - - uid: 1882 - components: - - pos: -21.958109,-1.4018333 - parent: 1 - type: Transform - - uid: 3995 - components: - - pos: -8.015554,56.563858 - parent: 1 - type: Transform - - uid: 3996 - components: - - pos: -10.312429,54.548233 - parent: 1 - type: Transform - - uid: 3997 - components: - - rot: 3.141592653589793 rad - pos: -8.959289,48.52969 - parent: 1 - type: Transform - - uid: 3998 - components: - - rot: 3.141592653589793 rad - pos: -3.2874136,48.56094 - parent: 1 - type: Transform - - uid: 4106 - components: - - pos: -9.741987,27.659079 - parent: 1 - type: Transform - - uid: 4107 - components: - - pos: -9.304487,29.627829 - parent: 1 - type: Transform - - uid: 5354 - components: - - rot: -1.5707963267948966 rad - pos: 25.429817,10.545956 - parent: 1 - type: Transform - - uid: 5355 - components: - - rot: -1.5707963267948966 rad - pos: 25.773567,10.670956 - parent: 1 - type: Transform - - uid: 5395 - components: - - rot: -1.5707963267948966 rad - pos: 27.587461,13.804892 - parent: 1 - type: Transform - - uid: 5402 - components: - - rot: -1.5707963267948966 rad - pos: 28.821836,16.650953 - parent: 1 - type: Transform - - uid: 5593 - components: - - pos: -40.77676,-5.6722164 - parent: 1 - type: Transform - - uid: 5594 - components: - - pos: -39.21426,-6.2659664 - parent: 1 - type: Transform - - uid: 5595 - components: - - pos: -39.229885,-5.2659664 - parent: 1 - type: Transform - - uid: 5682 - components: - - rot: -1.5707963267948966 rad - pos: 18.651997,-14.061413 - parent: 1 - type: Transform - - uid: 5879 - components: - - rot: 3.141592653589793 rad - pos: -22.355776,16.299349 - parent: 1 - type: Transform - - uid: 6047 - components: - - pos: -16.293133,-2.3157523 - parent: 1 - type: Transform - - uid: 6793 - components: - - pos: 12.143603,-12.633829 - parent: 1 - type: Transform - - uid: 7416 - components: - - pos: 11.610244,-18.45906 - parent: 1 - type: Transform - - uid: 7417 - components: - - pos: 5.313369,-21.14656 - parent: 1 - type: Transform - - uid: 7454 - components: - - pos: 5.6369214,-15.503014 - parent: 1 - type: Transform - - uid: 9046 - components: - - pos: 16.646183,-24.473928 - parent: 1 - type: Transform - - uid: 9606 - components: - - pos: 45.826847,31.663486 - parent: 1 - type: Transform - - uid: 9607 - components: - - pos: 45.670597,31.522861 - parent: 1 - type: Transform - - uid: 9608 - components: - - rot: -1.5707963267948966 rad - pos: 41.670597,31.694736 - parent: 1 - type: Transform - - uid: 9609 - components: - - rot: -1.5707963267948966 rad - pos: 41.420597,31.725986 - parent: 1 - type: Transform - - uid: 9610 - components: - - rot: 3.141592653589793 rad - pos: 42.545597,33.58536 - parent: 1 - type: Transform - - uid: 9611 - components: - - rot: 1.5707963267948966 rad - pos: 39.873722,33.600986 - parent: 1 - type: Transform - - uid: 9637 - components: - - pos: 18.330774,25.583164 - parent: 1 - type: Transform - - uid: 10640 - components: - - pos: 16.333683,-24.473928 - parent: 1 - type: Transform - - uid: 12435 - components: - - pos: -9.253772,-11.803861 - parent: 1 - type: Transform - - uid: 12436 - components: - - pos: -13.198837,-28.688225 - parent: 1 - type: Transform -- proto: PenCap - entities: - - uid: 4976 - components: - - pos: 4.328023,27.581076 - parent: 1 - type: Transform -- proto: PersonalAI - entities: - - uid: 7651 - components: - - flags: SessionSpecific - type: MetaData - - pos: -40.503788,1.6275148 - parent: 1 - type: Transform - - uid: 8231 - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.47295,-28.48368 - parent: 1 - type: Transform - - uid: 8253 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.3764815,-31.488258 - parent: 1 - type: Transform - - uid: 8254 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.3845835,10.568368 - parent: 1 - type: Transform - - uid: 8255 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.33936208,31.760487 - parent: 1 - type: Transform - - uid: 12429 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.687402,-12.500296 - parent: 1 - type: Transform - - uid: 12430 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.296777,-12.500296 - parent: 1 - type: Transform -- proto: PhoneInstrument - entities: - - uid: 4104 - components: - - pos: -9.523237,28.490625 - parent: 1 - type: Transform -- proto: PianoInstrument - entities: - - uid: 5042 - components: - - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 1 - type: Transform -- proto: Pickaxe - entities: - - uid: 1519 - components: - - pos: 20.414032,-20.475288 - parent: 1 - type: Transform - - uid: 7302 - components: - - pos: 20.648407,-20.490913 - parent: 1 - type: Transform -- proto: PinpointerNuclear - entities: - - uid: 4134 - components: - - pos: -2.6820543,23.560793 - parent: 1 - type: Transform -- proto: PlasmaCanister - entities: - - uid: 6320 - components: - - pos: -20.5,-18.5 - parent: 1 - type: Transform - - uid: 6812 - components: - - pos: 43.5,-15.5 - parent: 1 - type: Transform - - uid: 7002 - components: - - pos: 35.5,-2.5 - parent: 1 - type: Transform -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1743 - components: - - pos: 7.5,-23.5 - parent: 1 - type: Transform - - uid: 1744 - components: - - pos: 10.5,-31.5 - parent: 1 - type: Transform - - uid: 1745 - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform - - uid: 1746 - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform - - uid: 1747 - components: - - pos: 14.5,-31.5 - parent: 1 - type: Transform - - uid: 3562 - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform -- proto: PlasticFlapsAirtightOpaque - entities: - - uid: 2046 - components: - - pos: -38.5,19.5 - parent: 1 - type: Transform -- proto: PlushieLamp - entities: - - uid: 5991 - components: - - pos: 5.7439585,10.615243 - parent: 1 - type: Transform - - uid: 7808 - components: - - pos: -7.528466,-28.402908 - parent: 1 - type: Transform - - uid: 8263 - components: - - pos: -17.703978,-52.27695 - parent: 1 - type: Transform -- proto: PlushieRGBee - entities: - - uid: 2201 - components: - - pos: -24.499949,-19.444412 - parent: 1 - type: Transform -- proto: PlushieSpaceLizard - entities: - - uid: 12542 - components: - - pos: -14.489916,-61.54038 - parent: 1 - type: Transform -- proto: PonderingOrb - entities: - - uid: 12340 - components: - - desc: It shines a brilliant irradiating blue. - name: demon core - type: MetaData - - pos: -0.50479734,65.52099 - parent: 1 - type: Transform - - slope: 0.32 - intensity: 2 - type: RadiationSource -- proto: PortableGeneratorJrPacman - entities: - - uid: 5965 - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform - - uid: 5987 - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform - - uid: 5988 - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform - - uid: 5989 - components: - - pos: -29.5,9.5 - parent: 1 - type: Transform - - uid: 6013 - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform - - uid: 6067 - components: - - pos: 35.5,5.5 - parent: 1 - type: Transform -- proto: PortableGeneratorPacman - entities: - - uid: 2857 - components: - - pos: -11.5,-53.5 - parent: 1 - type: Transform - - uid: 5958 - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform -- proto: PortableGeneratorSuperPacmanMachineCircuitboard - entities: - - uid: 9515 - components: - - pos: -7.3825207,-32.322838 - parent: 1 - type: Transform - - uid: 9516 - components: - - pos: -7.6012707,-32.572838 - parent: 1 - type: Transform -- proto: PortableScrubber - entities: - - uid: 12462 - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - uid: 12463 - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform -- proto: PosterBroken - entities: - - uid: 1298 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,19.5 - parent: 1 - type: Transform - - uid: 2159 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1 - type: Transform -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 11974 - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform -- proto: PosterContrabandClown - entities: - - uid: 11966 - components: - - pos: -10.5,-27.5 - parent: 1 - type: Transform -- proto: PosterContrabandDonutCorp - entities: - - uid: 11956 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- proto: PosterContrabandMissingGloves - entities: - - uid: 11970 - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 11964 - components: - - pos: -5.5,24.5 - parent: 1 - type: Transform -- proto: PosterContrabandTools - entities: - - uid: 11969 - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform -- proto: PosterLegitCarbonDioxide - entities: - - uid: 11973 - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform -- proto: PosterLegitCleanliness - entities: - - uid: 11965 - components: - - pos: -19.5,12.5 - parent: 1 - type: Transform -- proto: PosterLegitIan - entities: - - uid: 11961 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform -- proto: PosterLegitLoveIan - entities: - - uid: 11960 - components: - - pos: -0.5,22.5 - parent: 1 - type: Transform -- proto: PosterLegitObey - entities: - - uid: 11957 - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform -- proto: PosterLegitReportCrimes - entities: - - uid: 11958 - components: - - pos: 20.5,16.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 11972 - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyInternals - entities: - - uid: 11971 - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform -- proto: PosterLegitScience - entities: - - uid: 11979 - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform -- proto: PosterLegitSecWatch - entities: - - uid: 11962 - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform -- proto: PosterLegitSpaceCops - entities: - - uid: 11959 - components: - - pos: 30.5,12.5 - parent: 1 - type: Transform -- proto: PosterLegitStateLaws - entities: - - uid: 11999 - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform - - uid: 12105 - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform -- proto: PottedPlantRandom - entities: - - uid: 1841 - components: - - pos: 13.5,-8.5 - parent: 1 - type: Transform - - uid: 2800 - components: - - pos: -12.5,-48.5 - parent: 1 - type: Transform - - uid: 3957 - components: - - pos: -7.5,48.5 - parent: 1 - type: Transform - - uid: 3958 - components: - - pos: -5.5,48.5 - parent: 1 - type: Transform - - uid: 3959 - components: - - pos: -7.5,44.5 - parent: 1 - type: Transform - - uid: 3960 - components: - - pos: -5.5,44.5 - parent: 1 - type: Transform - - uid: 3961 - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform - - uid: 3962 - components: - - pos: -2.5,53.5 - parent: 1 - type: Transform - - uid: 3963 - components: - - pos: -9.5,56.5 - parent: 1 - type: Transform - - uid: 3964 - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - uid: 3965 - components: - - pos: 3.5,54.5 - parent: 1 - type: Transform - - uid: 3966 - components: - - pos: -0.5,54.5 - parent: 1 - type: Transform - - uid: 3967 - components: - - pos: -0.5,50.5 - parent: 1 - type: Transform - - uid: 3968 - components: - - pos: 3.5,50.5 - parent: 1 - type: Transform - - uid: 4060 - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform - - uid: 4061 - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform - - uid: 4947 - components: - - pos: 27.5,28.5 - parent: 1 - type: Transform - - uid: 4950 - components: - - pos: 31.5,25.5 - parent: 1 - type: Transform - - uid: 4996 - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform - - uid: 4997 - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform - - uid: 4998 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 4999 - components: - - pos: 6.5,16.5 - parent: 1 - type: Transform - - uid: 5378 - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - uid: 5379 - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - uid: 5380 - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform - - uid: 5381 - components: - - pos: 33.5,10.5 - parent: 1 - type: Transform - - uid: 5384 - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - - uid: 5558 - components: - - pos: 44.5,21.5 - parent: 1 - type: Transform - - uid: 5560 - components: - - pos: 39.5,30.5 - parent: 1 - type: Transform - - uid: 5561 - components: - - pos: 46.5,30.5 - parent: 1 - type: Transform - - uid: 5664 - components: - - pos: 16.5,-20.5 - parent: 1 - type: Transform - - uid: 7637 - components: - - pos: -39.5,18.5 - parent: 1 - type: Transform - - uid: 7638 - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform - - uid: 7639 - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - uid: 7648 - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform - - uid: 7649 - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform - - uid: 7674 - components: - - pos: 7.5,-9.5 - parent: 1 - type: Transform - - uid: 7675 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 7676 - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform - - uid: 7677 - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform - - uid: 7678 - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 7679 - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform - - uid: 7680 - components: - - pos: 8.5,-27.5 - parent: 1 - type: Transform - - uid: 7682 - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - uid: 7683 - components: - - pos: 2.5,-26.5 - parent: 1 - type: Transform - - uid: 7684 - components: - - pos: -6.5,-24.5 - parent: 1 - type: Transform - - uid: 7698 - components: - - pos: -13.5,-24.5 - parent: 1 - type: Transform - - uid: 9524 - components: - - pos: 2.5,-33.5 - parent: 1 - type: Transform - - uid: 9525 - components: - - pos: 0.5,-33.5 - parent: 1 - type: Transform - - uid: 9573 - components: - - pos: 46.5,21.5 - parent: 1 - type: Transform - - uid: 9576 - components: - - pos: 44.5,5.5 - parent: 1 - type: Transform - - uid: 10639 - components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform -- proto: PottedPlantRandomPlastic - entities: - - uid: 5696 - components: - - pos: -10.5,19.5 - parent: 1 - type: Transform - - uid: 5697 - components: - - pos: -10.5,20.5 - parent: 1 - type: Transform -- proto: PottedPlantRD - entities: - - uid: 5414 - components: - - pos: -20.5,-0.5 - parent: 1 - type: Transform -- proto: PowerCellHigh - entities: - - uid: 7145 - components: - - pos: 33.68436,-18.590218 - parent: 1 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 785 - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 3821 - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 4117 - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform - - uid: 5353 - components: - - pos: 30.5,8.5 - parent: 1 - type: Transform - - uid: 5901 - components: - - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 5902 - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform - - uid: 5972 - components: - - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 6524 - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 6555 - components: - - pos: 16.5,-8.5 - parent: 1 - type: Transform - - uid: 7241 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 1 - type: Transform - - uid: 9047 - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 9048 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 26 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 49 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3918 - components: - - rot: 3.141592653589793 rad - pos: -5.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3919 - components: - - rot: 3.141592653589793 rad - pos: -2.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3920 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3921 - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3923 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3924 - components: - - rot: 3.141592653589793 rad - pos: -5.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3926 - components: - - pos: 1.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3927 - components: - - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4982 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4983 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4984 - components: - - rot: 3.141592653589793 rad - pos: -2.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4985 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4986 - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4987 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4988 - components: - - pos: -0.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4989 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4990 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4991 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4993 - components: - - rot: 3.141592653589793 rad - pos: -6.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4994 - components: - - rot: 3.141592653589793 rad - pos: -14.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4995 - components: - - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5468 - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5469 - components: - - rot: 3.141592653589793 rad - pos: 25.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5470 - components: - - rot: 3.141592653589793 rad - pos: 28.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5471 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5472 - components: - - rot: 3.141592653589793 rad - pos: 34.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5473 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5474 - components: - - rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5475 - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5476 - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5477 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5478 - components: - - rot: 3.141592653589793 rad - pos: 19.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5479 - components: - - rot: 3.141592653589793 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5480 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5481 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5482 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5483 - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5484 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5485 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5486 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5522 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5523 - components: - - rot: 3.141592653589793 rad - pos: 25.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5929 - components: - - rot: 3.141592653589793 rad - pos: -24.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5930 - components: - - pos: -22.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5931 - components: - - rot: 3.141592653589793 rad - pos: -16.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5932 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5933 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5934 - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5935 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5936 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5937 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5938 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5939 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5940 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5941 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5942 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5943 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5944 - components: - - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 5995 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6406 - components: - - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6407 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6408 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6409 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6410 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6411 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6412 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6413 - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6414 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6743 - components: - - pos: -26.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6744 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6745 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6746 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6747 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6748 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6749 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6750 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6751 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6752 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6753 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6754 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6755 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6756 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6757 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7050 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7051 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7052 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7053 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7054 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7055 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7206 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7207 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7208 - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7209 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7210 - components: - - pos: 27.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7211 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7212 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7213 - components: - - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7214 - components: - - rot: 3.141592653589793 rad - pos: 32.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7215 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7216 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7217 - components: - - pos: 33.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7218 - components: - - rot: 3.141592653589793 rad - pos: 33.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7219 - components: - - rot: 3.141592653589793 rad - pos: 36.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7220 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7221 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7222 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7223 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7224 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7462 - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7463 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7464 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7465 - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7466 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7467 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7468 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7469 - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7470 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7471 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7472 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7473 - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7474 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7891 - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7892 - components: - - rot: 3.141592653589793 rad - pos: -17.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7893 - components: - - pos: -23.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7896 - components: - - rot: 3.141592653589793 rad - pos: -29.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7897 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7898 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7899 - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7900 - components: - - pos: -35.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7901 - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7902 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7903 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7904 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8001 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8002 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8003 - components: - - rot: 3.141592653589793 rad - pos: -43.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8004 - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8005 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8006 - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8007 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8008 - components: - - pos: -9.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8009 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8010 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8011 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8012 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8014 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8015 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8016 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8017 - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8018 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8019 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9043 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9044 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9052 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9053 - components: - - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9054 - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9055 - components: - - rot: 3.141592653589793 rad - pos: 36.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9056 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9057 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9059 - components: - - rot: 3.141592653589793 rad - pos: 41.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9061 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9062 - components: - - pos: 39.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9063 - components: - - rot: 3.141592653589793 rad - pos: 43.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9064 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11929 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 11930 - components: - - rot: -1.5707963267948966 rad - pos: -36.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredlightSodium - entities: - - uid: 7461 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight - entities: - - uid: 28 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 1794 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,22.5 - parent: 1 - type: Transform - - uid: 2781 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2928 - components: - - pos: -14.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 2929 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 3928 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 4992 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6742 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8316 - components: - - pos: -34.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8807 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8932 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9060 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9065 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9066 - components: - - rot: 3.141592653589793 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9155 - components: - - rot: 3.141592653589793 rad - pos: 25.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9156 - components: - - pos: -31.5,-22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9157 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 9331 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,22.5 - parent: 1 - type: Transform - - uid: 9649 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12126 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12476 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 12518 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 1 - type: Transform -- proto: PoweredSmallLightEmpty - entities: - - uid: 8317 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 8806 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-23.5 - parent: 1 - type: Transform -- proto: Protolathe - entities: - - uid: 3806 - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform -- proto: Rack - entities: - - uid: 559 - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - uid: 657 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 775 - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform - - uid: 2761 - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform - - uid: 2762 - components: - - pos: -2.5,54.5 - parent: 1 - type: Transform - - uid: 2934 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 - parent: 1 - type: Transform - - uid: 4920 - components: - - pos: 39.5,21.5 - parent: 1 - type: Transform - - uid: 4921 - components: - - pos: 40.5,21.5 - parent: 1 - type: Transform - - uid: 5333 - components: - - pos: 28.5,8.5 - parent: 1 - type: Transform - - uid: 5342 - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform - - uid: 5555 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,2.5 - parent: 1 - type: Transform - - uid: 5556 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,20.5 - parent: 1 - type: Transform - - uid: 5598 - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform - - uid: 7074 - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform - - uid: 7075 - components: - - pos: -3.5,-34.5 - parent: 1 - type: Transform - - uid: 7076 - components: - - pos: -2.5,-34.5 - parent: 1 - type: Transform - - uid: 7077 - components: - - pos: -1.5,-34.5 - parent: 1 - type: Transform - - uid: 7134 - components: - - pos: 31.5,-16.5 - parent: 1 - type: Transform - - uid: 7293 - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform - - uid: 7713 - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform - - uid: 7806 - components: - - pos: -5.5,-28.5 - parent: 1 - type: Transform - - uid: 8240 - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform - - uid: 8241 - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform - - uid: 8283 - components: - - pos: -25.5,-24.5 - parent: 1 - type: Transform - - uid: 8287 - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - uid: 8484 - components: - - pos: -7.5,-33.5 - parent: 1 - type: Transform - - uid: 8490 - components: - - pos: -7.5,-32.5 - parent: 1 - type: Transform - - uid: 8496 - components: - - pos: -7.5,-31.5 - parent: 1 - type: Transform - - uid: 8764 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-24.5 - parent: 1 - type: Transform - - uid: 8808 - components: - - pos: -43.5,-16.5 - parent: 1 - type: Transform - - uid: 8880 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-14.5 - parent: 1 - type: Transform - - uid: 8883 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-19.5 - parent: 1 - type: Transform - - uid: 8884 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 1 - type: Transform - - uid: 8885 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 1 - type: Transform - - uid: 8891 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 1 - type: Transform - - uid: 8900 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-9.5 - parent: 1 - type: Transform - - uid: 8901 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-9.5 - parent: 1 - type: Transform - - uid: 9130 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - uid: 9134 - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - uid: 9254 - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform - - uid: 9314 - components: - - pos: 14.5,21.5 - parent: 1 - type: Transform - - uid: 9323 - components: - - pos: -13.5,28.5 - parent: 1 - type: Transform - - uid: 9351 - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - uid: 9358 - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform - - uid: 9359 - components: - - pos: 12.5,32.5 - parent: 1 - type: Transform - - uid: 9368 - components: - - pos: 13.5,30.5 - parent: 1 - type: Transform - - uid: 9369 - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform - - uid: 9371 - components: - - pos: 14.5,33.5 - parent: 1 - type: Transform - - uid: 9543 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,11.5 - parent: 1 - type: Transform - - uid: 9544 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,26.5 - parent: 1 - type: Transform - - uid: 9618 - components: - - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 1 - type: Transform - - uid: 9619 - components: - - rot: 3.141592653589793 rad - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 9684 - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - uid: 9687 - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform - - uid: 9699 - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform - - uid: 12425 - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform - - uid: 12426 - components: - - pos: -12.5,-11.5 - parent: 1 - type: Transform -- proto: RadarConsoleCircuitboard - entities: - - uid: 9522 - components: - - pos: -7.3932076,-33.368607 - parent: 1 - type: Transform -- proto: RadioHandheld - entities: - - uid: 12547 - components: - - pos: 20.335823,-20.56861 - parent: 1 - type: Transform - - uid: 12548 - components: - - pos: 20.679573,-20.66236 - parent: 1 - type: Transform -- proto: Railing - entities: - - uid: 437 - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform - - uid: 438 - components: - - rot: 3.141592653589793 rad - pos: -7.5,22.5 - parent: 1 - type: Transform - - uid: 647 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 1 - type: Transform - - uid: 648 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 1 - type: Transform - - uid: 649 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - uid: 651 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform - - uid: 3015 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-10.5 - parent: 1 - type: Transform - - uid: 7017 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 1 - type: Transform - - uid: 7018 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 1 - type: Transform - - uid: 7019 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 1 - type: Transform - - uid: 7664 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 1 - type: Transform - - uid: 8596 - components: - - pos: -43.5,-16.5 - parent: 1 - type: Transform - - uid: 8609 - components: - - pos: -42.5,-16.5 - parent: 1 - type: Transform - - uid: 8758 - components: - - pos: -40.5,-16.5 - parent: 1 - type: Transform - - uid: 8872 - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-19.5 - parent: 1 - type: Transform - - uid: 8873 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 1 - type: Transform - - uid: 9124 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1 - type: Transform - - uid: 9125 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 1 - type: Transform - - uid: 9175 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 1 - type: Transform - - uid: 9176 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 1 - type: Transform - - uid: 9333 - components: - - rot: 3.141592653589793 rad - pos: 21.5,25.5 - parent: 1 - type: Transform - - uid: 9334 - components: - - rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 9335 - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - uid: 12491 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 1 - type: Transform - - uid: 12492 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 1 - type: Transform -- proto: RailingCornerSmall - entities: - - uid: 652 - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 653 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 1 - type: Transform - - uid: 12489 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform - - uid: 12490 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 1 - type: Transform -- proto: RandomArcade - entities: - - uid: 8795 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-23.5 - parent: 1 - type: Transform - - uid: 8796 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-23.5 - parent: 1 - type: Transform -- proto: RandomArtifactSpawner - entities: - - uid: 6321 - components: - - pos: -20.5,-13.5 - parent: 1 - type: Transform - - uid: 6325 - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform -- proto: RandomArtifactSpawner20 - entities: - - uid: 8233 - components: - - pos: -15.5,-29.5 - parent: 1 - type: Transform - - uid: 8234 - components: - - pos: 42.5,19.5 - parent: 1 - type: Transform - - uid: 8235 - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform -- proto: RandomDrinkBottle - entities: - - uid: 5982 - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform -- proto: RandomDrinkGlass - entities: - - uid: 5980 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 7653 - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 7654 - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 8311 - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - uid: 8312 - components: - - pos: -32.5,-17.5 - parent: 1 - type: Transform -- proto: RandomFoodBakedWhole - entities: - - uid: 5984 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform -- proto: RandomFoodMeal - entities: - - uid: 5983 - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform - - uid: 7655 - components: - - pos: 34.5,3.5 - parent: 1 - type: Transform - - uid: 8313 - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform -- proto: RandomFoodSingle - entities: - - uid: 5981 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 7652 - components: - - pos: -25.5,3.5 - parent: 1 - type: Transform - - uid: 8314 - components: - - pos: -29.5,-14.5 - parent: 1 - type: Transform -- proto: RandomInstruments - entities: - - uid: 4951 - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - uid: 4952 - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - uid: 6399 - components: - - pos: -15.5,-24.5 - parent: 1 - type: Transform - - uid: 7801 - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform - - uid: 7802 - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform -- proto: RandomPosterAny - entities: - - uid: 11981 - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform - - uid: 11984 - components: - - pos: -23.5,-20.5 - parent: 1 - type: Transform - - uid: 11985 - components: - - pos: -14.5,-23.5 - parent: 1 - type: Transform - - uid: 11986 - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 11987 - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 11988 - components: - - pos: 21.5,-16.5 - parent: 1 - type: Transform - - uid: 11989 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - uid: 11990 - components: - - pos: 33.5,-1.5 - parent: 1 - type: Transform - - uid: 11991 - components: - - pos: 40.5,8.5 - parent: 1 - type: Transform - - uid: 11992 - components: - - pos: 37.5,15.5 - parent: 1 - type: Transform - - uid: 11993 - components: - - pos: 30.5,32.5 - parent: 1 - type: Transform - - uid: 11994 - components: - - pos: 18.5,31.5 - parent: 1 - type: Transform - - uid: 11996 - components: - - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 11997 - components: - - pos: 14.5,19.5 - parent: 1 - type: Transform - - uid: 12106 - components: - - pos: -33.5,20.5 - parent: 1 - type: Transform - - uid: 12107 - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - uid: 12108 - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - uid: 12109 - components: - - pos: -9.5,22.5 - parent: 1 - type: Transform - - uid: 12122 - components: - - pos: -32.5,-21.5 - parent: 1 - type: Transform -- proto: RandomPosterContraband - entities: - - uid: 11983 - components: - - pos: -44.5,-15.5 - parent: 1 - type: Transform - - uid: 11995 - components: - - pos: 19.5,26.5 - parent: 1 - type: Transform -- proto: RandomPosterLegit - entities: - - uid: 29 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 11939 - components: - - pos: -5.5,26.5 - parent: 1 - type: Transform - - uid: 11940 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 11941 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - uid: 11942 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 11943 - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform - - uid: 11944 - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform - - uid: 11945 - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 11946 - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 11947 - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 11948 - components: - - pos: 39.5,0.5 - parent: 1 - type: Transform - - uid: 11949 - components: - - pos: 43.5,7.5 - parent: 1 - type: Transform - - uid: 11951 - components: - - pos: 40.5,24.5 - parent: 1 - type: Transform - - uid: 11952 - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 11953 - components: - - pos: -30.5,4.5 - parent: 1 - type: Transform - - uid: 11954 - components: - - pos: -38.5,11.5 - parent: 1 - type: Transform - - uid: 11955 - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform - - uid: 11967 - components: - - pos: 16.5,-19.5 - parent: 1 - type: Transform - - uid: 11968 - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform - - uid: 11975 - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform - - uid: 11976 - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform - - uid: 11977 - components: - - pos: -12.5,-23.5 - parent: 1 - type: Transform - - uid: 11978 - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform - - uid: 11980 - components: - - pos: -29.5,-5.5 - parent: 1 - type: Transform - - uid: 11998 - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - uid: 12101 - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform - - uid: 12102 - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform - - uid: 12103 - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform - - uid: 12104 - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform - - uid: 12110 - components: - - pos: -38.5,20.5 - parent: 1 - type: Transform -- proto: RandomSoap - entities: - - uid: 12498 - components: - - pos: -19.5,-27.5 - parent: 1 - type: Transform - - uid: 12499 - components: - - pos: -17.5,-27.5 - parent: 1 - type: Transform - - uid: 12500 - components: - - pos: -15.5,-27.5 - parent: 1 - type: Transform -- proto: RandomSpawner - entities: - - uid: 11734 - components: - - pos: -11.5,27.5 - parent: 1 - type: Transform - - uid: 11735 - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - uid: 11736 - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - uid: 11737 - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 11738 - components: - - pos: 2.5,14.5 - parent: 1 - type: Transform - - uid: 11739 - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - uid: 11740 - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform - - uid: 11741 - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform - - uid: 11742 - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - uid: 11743 - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform - - uid: 11744 - components: - - pos: -6.5,1.5 - parent: 1 - type: Transform - - uid: 11745 - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 11746 - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 11747 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 11748 - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - uid: 11750 - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform - - uid: 11751 - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - - uid: 11752 - components: - - pos: 9.5,3.5 - parent: 1 - type: Transform - - uid: 11753 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - uid: 11754 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 11755 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 11756 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 11757 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - uid: 11758 - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform - - uid: 11759 - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - - uid: 11760 - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - uid: 11761 - components: - - pos: 37.5,1.5 - parent: 1 - type: Transform - - uid: 11762 - components: - - pos: 40.5,3.5 - parent: 1 - type: Transform - - uid: 11763 - components: - - pos: 45.5,1.5 - parent: 1 - type: Transform - - uid: 11764 - components: - - pos: 46.5,8.5 - parent: 1 - type: Transform - - uid: 11765 - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform - - uid: 11766 - components: - - pos: 44.5,22.5 - parent: 1 - type: Transform - - uid: 11767 - components: - - pos: 40.5,26.5 - parent: 1 - type: Transform - - uid: 11768 - components: - - pos: 45.5,28.5 - parent: 1 - type: Transform - - uid: 11769 - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform - - uid: 11770 - components: - - pos: 27.5,26.5 - parent: 1 - type: Transform - - uid: 11771 - components: - - pos: 33.5,21.5 - parent: 1 - type: Transform - - uid: 11772 - components: - - pos: 31.5,16.5 - parent: 1 - type: Transform - - uid: 11773 - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform - - uid: 11774 - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform - - uid: 11775 - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform - - uid: 11776 - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - uid: 11777 - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform - - uid: 11778 - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform - - uid: 11779 - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - uid: 11780 - components: - - pos: 32.5,6.5 - parent: 1 - type: Transform - - uid: 11781 - components: - - pos: 42.5,15.5 - parent: 1 - type: Transform - - uid: 11782 - components: - - pos: 41.5,6.5 - parent: 1 - type: Transform - - uid: 11783 - components: - - pos: 36.5,19.5 - parent: 1 - type: Transform - - uid: 11784 - components: - - pos: 37.5,29.5 - parent: 1 - type: Transform - - uid: 11785 - components: - - pos: 33.5,34.5 - parent: 1 - type: Transform - - uid: 11786 - components: - - pos: 26.5,33.5 - parent: 1 - type: Transform - - uid: 11787 - components: - - pos: 21.5,35.5 - parent: 1 - type: Transform - - uid: 11788 - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform - - uid: 11789 - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform - - uid: 11790 - components: - - pos: 9.5,28.5 - parent: 1 - type: Transform - - uid: 11791 - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform - - uid: 11792 - components: - - pos: 13.5,18.5 - parent: 1 - type: Transform - - uid: 11793 - components: - - pos: 21.5,18.5 - parent: 1 - type: Transform - - uid: 11794 - components: - - pos: 26.5,20.5 - parent: 1 - type: Transform - - uid: 11795 - components: - - pos: 20.5,26.5 - parent: 1 - type: Transform - - uid: 11796 - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform - - uid: 11799 - components: - - pos: 17.5,26.5 - parent: 1 - type: Transform - - uid: 11800 - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - - uid: 11801 - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform - - uid: 11802 - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform - - uid: 11803 - components: - - pos: -17.5,28.5 - parent: 1 - type: Transform - - uid: 11804 - components: - - pos: -27.5,26.5 - parent: 1 - type: Transform - - uid: 11805 - components: - - pos: -23.5,22.5 - parent: 1 - type: Transform - - uid: 11806 - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform - - uid: 11807 - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform - - uid: 11808 - components: - - pos: -34.5,23.5 - parent: 1 - type: Transform - - uid: 11809 - components: - - pos: -36.5,18.5 - parent: 1 - type: Transform - - uid: 11810 - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform - - uid: 11811 - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform - - uid: 11812 - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - uid: 11813 - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - uid: 11814 - components: - - pos: -41.5,3.5 - parent: 1 - type: Transform - - uid: 11815 - components: - - pos: -35.5,1.5 - parent: 1 - type: Transform - - uid: 11816 - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform - - uid: 11817 - components: - - pos: -24.5,1.5 - parent: 1 - type: Transform - - uid: 11818 - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform - - uid: 11819 - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - uid: 11820 - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform - - uid: 11821 - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 11822 - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - uid: 11823 - components: - - pos: -20.5,8.5 - parent: 1 - type: Transform - - uid: 11824 - components: - - pos: -16.5,15.5 - parent: 1 - type: Transform - - uid: 11825 - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform - - uid: 11826 - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - uid: 11827 - components: - - pos: -25.5,10.5 - parent: 1 - type: Transform - - uid: 11828 - components: - - pos: -24.5,15.5 - parent: 1 - type: Transform - - uid: 11829 - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform - - uid: 11830 - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform - - uid: 11831 - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform - - uid: 11832 - components: - - pos: -29.5,15.5 - parent: 1 - type: Transform - - uid: 11833 - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform - - uid: 11834 - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - uid: 11835 - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform - - uid: 11836 - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform - - uid: 11837 - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform - - uid: 11838 - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform - - uid: 11839 - components: - - pos: -40.5,-10.5 - parent: 1 - type: Transform - - uid: 11840 - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform - - uid: 11841 - components: - - pos: -34.5,-9.5 - parent: 1 - type: Transform - - uid: 11842 - components: - - pos: -28.5,-9.5 - parent: 1 - type: Transform - - uid: 11843 - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform - - uid: 11844 - components: - - pos: -26.5,-18.5 - parent: 1 - type: Transform - - uid: 11845 - components: - - pos: -22.5,-20.5 - parent: 1 - type: Transform - - uid: 11846 - components: - - pos: -15.5,-21.5 - parent: 1 - type: Transform - - uid: 11847 - components: - - pos: -17.5,-25.5 - parent: 1 - type: Transform - - uid: 11848 - components: - - pos: -9.5,-21.5 - parent: 1 - type: Transform - - uid: 11849 - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform - - uid: 11850 - components: - - pos: -3.5,-18.5 - parent: 1 - type: Transform - - uid: 11852 - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform - - uid: 11853 - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform - - uid: 11854 - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform - - uid: 11855 - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform - - uid: 11856 - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform - - uid: 11857 - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - uid: 11858 - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform - - uid: 11859 - components: - - pos: -17.5,-10.5 - parent: 1 - type: Transform - - uid: 11860 - components: - - pos: -15.5,-16.5 - parent: 1 - type: Transform - - uid: 11861 - components: - - pos: -20.5,-17.5 - parent: 1 - type: Transform - - uid: 11862 - components: - - pos: -22.5,-25.5 - parent: 1 - type: Transform - - uid: 11863 - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - uid: 11864 - components: - - pos: -37.5,-19.5 - parent: 1 - type: Transform - - uid: 11865 - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform - - uid: 11866 - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - uid: 11867 - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform - - uid: 11868 - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - uid: 11869 - components: - - pos: -41.5,-15.5 - parent: 1 - type: Transform - - uid: 11870 - components: - - pos: -42.5,-18.5 - parent: 1 - type: Transform - - uid: 11871 - components: - - pos: -40.5,-23.5 - parent: 1 - type: Transform - - uid: 11872 - components: - - pos: -9.5,-26.5 - parent: 1 - type: Transform - - uid: 11873 - components: - - pos: -2.5,-24.5 - parent: 1 - type: Transform - - uid: 11874 - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - uid: 11875 - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform - - uid: 11876 - components: - - pos: 0.5,-31.5 - parent: 1 - type: Transform - - uid: 11877 - components: - - pos: 2.5,-23.5 - parent: 1 - type: Transform - - uid: 11878 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - uid: 11879 - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 11880 - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform - - uid: 11881 - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform - - uid: 11882 - components: - - pos: 16.5,-18.5 - parent: 1 - type: Transform - - uid: 11883 - components: - - pos: 23.5,-17.5 - parent: 1 - type: Transform - - uid: 11884 - components: - - pos: 29.5,-17.5 - parent: 1 - type: Transform - - uid: 11885 - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform - - uid: 11886 - components: - - pos: 31.5,-11.5 - parent: 1 - type: Transform - - uid: 11887 - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform - - uid: 11888 - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform - - uid: 11889 - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform - - uid: 11890 - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform - - uid: 11891 - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - uid: 11892 - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform - - uid: 11893 - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - uid: 11894 - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - uid: 11895 - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform - - uid: 11896 - components: - - pos: 34.5,-0.5 - parent: 1 - type: Transform - - uid: 11897 - components: - - pos: 43.5,-0.5 - parent: 1 - type: Transform - - uid: 11898 - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform - - uid: 11899 - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform - - uid: 11900 - components: - - pos: 13.5,-25.5 - parent: 1 - type: Transform - - uid: 11901 - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform - - uid: 11902 - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform - - uid: 11903 - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform - - uid: 11904 - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - uid: 11905 - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - - uid: 11906 - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - uid: 11907 - components: - - pos: 20.5,-21.5 - parent: 1 - type: Transform - - uid: 11908 - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - uid: 12423 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 12538 - components: - - pos: -22.5,-28.5 - parent: 1 - type: Transform -- proto: RandomVending - entities: - - uid: 7525 - components: - - pos: -41.5,16.5 - parent: 1 - type: Transform - - uid: 7534 - components: - - pos: -32.5,0.5 - parent: 1 - type: Transform - - uid: 7541 - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform - - uid: 7685 - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform - - uid: 7686 - components: - - pos: 9.5,-9.5 - parent: 1 - type: Transform - - uid: 9241 - components: - - pos: 19.5,34.5 - parent: 1 - type: Transform - - uid: 9565 - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform - - uid: 9570 - components: - - pos: 41.5,4.5 - parent: 1 - type: Transform - - uid: 9572 - components: - - pos: 44.5,14.5 - parent: 1 - type: Transform -- proto: RandomVendingDrinks - entities: - - uid: 5050 - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform - - uid: 7529 - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - uid: 7531 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 7532 - components: - - pos: -34.5,0.5 - parent: 1 - type: Transform - - uid: 7536 - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform - - uid: 7687 - components: - - pos: -12.5,-24.5 - parent: 1 - type: Transform - - uid: 9240 - components: - - pos: 19.5,33.5 - parent: 1 - type: Transform - - uid: 9527 - components: - - pos: 2.5,-28.5 - parent: 1 - type: Transform - - uid: 9564 - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - uid: 9568 - components: - - pos: 39.5,4.5 - parent: 1 - type: Transform - - uid: 9569 - components: - - pos: 44.5,11.5 - parent: 1 - type: Transform -- proto: RandomVendingSnacks - entities: - - uid: 5049 - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - uid: 7528 - components: - - pos: -39.5,11.5 - parent: 1 - type: Transform - - uid: 7535 - components: - - pos: -31.5,0.5 - parent: 1 - type: Transform - - uid: 7537 - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform - - uid: 7538 - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform - - uid: 7540 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 7688 - components: - - pos: -11.5,-24.5 - parent: 1 - type: Transform - - uid: 9243 - components: - - pos: 19.5,32.5 - parent: 1 - type: Transform - - uid: 9244 - components: - - pos: 26.5,32.5 - parent: 1 - type: Transform - - uid: 9526 - components: - - pos: 2.5,-29.5 - parent: 1 - type: Transform - - uid: 9566 - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform - - uid: 9567 - components: - - pos: 40.5,4.5 - parent: 1 - type: Transform - - uid: 9571 - components: - - pos: 44.5,12.5 - parent: 1 - type: Transform -- proto: RCD - entities: - - uid: 7135 - components: - - pos: 31.574986,-16.418343 - parent: 1 - type: Transform - - uid: 12468 - components: - - pos: 18.51267,-13.338883 - parent: 1 - type: Transform -- proto: RCDAmmo - entities: - - uid: 7136 - components: - - pos: 31.27811,-16.605843 - parent: 1 - type: Transform - - uid: 12469 - components: - - pos: 18.278296,-13.526383 - parent: 1 - type: Transform - - uid: 12470 - components: - - pos: 18.434546,-13.526383 - parent: 1 - type: Transform -- proto: ReagentContainerFlour - entities: - - uid: 6016 - components: - - pos: 0.46557093,1.1092224 - parent: 1 - type: Transform -- proto: ReagentContainerSugar - entities: - - uid: 6017 - components: - - pos: 0.6191431,1.0935974 - parent: 1 - type: Transform -- proto: Recycler - entities: - - uid: 3570 - components: - - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 1 - type: Transform - - links: - - 9199 - type: DeviceLinkSink -- proto: ReinforcedPlasmaWindow - entities: - - uid: 521 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-4.5 - parent: 1 - type: Transform - - uid: 539 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform - - uid: 1434 - components: - - pos: 42.5,-5.5 - parent: 1 - type: Transform - - uid: 1435 - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - uid: 1437 - components: - - pos: 42.5,-11.5 - parent: 1 - type: Transform - - uid: 1438 - components: - - pos: 42.5,-13.5 - parent: 1 - type: Transform - - uid: 1439 - components: - - pos: 42.5,-15.5 - parent: 1 - type: Transform - - uid: 1440 - components: - - pos: 42.5,-17.5 - parent: 1 - type: Transform - - uid: 6822 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 1 - type: Transform - - uid: 12308 - components: - - rot: 3.141592653589793 rad - pos: -0.5,64.5 - parent: 1 - type: Transform - - uid: 12309 - components: - - rot: 3.141592653589793 rad - pos: -1.5,65.5 - parent: 1 - type: Transform - - uid: 12310 - components: - - rot: 3.141592653589793 rad - pos: -0.5,66.5 - parent: 1 - type: Transform - - uid: 12311 - components: - - rot: 3.141592653589793 rad - pos: 0.5,65.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 23 - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 1 - type: Transform - - uid: 31 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 32 - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - uid: 33 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 1 - type: Transform - - uid: 37 - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - uid: 39 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - uid: 45 - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform - - uid: 61 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - type: Transform - - uid: 62 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 63 - components: - - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 64 - components: - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 1 - type: Transform - - uid: 108 - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform - - uid: 109 - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - uid: 110 - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform - - uid: 121 - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform - - uid: 134 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - uid: 135 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - uid: 136 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - uid: 137 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - uid: 159 - components: - - rot: 3.141592653589793 rad - pos: -10.5,8.5 - parent: 1 - type: Transform - - uid: 161 - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - uid: 163 - components: - - pos: -7.5,14.5 - parent: 1 - type: Transform - - uid: 164 - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - uid: 170 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 171 - components: - - rot: 3.141592653589793 rad - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 174 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1 - type: Transform - - uid: 178 - components: - - rot: 3.141592653589793 rad - pos: -7.5,6.5 - parent: 1 - type: Transform - - uid: 186 - components: - - pos: -14.5,16.5 - parent: 1 - type: Transform - - uid: 188 - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform - - uid: 209 - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform - - uid: 211 - components: - - rot: 3.141592653589793 rad - pos: -8.5,4.5 - parent: 1 - type: Transform - - uid: 212 - components: - - rot: 3.141592653589793 rad - pos: -9.5,4.5 - parent: 1 - type: Transform - - uid: 215 - components: - - rot: 3.141592653589793 rad - pos: -11.5,4.5 - parent: 1 - type: Transform - - uid: 217 - components: - - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 1 - type: Transform - - uid: 219 - components: - - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 1 - type: Transform - - uid: 220 - components: - - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 1 - type: Transform - - uid: 228 - components: - - rot: 3.141592653589793 rad - pos: -18.5,4.5 - parent: 1 - type: Transform - - uid: 229 - components: - - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 1 - type: Transform - - uid: 231 - components: - - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 1 - type: Transform - - uid: 255 - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 1 - type: Transform - - uid: 263 - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform - - uid: 264 - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform - - uid: 265 - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform - - uid: 332 - components: - - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - uid: 333 - components: - - rot: 3.141592653589793 rad - pos: 4.5,32.5 - parent: 1 - type: Transform - - uid: 334 - components: - - rot: 3.141592653589793 rad - pos: 5.5,32.5 - parent: 1 - type: Transform - - uid: 362 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform - - uid: 366 - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform - - uid: 368 - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform - - uid: 369 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform - - uid: 371 - components: - - pos: -3.5,33.5 - parent: 1 - type: Transform - - uid: 372 - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform - - uid: 373 - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - uid: 376 - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform - - uid: 379 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,27.5 - parent: 1 - type: Transform - - uid: 380 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 1 - type: Transform - - uid: 381 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - uid: 382 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 1 - type: Transform - - uid: 400 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - type: Transform - - uid: 401 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 1 - type: Transform - - uid: 403 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - type: Transform - - uid: 404 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 1 - type: Transform - - uid: 426 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - type: Transform - - uid: 430 - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform - - uid: 445 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 446 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - uid: 447 - components: - - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - uid: 448 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 450 - components: - - rot: 3.141592653589793 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - uid: 451 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform - - uid: 452 - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - uid: 455 - components: - - rot: 3.141592653589793 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - uid: 457 - components: - - rot: 3.141592653589793 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - uid: 467 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 1 - type: Transform - - uid: 473 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform - - uid: 504 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - uid: 545 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform - - uid: 578 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - uid: 579 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 1 - type: Transform - - uid: 582 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - uid: 589 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-11.5 - parent: 1 - type: Transform - - uid: 593 - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform - - uid: 594 - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform - - uid: 595 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - uid: 598 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-11.5 - parent: 1 - type: Transform - - uid: 600 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 1 - type: Transform - - uid: 602 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - uid: 608 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 1 - type: Transform - - uid: 609 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-13.5 - parent: 1 - type: Transform - - uid: 610 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-11.5 - parent: 1 - type: Transform - - uid: 611 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 1 - type: Transform - - uid: 667 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - type: Transform - - uid: 671 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - type: Transform - - uid: 674 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 1 - type: Transform - - uid: 703 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 1 - type: Transform - - uid: 704 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 1 - type: Transform - - uid: 705 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1 - type: Transform - - uid: 706 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,4.5 - parent: 1 - type: Transform - - uid: 707 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 708 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - uid: 709 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - uid: 710 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - uid: 711 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 721 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - uid: 723 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 1 - type: Transform - - uid: 725 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 1 - type: Transform - - uid: 737 - components: - - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 1 - type: Transform - - uid: 738 - components: - - rot: 3.141592653589793 rad - pos: 19.5,11.5 - parent: 1 - type: Transform - - uid: 739 - components: - - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 1 - type: Transform - - uid: 740 - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 1 - type: Transform - - uid: 792 - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform - - uid: 960 - components: - - pos: 28.5,31.5 - parent: 1 - type: Transform - - uid: 965 - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform - - uid: 966 - components: - - pos: 26.5,31.5 - parent: 1 - type: Transform - - uid: 967 - components: - - pos: 25.5,31.5 - parent: 1 - type: Transform - - uid: 968 - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform - - uid: 979 - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform - - uid: 980 - components: - - pos: 31.5,29.5 - parent: 1 - type: Transform - - uid: 981 - components: - - pos: 30.5,29.5 - parent: 1 - type: Transform - - uid: 982 - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform - - uid: 983 - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform - - uid: 1030 - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - uid: 1031 - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform - - uid: 1037 - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - uid: 1048 - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform - - uid: 1049 - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - uid: 1072 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - uid: 1077 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - uid: 1078 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - uid: 1079 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - uid: 1084 - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform - - uid: 1085 - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - uid: 1086 - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform - - uid: 1099 - components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform - - uid: 1176 - components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform - - uid: 1178 - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform - - uid: 1179 - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - uid: 1180 - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform - - uid: 1181 - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - uid: 1182 - components: - - pos: 24.5,-4.5 - parent: 1 - type: Transform - - uid: 1183 - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform - - uid: 1184 - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - uid: 1185 - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform - - uid: 1253 - components: - - pos: 46.5,0.5 - parent: 1 - type: Transform - - uid: 1254 - components: - - pos: 47.5,0.5 - parent: 1 - type: Transform - - uid: 1255 - components: - - pos: 47.5,1.5 - parent: 1 - type: Transform - - uid: 1258 - components: - - pos: 47.5,16.5 - parent: 1 - type: Transform - - uid: 1259 - components: - - pos: 47.5,15.5 - parent: 1 - type: Transform - - uid: 1264 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,2.5 - parent: 1 - type: Transform - - uid: 1265 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,3.5 - parent: 1 - type: Transform - - uid: 1266 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,10.5 - parent: 1 - type: Transform - - uid: 1267 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,9.5 - parent: 1 - type: Transform - - uid: 1270 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 1 - type: Transform - - uid: 1284 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,8.5 - parent: 1 - type: Transform - - uid: 1285 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,7.5 - parent: 1 - type: Transform - - uid: 1293 - components: - - pos: 47.5,17.5 - parent: 1 - type: Transform - - uid: 1295 - components: - - pos: 43.5,21.5 - parent: 1 - type: Transform - - uid: 1296 - components: - - pos: 43.5,23.5 - parent: 1 - type: Transform - - uid: 1308 - components: - - pos: 40.5,-19.5 - parent: 1 - type: Transform - - uid: 1309 - components: - - pos: 40.5,-18.5 - parent: 1 - type: Transform - - uid: 1310 - components: - - pos: 40.5,-17.5 - parent: 1 - type: Transform - - uid: 1311 - components: - - pos: 40.5,-16.5 - parent: 1 - type: Transform - - uid: 1312 - components: - - pos: 40.5,-15.5 - parent: 1 - type: Transform - - uid: 1313 - components: - - pos: 40.5,-14.5 - parent: 1 - type: Transform - - uid: 1314 - components: - - pos: 40.5,-13.5 - parent: 1 - type: Transform - - uid: 1315 - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform - - uid: 1316 - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - uid: 1317 - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform - - uid: 1318 - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform - - uid: 1319 - components: - - pos: 40.5,-8.5 - parent: 1 - type: Transform - - uid: 1320 - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - uid: 1321 - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform - - uid: 1322 - components: - - pos: 40.5,-5.5 - parent: 1 - type: Transform - - uid: 1323 - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform - - uid: 1324 - components: - - pos: 40.5,-3.5 - parent: 1 - type: Transform - - uid: 1342 - components: - - pos: 39.5,-19.5 - parent: 1 - type: Transform - - uid: 1343 - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - uid: 1344 - components: - - pos: 37.5,-19.5 - parent: 1 - type: Transform - - uid: 1345 - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform - - uid: 1346 - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform - - uid: 1347 - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform - - uid: 1349 - components: - - pos: 32.5,-19.5 - parent: 1 - type: Transform - - uid: 1350 - components: - - pos: 31.5,-19.5 - parent: 1 - type: Transform - - uid: 1363 - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform - - uid: 1367 - components: - - pos: 33.5,-22.5 - parent: 1 - type: Transform - - uid: 1368 - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform - - uid: 1369 - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform - - uid: 1370 - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - uid: 1371 - components: - - pos: 37.5,-22.5 - parent: 1 - type: Transform - - uid: 1372 - components: - - pos: 37.5,-23.5 - parent: 1 - type: Transform - - uid: 1458 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - uid: 1492 - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform - - uid: 1494 - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform - - uid: 1499 - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform - - uid: 1500 - components: - - pos: 4.5,-24.5 - parent: 1 - type: Transform - - uid: 1508 - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - uid: 1509 - components: - - pos: 7.5,-25.5 - parent: 1 - type: Transform - - uid: 1513 - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform - - uid: 1517 - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform - - uid: 1518 - components: - - pos: 17.5,-23.5 - parent: 1 - type: Transform - - uid: 1524 - components: - - pos: 27.5,-23.5 - parent: 1 - type: Transform - - uid: 1535 - components: - - pos: 20.5,-28.5 - parent: 1 - type: Transform - - uid: 1536 - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform - - uid: 1540 - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - uid: 1541 - components: - - pos: 9.5,-30.5 - parent: 1 - type: Transform - - uid: 1542 - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform - - uid: 1548 - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - uid: 1549 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 1 - type: Transform - - uid: 1550 - components: - - pos: 12.5,-30.5 - parent: 1 - type: Transform - - uid: 1551 - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - uid: 1552 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-28.5 - parent: 1 - type: Transform - - uid: 1559 - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - uid: 1561 - components: - - pos: 24.5,-25.5 - parent: 1 - type: Transform - - uid: 1562 - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform - - uid: 1568 - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform - - uid: 1569 - components: - - pos: 11.5,-24.5 - parent: 1 - type: Transform - - uid: 1570 - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform - - uid: 1571 - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform - - uid: 1608 - components: - - pos: 3.5,-29.5 - parent: 1 - type: Transform - - uid: 1614 - components: - - pos: 3.5,-30.5 - parent: 1 - type: Transform - - uid: 1654 - components: - - pos: 3.5,-32.5 - parent: 1 - type: Transform - - uid: 1755 - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - uid: 1956 - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform - - uid: 1957 - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform - - uid: 2045 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,22.5 - parent: 1 - type: Transform - - uid: 2057 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,24.5 - parent: 1 - type: Transform - - uid: 2067 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 1 - type: Transform - - uid: 2071 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,12.5 - parent: 1 - type: Transform - - uid: 2081 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 1 - type: Transform - - uid: 2082 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - uid: 2083 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform - - uid: 2084 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 1 - type: Transform - - uid: 2085 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 1 - type: Transform - - uid: 2086 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 1 - type: Transform - - uid: 2087 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,9.5 - parent: 1 - type: Transform - - uid: 2088 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,12.5 - parent: 1 - type: Transform - - uid: 2089 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 1 - type: Transform - - uid: 2103 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 1 - type: Transform - - uid: 2104 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-2.5 - parent: 1 - type: Transform - - uid: 2105 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-3.5 - parent: 1 - type: Transform - - uid: 2106 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-4.5 - parent: 1 - type: Transform - - uid: 2107 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-6.5 - parent: 1 - type: Transform - - uid: 2108 - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 1 - type: Transform - - uid: 2123 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,12.5 - parent: 1 - type: Transform - - uid: 2124 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform - - uid: 2125 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - type: Transform - - uid: 2126 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform - - uid: 2127 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 1 - type: Transform - - uid: 2130 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,2.5 - parent: 1 - type: Transform - - uid: 2131 - components: - - rot: 1.5707963267948966 rad - pos: -43.5,2.5 - parent: 1 - type: Transform - - uid: 2132 - components: - - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - uid: 2134 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - type: Transform - - uid: 2135 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,4.5 - parent: 1 - type: Transform - - uid: 2217 - components: - - pos: -44.5,-19.5 - parent: 1 - type: Transform - - uid: 2219 - components: - - pos: -44.5,-18.5 - parent: 1 - type: Transform - - uid: 2233 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-24.5 - parent: 1 - type: Transform - - uid: 2235 - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - uid: 2255 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 1 - type: Transform - - uid: 2262 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-24.5 - parent: 1 - type: Transform - - uid: 2263 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 1 - type: Transform - - uid: 2269 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - type: Transform - - uid: 2277 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 1 - type: Transform - - uid: 2279 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,26.5 - parent: 1 - type: Transform - - uid: 2280 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,26.5 - parent: 1 - type: Transform - - uid: 2281 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - type: Transform - - uid: 2282 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,26.5 - parent: 1 - type: Transform - - uid: 2289 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 1 - type: Transform - - uid: 2290 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform - - uid: 2291 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - type: Transform - - uid: 2292 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,31.5 - parent: 1 - type: Transform - - uid: 2302 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,30.5 - parent: 1 - type: Transform - - uid: 2321 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - uid: 2328 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,36.5 - parent: 1 - type: Transform - - uid: 2331 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - uid: 2333 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,38.5 - parent: 1 - type: Transform - - uid: 2334 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,38.5 - parent: 1 - type: Transform - - uid: 2335 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - type: Transform - - uid: 2336 - components: - - rot: 1.5707963267948966 rad - pos: 29.5,36.5 - parent: 1 - type: Transform - - uid: 2337 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,38.5 - parent: 1 - type: Transform - - uid: 2338 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,36.5 - parent: 1 - type: Transform - - uid: 2340 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - type: Transform - - uid: 2341 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - uid: 2342 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 1 - type: Transform - - uid: 2363 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,36.5 - parent: 1 - type: Transform - - uid: 2374 - components: - - rot: 1.5707963267948966 rad - pos: 35.5,36.5 - parent: 1 - type: Transform - - uid: 2375 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,38.5 - parent: 1 - type: Transform - - uid: 2376 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,37.5 - parent: 1 - type: Transform - - uid: 2398 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,36.5 - parent: 1 - type: Transform - - uid: 2399 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,37.5 - parent: 1 - type: Transform - - uid: 2400 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,36.5 - parent: 1 - type: Transform - - uid: 2401 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - - uid: 2402 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,36.5 - parent: 1 - type: Transform - - uid: 2403 - components: - - rot: 1.5707963267948966 rad - pos: 30.5,38.5 - parent: 1 - type: Transform - - uid: 2404 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,38.5 - parent: 1 - type: Transform - - uid: 2406 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 1 - type: Transform - - uid: 2407 - components: - - rot: 1.5707963267948966 rad - pos: 24.5,37.5 - parent: 1 - type: Transform - - uid: 2408 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,36.5 - parent: 1 - type: Transform - - uid: 2409 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - type: Transform - - uid: 2413 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 1 - type: Transform - - uid: 2414 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - uid: 2438 - components: - - pos: -44.5,-16.5 - parent: 1 - type: Transform - - uid: 2659 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - uid: 2675 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,54.5 - parent: 1 - type: Transform - - uid: 2689 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - type: Transform - - uid: 2769 - components: - - pos: -14.5,-54.5 - parent: 1 - type: Transform - - uid: 2772 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-53.5 - parent: 1 - type: Transform - - uid: 2778 - components: - - pos: -12.5,-54.5 - parent: 1 - type: Transform - - uid: 2794 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 1 - type: Transform - - uid: 2806 - components: - - pos: -13.5,-54.5 - parent: 1 - type: Transform - - uid: 2847 - components: - - pos: -15.5,-54.5 - parent: 1 - type: Transform - - uid: 2853 - components: - - pos: -16.5,-54.5 - parent: 1 - type: Transform - - uid: 2871 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-52.5 - parent: 1 - type: Transform - - uid: 2927 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 - parent: 1 - type: Transform - - uid: 2970 - components: - - pos: -22.5,-30.5 - parent: 1 - type: Transform - - uid: 2991 - components: - - pos: -7.5,-34.5 - parent: 1 - type: Transform - - uid: 2995 - components: - - pos: -6.5,-34.5 - parent: 1 - type: Transform - - uid: 2999 - components: - - pos: 3.5,-33.5 - parent: 1 - type: Transform - - uid: 3071 - components: - - pos: -44.5,-17.5 - parent: 1 - type: Transform - - uid: 3073 - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform - - uid: 3255 - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform - - uid: 4809 - components: - - pos: 47.5,19.5 - parent: 1 - type: Transform - - uid: 4810 - components: - - pos: 47.5,20.5 - parent: 1 - type: Transform - - uid: 4824 - components: - - pos: 39.5,29.5 - parent: 1 - type: Transform - - uid: 4825 - components: - - pos: 40.5,29.5 - parent: 1 - type: Transform - - uid: 4826 - components: - - pos: 41.5,29.5 - parent: 1 - type: Transform - - uid: 4830 - components: - - pos: 45.5,29.5 - parent: 1 - type: Transform - - uid: 4831 - components: - - pos: 46.5,29.5 - parent: 1 - type: Transform - - uid: 4834 - components: - - pos: 47.5,26.5 - parent: 1 - type: Transform - - uid: 4835 - components: - - pos: 47.5,27.5 - parent: 1 - type: Transform - - uid: 4836 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,28.5 - parent: 1 - type: Transform - - uid: 4837 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,25.5 - parent: 1 - type: Transform - - uid: 4859 - components: - - rot: 3.141592653589793 rad - pos: 47.5,31.5 - parent: 1 - type: Transform - - uid: 4860 - components: - - rot: 3.141592653589793 rad - pos: 47.5,32.5 - parent: 1 - type: Transform - - uid: 4861 - components: - - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - type: Transform - - uid: 4864 - components: - - rot: 3.141592653589793 rad - pos: 40.5,35.5 - parent: 1 - type: Transform - - uid: 4865 - components: - - rot: 3.141592653589793 rad - pos: 41.5,35.5 - parent: 1 - type: Transform - - uid: 4866 - components: - - rot: 3.141592653589793 rad - pos: 42.5,35.5 - parent: 1 - type: Transform - - uid: 4867 - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - type: Transform - - uid: 4868 - components: - - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - type: Transform - - uid: 4869 - components: - - rot: 3.141592653589793 rad - pos: 45.5,35.5 - parent: 1 - type: Transform - - uid: 5006 - components: - - rot: 3.141592653589793 rad - pos: 44.5,29.5 - parent: 1 - type: Transform - - uid: 5858 - components: - - pos: -24.5,-29.5 - parent: 1 - type: Transform - - uid: 7066 - components: - - pos: 3.5,-31.5 - parent: 1 - type: Transform - - uid: 7294 - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform - - uid: 7298 - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - uid: 8319 - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform - - uid: 8320 - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform -- proto: ResearchAndDevelopmentServer - entities: - - uid: 1848 - components: - - pos: -22.5,-3.5 - parent: 1 - type: Transform -- proto: RightArmBorg - entities: - - uid: 6070 - components: - - pos: -5.1487813,-15.441898 - parent: 1 - type: Transform -- proto: RubberStampApproved - entities: - - uid: 4013 - components: - - pos: -5.3658667,46.70469 - parent: 1 - type: Transform - - uid: 5091 - components: - - pos: -4.3448553,19.674007 - parent: 1 - type: Transform -- proto: RubberStampDenied - entities: - - uid: 4014 - components: - - pos: -5.6314917,46.532814 - parent: 1 - type: Transform - - uid: 5092 - components: - - pos: -4.7042303,19.424007 - parent: 1 - type: Transform -- proto: RubberStampMime - entities: - - uid: 7786 - components: - - pos: -13.33112,-29.043272 - parent: 1 - type: Transform -- proto: SalvageMagnet - entities: - - uid: 7284 - components: - - pos: 24.5,-26.5 - parent: 1 - type: Transform -- proto: Saw - entities: - - uid: 8245 - components: - - pos: -25.476225,20.817598 - parent: 1 - type: Transform - - uid: 9625 - components: - - pos: 17.482826,27.671982 - parent: 1 - type: Transform -- proto: Scalpel - entities: - - uid: 9640 - components: - - pos: -25.484652,20.468168 - parent: 1 - type: Transform -- proto: ScalpelLaser - entities: - - uid: 9626 - components: - - pos: 16.498451,27.468857 - parent: 1 - type: Transform -- proto: SecurityTechFab - entities: - - uid: 5417 - components: - - pos: 36.5,10.5 - parent: 1 - type: Transform -- proto: SeedExtractor - entities: - - uid: 6012 - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform -- proto: SheetGlass - entities: - - uid: 5600 - components: - - pos: -23.623562,5.5177503 - parent: 1 - type: Transform - - uid: 6022 - components: - - pos: -12.208346,-0.4335618 - parent: 1 - type: Transform - - uid: 6023 - components: - - pos: -12.208346,-0.4335618 - parent: 1 - type: Transform - - uid: 6091 - components: - - pos: -28.475227,-0.46534538 - parent: 1 - type: Transform - - uid: 6796 - components: - - pos: 19.039476,-8.444527 - parent: 1 - type: Transform - - uid: 6797 - components: - - pos: 19.039476,-8.444527 - parent: 1 - type: Transform - - uid: 7420 - components: - - pos: 11.514883,-19.457083 - parent: 1 - type: Transform - - uid: 8223 - components: - - pos: -4.0320415,-20.432213 - parent: 1 - type: Transform - - uid: 8917 - components: - - pos: -38.36674,-18.403994 - parent: 1 - type: Transform - - uid: 11230 - components: - - pos: -28.604006,22.484268 - parent: 1 - type: Transform -- proto: SheetPaper - entities: - - uid: 8904 - components: - - pos: -40.572815,-9.497994 - parent: 1 - type: Transform - - uid: 9159 - components: - - pos: -40.510315,-9.497994 - parent: 1 - type: Transform - - uid: 9160 - components: - - pos: -40.43219,-9.482369 - parent: 1 - type: Transform -- proto: SheetPlasma - entities: - - uid: 6081 - components: - - pos: -24.49349,-7.4965954 - parent: 1 - type: Transform - - uid: 6082 - components: - - pos: -24.49349,-7.4965954 - parent: 1 - type: Transform - - uid: 12522 - components: - - flags: InContainer - type: MetaData - - parent: 12521 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SheetPlasteel - entities: - - uid: 1134 - components: - - pos: 19.570726,-8.444527 - parent: 1 - type: Transform - - uid: 1135 - components: - - pos: 19.570726,-8.444527 - parent: 1 - type: Transform - - uid: 3979 - components: - - pos: -3.2598429,44.57834 - parent: 1 - type: Transform - - uid: 7645 - components: - - pos: -41.491985,20.438309 - parent: 1 - type: Transform - - uid: 11936 - components: - - pos: 11.3171625,23.595459 - parent: 1 - type: Transform - - uid: 11937 - components: - - pos: 11.4577875,23.595459 - parent: 1 - type: Transform -- proto: SheetPlastic - entities: - - uid: 5419 - components: - - pos: 38.4375,10.569345 - parent: 1 - type: Transform - - uid: 5599 - components: - - pos: -23.404812,5.5177503 - parent: 1 - type: Transform - - uid: 6020 - components: - - pos: -11.864596,-0.4179368 - parent: 1 - type: Transform - - uid: 6021 - components: - - pos: -11.864596,-0.4179368 - parent: 1 - type: Transform - - uid: 7422 - components: - - pos: 11.514883,-19.660208 - parent: 1 - type: Transform - - uid: 8829 - components: - - pos: -27.411745,-25.34438 - parent: 1 - type: Transform - - uid: 9725 - components: - - pos: -28.37981,22.482435 - parent: 1 - type: Transform -- proto: SheetRGlass - entities: - - uid: 11932 - components: - - pos: 10.3796625,23.595459 - parent: 1 - type: Transform - - uid: 11933 - components: - - pos: 10.6609125,23.595459 - parent: 1 - type: Transform -- proto: SheetSteel - entities: - - uid: 3978 - components: - - pos: -3.5098429,44.57834 - parent: 1 - type: Transform - - uid: 5420 - components: - - pos: 38.59375,10.569345 - parent: 1 - type: Transform - - uid: 6018 - components: - - pos: -11.458346,-0.4179368 - parent: 1 - type: Transform - - uid: 6019 - components: - - pos: -11.458346,-0.4179368 - parent: 1 - type: Transform - - uid: 6066 - components: - - pos: -4.457944,-13.5120735 - parent: 1 - type: Transform - - uid: 6794 - components: - - pos: 19.289476,-8.444527 - parent: 1 - type: Transform - - uid: 6795 - components: - - pos: 19.289476,-8.444527 - parent: 1 - type: Transform - - uid: 7140 - components: - - pos: 32.668736,-18.433968 - parent: 1 - type: Transform - - uid: 7141 - components: - - pos: 32.668736,-18.433968 - parent: 1 - type: Transform - - uid: 7421 - components: - - pos: 11.514883,-19.566458 - parent: 1 - type: Transform - - uid: 7644 - components: - - pos: -41.491985,20.110184 - parent: 1 - type: Transform - - uid: 8224 - components: - - pos: -4.2976665,-20.432213 - parent: 1 - type: Transform - - uid: 8318 - components: - - pos: -38.612484,-18.388916 - parent: 1 - type: Transform - - uid: 8826 - components: - - pos: -27.567995,-25.37563 - parent: 1 - type: Transform - - uid: 9648 - components: - - pos: 10.4109125,24.486084 - parent: 1 - type: Transform - - uid: 11931 - components: - - pos: 10.6452875,24.486084 - parent: 1 - type: Transform -- proto: ShuttersNormal - entities: - - uid: 3430 - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform - - links: - - 1799 - type: DeviceLinkSink - - uid: 3432 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - links: - - 1799 - type: DeviceLinkSink - - uid: 3433 - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform - - links: - - 1799 - type: DeviceLinkSink - - uid: 3436 - components: - - pos: -29.5,-6.5 - parent: 1 - type: Transform - - links: - - 9264 - type: DeviceLinkSink - - uid: 5459 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - links: - - 7670 - type: DeviceLinkSink - - uid: 5460 - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - - links: - - 7670 - type: DeviceLinkSink -- proto: ShuttersNormalOpen - entities: - - uid: 1796 - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - links: - - 5448 - type: DeviceLinkSink - - uid: 1797 - components: - - pos: 15.5,4.5 - parent: 1 - type: Transform - - links: - - 5448 - type: DeviceLinkSink - - uid: 1798 - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform - - links: - - 5449 - type: DeviceLinkSink - - uid: 1824 - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform - - links: - - 5447 - type: DeviceLinkSink - - uid: 1847 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - links: - - 5447 - type: DeviceLinkSink - - uid: 1866 - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - links: - - 5449 - type: DeviceLinkSink - - uid: 1936 - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform - - links: - - 1896 - type: DeviceLinkSink - - uid: 1937 - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform - - links: - - 1896 - type: DeviceLinkSink - - uid: 1938 - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - links: - - 1897 - type: DeviceLinkSink - - uid: 1939 - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform - - links: - - 1897 - type: DeviceLinkSink - - uid: 1940 - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform - - links: - - 1898 - type: DeviceLinkSink - - uid: 1941 - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform - - links: - - 1898 - type: DeviceLinkSink - - uid: 3618 - components: - - pos: -6.5,50.5 - parent: 1 - type: Transform - - uid: 3619 - components: - - pos: -6.5,54.5 - parent: 1 - type: Transform - - uid: 3620 - components: - - pos: -7.5,52.5 - parent: 1 - type: Transform - - uid: 3621 - components: - - pos: -5.5,52.5 - parent: 1 - type: Transform - - uid: 5067 - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 5068 - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 5069 - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 5070 - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 5450 - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform - - links: - - 5447 - type: DeviceLinkSink - - uid: 5451 - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform - - links: - - 5448 - type: DeviceLinkSink - - uid: 5452 - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - links: - - 5449 - type: DeviceLinkSink - - uid: 5683 - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 5684 - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 5685 - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 5686 - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 5687 - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform - - links: - - 5671 - type: DeviceLinkSink - - uid: 7438 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - - links: - - 7439 - type: DeviceLinkSink - - uid: 7485 - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 11721 - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11722 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11723 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11724 - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11725 - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11726 - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11727 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11730 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11731 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11732 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11733 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 12444 - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12445 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12446 - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12447 - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12448 - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12449 - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink -- proto: ShuttersWindowOpen - entities: - - uid: 5071 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - links: - - 5072 - type: DeviceLinkSink - - uid: 11728 - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 11729 - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform - - links: - - 11713 - type: DeviceLinkSink - - uid: 12450 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink - - uid: 12451 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - links: - - 7484 - type: DeviceLinkSink -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 9523 - components: - - pos: -7.5807076,-33.60298 - parent: 1 - type: Transform -- proto: SignAi - entities: - - uid: 3006 - components: - - pos: -12.5,31.5 - parent: 1 - type: Transform - - uid: 3617 - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform - - uid: 4010 - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform - - uid: 4011 - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform -- proto: SignalButton - entities: - - uid: 1799 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 1 - type: Transform - - linkedPorts: - 3430: - - Pressed: Toggle - 3432: - - Pressed: Toggle - 3433: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1896 - components: - - rot: 3.141592653589793 rad - pos: -19.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 1937: - - Pressed: Toggle - 1936: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1897 - components: - - rot: 3.141592653589793 rad - pos: -16.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 1939: - - Pressed: Toggle - 1938: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1898 - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 1941: - - Pressed: Toggle - 1940: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 1978 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform - - linkedPorts: - 3561: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 4100 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - type: Transform - - linkedPorts: - 4064: - - Pressed: Toggle - 4065: - - Pressed: Toggle - 4066: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5072 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 1 - type: Transform - - linkedPorts: - 5070: - - Pressed: Toggle - 5071: - - Pressed: Toggle - 5069: - - Pressed: Toggle - 5068: - - Pressed: Toggle - 5067: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5388 - components: - - pos: 28.5,15.5 - parent: 1 - type: Transform - - linkedPorts: - 3218: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown - - uid: 5389 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,17.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: - 3218: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown - - uid: 5447 - components: - - rot: 3.141592653589793 rad - pos: 13.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5450: - - Pressed: Toggle - 1824: - - Pressed: Toggle - 1847: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5448 - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5451: - - Pressed: Toggle - 1796: - - Pressed: Toggle - 1797: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5449 - components: - - rot: 3.141592653589793 rad - pos: 19.5,7.5 - parent: 1 - type: Transform - - linkedPorts: - 5452: - - Pressed: Toggle - 1798: - - Pressed: Toggle - 1866: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 5671 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 1 - type: Transform - - linkedPorts: - 5687: - - Pressed: Toggle - 5685: - - Pressed: Toggle - 5684: - - Pressed: Toggle - 5683: - - Pressed: Toggle - 5686: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6337 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 1 - type: Transform - - linkedPorts: - 3435: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 6338 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform - - linkedPorts: - 3434: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7436 - components: - - rot: 3.141592653589793 rad - pos: 8.5,-28.5 - parent: 1 - type: Transform - - linkedPorts: - 7432: - - Pressed: Toggle - 7433: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7437 - components: - - rot: 3.141592653589793 rad - pos: 16.5,-28.5 - parent: 1 - type: Transform - - linkedPorts: - 7435: - - Pressed: Toggle - 7434: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7439 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 1 - type: Transform - - linkedPorts: - 7438: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7484 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - linkedPorts: - 12448: - - Pressed: Toggle - 12451: - - Pressed: Toggle - 12450: - - Pressed: Toggle - 12449: - - Pressed: Toggle - 7485: - - Pressed: Toggle - 12444: - - Pressed: Toggle - 12445: - - Pressed: Toggle - 12446: - - Pressed: Toggle - 12447: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 7670 - components: - - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform - - linkedPorts: - 5459: - - Pressed: Toggle - 5460: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 9264 - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform - - linkedPorts: - 3436: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 11713 - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - linkedPorts: - 11733: - - Pressed: Toggle - 11732: - - Pressed: Toggle - 11729: - - Pressed: Toggle - 11727: - - Pressed: Toggle - 11726: - - Pressed: Toggle - 11725: - - Pressed: Toggle - 11724: - - Pressed: Toggle - 11723: - - Pressed: Toggle - 11722: - - Pressed: Toggle - 11721: - - Pressed: Toggle - 11728: - - Pressed: Toggle - 11730: - - Pressed: Toggle - 11731: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignAnomaly - entities: - - uid: 6077 - components: - - pos: -14.5,-7.5 - parent: 1 - type: Transform -- proto: SignAnomaly2 - entities: - - uid: 6076 - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform -- proto: SignArmory - entities: - - uid: 5305 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - type: Transform - - uid: 5307 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,11.5 - parent: 1 - type: Transform -- proto: SignBridge - entities: - - uid: 4067 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform -- proto: SignCargoDock - entities: - - uid: 1721 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 1 - type: Transform - - uid: 1722 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 1 - type: Transform -- proto: SignChem - entities: - - uid: 5700 - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 5701 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform -- proto: SignCloning - entities: - - uid: 1924 - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform -- proto: SignConference - entities: - - uid: 4068 - components: - - pos: -6.5,30.5 - parent: 1 - type: Transform -- proto: SignDirectionalBar - entities: - - uid: 12028 - components: - - rot: 3.141592653589793 rad - pos: -0.48991406,-12.586099 - parent: 1 - type: Transform - - uid: 12030 - components: - - rot: -1.5707963267948966 rad - pos: 43.500732,4.885596 - parent: 1 - type: Transform - - uid: 12041 - components: - - rot: 3.141592653589793 rad - pos: -0.46916193,-19.753078 - parent: 1 - type: Transform -- proto: SignDirectionalBridge - entities: - - uid: 12014 - components: - - rot: 3.141592653589793 rad - pos: 10.548269,5.4918203 - parent: 1 - type: Transform - - uid: 12020 - components: - - rot: 3.141592653589793 rad - pos: -7.4735146,0.6779753 - parent: 1 - type: Transform - - uid: 12027 - components: - - rot: 3.141592653589793 rad - pos: -0.48991406,-12.367349 - parent: 1 - type: Transform - - uid: 12031 - components: - - rot: -1.5707963267948966 rad - pos: 43.500732,4.682471 - parent: 1 - type: Transform - - uid: 12042 - components: - - rot: 3.141592653589793 rad - pos: -0.46916193,-19.546629 - parent: 1 - type: Transform -- proto: SignDirectionalChapel - entities: - - uid: 12035 - components: - - rot: -1.5707963267948966 rad - pos: -13.484905,0.5560063 - parent: 1 - type: Transform -- proto: SignDirectionalDorms - entities: - - uid: 12009 - components: - - pos: 10.501394,0.38287616 - parent: 1 - type: Transform - - uid: 12025 - components: - - pos: -0.4927984,-10.414679 - parent: 1 - type: Transform -- proto: SignDirectionalEng - entities: - - uid: 12007 - components: - - pos: 10.501394,0.78912616 - parent: 1 - type: Transform - - uid: 12022 - components: - - pos: -7.4735146,0.2561003 - parent: 1 - type: Transform - - uid: 12033 - components: - - rot: -1.5707963267948966 rad - pos: 43.500732,4.260596 - parent: 1 - type: Transform - - uid: 12037 - components: - - rot: 3.141592653589793 rad - pos: -0.46722627,-23.206203 - parent: 1 - type: Transform - - uid: 12044 - components: - - rot: 1.5707963267948966 rad - pos: 5.4593363,-10.397989 - parent: 1 - type: Transform -- proto: SignDirectionalEvac - entities: - - uid: 12015 - components: - - rot: 3.141592653589793 rad - pos: 10.548269,5.6793203 - parent: 1 - type: Transform - - uid: 12016 - components: - - pos: -6.456008,15.288413 - parent: 1 - type: Transform - - uid: 12019 - components: - - rot: -1.5707963267948966 rad - pos: -7.4735146,0.8654753 - parent: 1 - type: Transform -- proto: SignDirectionalGravity - entities: - - uid: 12034 - components: - - rot: -1.5707963267948966 rad - pos: -13.488332,0.7605958 - parent: 1 - type: Transform -- proto: SignDirectionalJanitor - entities: - - uid: 12010 - components: - - pos: 13.517019,0.82037616 - parent: 1 - type: Transform -- proto: SignDirectionalLibrary - entities: - - uid: 12036 - components: - - rot: -1.5707963267948966 rad - pos: -13.484905,0.3372563 - parent: 1 - type: Transform -- proto: SignDirectionalMed - entities: - - uid: 12013 - components: - - rot: 3.141592653589793 rad - pos: 10.548269,5.2886953 - parent: 1 - type: Transform - - uid: 12026 - components: - - rot: 3.141592653589793 rad - pos: -0.48820066,-10.617804 - parent: 1 - type: Transform - - uid: 12040 - components: - - rot: 3.141592653589793 rad - pos: -0.46722627,-23.831203 - parent: 1 - type: Transform -- proto: SignDirectionalSci - entities: - - uid: 12011 - components: - - pos: 10.501394,0.19537616 - parent: 1 - type: Transform - - uid: 12017 - components: - - pos: -6.456008,15.507163 - parent: 1 - type: Transform - - uid: 12038 - components: - - rot: 3.141592653589793 rad - pos: -0.46722627,-23.409328 - parent: 1 - type: Transform -- proto: SignDirectionalSec - entities: - - uid: 12012 - components: - - rot: 3.141592653589793 rad - pos: 10.548269,5.1011953 - parent: 1 - type: Transform - - uid: 12021 - components: - - rot: 3.141592653589793 rad - pos: -7.4735146,0.4592253 - parent: 1 - type: Transform - - uid: 12032 - components: - - rot: -1.5707963267948966 rad - pos: 43.500732,4.463721 - parent: 1 - type: Transform - - uid: 12039 - components: - - rot: 3.141592653589793 rad - pos: -0.46722627,-23.628078 - parent: 1 - type: Transform - - uid: 12043 - components: - - rot: 3.141592653589793 rad - pos: 5.4593363,-10.210489 - parent: 1 - type: Transform -- proto: SignDirectionalSolar - entities: - - uid: 11982 - components: - - pos: -29.486988,-21.20969 - parent: 1 - type: Transform - - uid: 12024 - components: - - rot: -1.5707963267948966 rad - pos: -0.4927984,-12.149054 - parent: 1 - type: Transform - - uid: 12113 - components: - - rot: 3.141592653589793 rad - pos: -24.472755,28.702217 - parent: 1 - type: Transform - - uid: 12114 - components: - - rot: 3.141592653589793 rad - pos: -29.444752,5.7120094 - parent: 1 - type: Transform - - uid: 12115 - components: - - rot: 1.5707963267948966 rad - pos: -38.46161,16.234806 - parent: 1 - type: Transform - - uid: 12116 - components: - - rot: 3.141592653589793 rad - pos: -27.46682,17.811657 - parent: 1 - type: Transform - - uid: 12117 - components: - - pos: -31.445858,-0.22823012 - parent: 1 - type: Transform - - uid: 12118 - components: - - rot: -1.5707963267948966 rad - pos: -35.514,-11.739195 - parent: 1 - type: Transform - - uid: 12119 - components: - - rot: 1.5707963267948966 rad - pos: -37.451214,-21.220106 - parent: 1 - type: Transform - - uid: 12120 - components: - - rot: -1.5707963267948966 rad - pos: -10.486212,-20.751356 - parent: 1 - type: Transform - - uid: 12121 - components: - - rot: 3.141592653589793 rad - pos: -9.470587,-23.708044 - parent: 1 - type: Transform -- proto: SignDirectionalSupply - entities: - - uid: 9288 - components: - - pos: -0.4927984,-10.195929 - parent: 1 - type: Transform - - uid: 12008 - components: - - pos: 10.501394,0.58600116 - parent: 1 - type: Transform - - uid: 12018 - components: - - pos: -6.458366,15.721934 - parent: 1 - type: Transform -- proto: SignDirectionalWash - entities: - - uid: 12029 - components: - - rot: -1.5707963267948966 rad - pos: -14.500072,-24.746931 - parent: 1 - type: Transform -- proto: SignDisposalSpace - entities: - - uid: 2976 - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform -- proto: SignDrones - entities: - - uid: 9653 - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform -- proto: SignEscapePods - entities: - - uid: 25 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,21.5 - parent: 1 - type: Transform - - uid: 34 - components: - - pos: 0.5,-34.5 - parent: 1 - type: Transform - - uid: 51 - components: - - pos: -39.5,-13.5 - parent: 1 - type: Transform - - uid: 6395 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform -- proto: SignEVA - entities: - - uid: 4908 - components: - - rot: 3.141592653589793 rad - pos: 43.5,20.5 - parent: 1 - type: Transform -- proto: SignGravity - entities: - - uid: 7646 - components: - - pos: -41.5,17.5 - parent: 1 - type: Transform -- proto: SignHead - entities: - - uid: 4069 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform -- proto: SignInterrogation - entities: - - uid: 9307 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - type: Transform -- proto: SignMedical - entities: - - uid: 5301 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,7.5 - parent: 1 - type: Transform - - uid: 9257 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - type: Transform -- proto: SignMorgue - entities: - - uid: 1923 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform -- proto: SignPrison - entities: - - uid: 5341 - components: - - pos: 31.5,19.5 - parent: 1 - type: Transform - - uid: 5487 - components: - - pos: 31.5,24.5 - parent: 1 - type: Transform -- proto: SignRadiationMed - entities: - - uid: 12342 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,63.5 - parent: 1 - type: Transform - - uid: 12343 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,65.5 - parent: 1 - type: Transform - - uid: 12344 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,67.5 - parent: 1 - type: Transform - - uid: 12345 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,65.5 - parent: 1 - type: Transform -- proto: SignRobo - entities: - - uid: 6078 - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 6079 - components: - - pos: -5.5,-10.5 - parent: 1 - type: Transform -- proto: SignScience - entities: - - uid: 6080 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform -- proto: SignSecureMed - entities: - - uid: 5304 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,10.5 - parent: 1 - type: Transform -- proto: SignSecureMedRed - entities: - - uid: 12346 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,64.5 - parent: 1 - type: Transform - - uid: 12347 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,66.5 - parent: 1 - type: Transform - - uid: 12348 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,67.5 - parent: 1 - type: Transform - - uid: 12349 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,67.5 - parent: 1 - type: Transform - - uid: 12350 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,66.5 - parent: 1 - type: Transform - - uid: 12351 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,64.5 - parent: 1 - type: Transform - - uid: 12352 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,63.5 - parent: 1 - type: Transform - - uid: 12353 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,63.5 - parent: 1 - type: Transform -- proto: SignSecurity - entities: - - uid: 5493 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - type: Transform -- proto: SignSurgery - entities: - - uid: 4884 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,20.5 - parent: 1 - type: Transform -- proto: SignTelecomms - entities: - - uid: 3969 - components: - - pos: -1.5,53.5 - parent: 1 - type: Transform - - uid: 3971 - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform -- proto: SignVirology - entities: - - uid: 12097 - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform -- proto: Sink - entities: - - uid: 6400 - components: - - pos: -18.5,-24.5 - parent: 1 - type: Transform - - uid: 6401 - components: - - pos: -17.5,-24.5 - parent: 1 - type: Transform - - uid: 6402 - components: - - pos: -16.5,-24.5 - parent: 1 - type: Transform - - uid: 12482 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 1 - type: Transform -- proto: SinkWide - entities: - - uid: 5945 - components: - - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 5946 - components: - - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 8835 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 1 - type: Transform - - uid: 9110 - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 1097 - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - uid: 1118 - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - uid: 1119 - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform - - uid: 2445 - components: - - pos: -32.5,-23.5 - parent: 1 - type: Transform - - uid: 2553 - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform - - uid: 2856 - components: - - pos: -11.5,-52.5 - parent: 1 - type: Transform - - uid: 3671 - components: - - pos: -0.5,45.5 - parent: 1 - type: Transform - - uid: 7557 - components: - - pos: -41.5,23.5 - parent: 1 - type: Transform -- proto: SMESMachineCircuitboard - entities: - - uid: 9512 - components: - - pos: -1.3981457,-34.369713 - parent: 1 - type: Transform -- proto: SoapOmega - entities: - - uid: 12356 - components: - - pos: -43.500492,24.479343 - parent: 1 - type: Transform -- proto: soda_dispenser - entities: - - uid: 5954 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 8265 - components: - - pos: -13.5,-48.5 - parent: 1 - type: Transform - - uid: 8296 - components: - - pos: -30.5,-12.5 - parent: 1 - type: Transform -- proto: SolarPanel - entities: - - uid: 2472 - components: - - pos: -34.5,-28.5 - parent: 1 - type: Transform - - uid: 2473 - components: - - pos: -33.5,-28.5 - parent: 1 - type: Transform - - uid: 2474 - components: - - pos: -32.5,-28.5 - parent: 1 - type: Transform - - uid: 2475 - components: - - pos: -34.5,-30.5 - parent: 1 - type: Transform - - uid: 2476 - components: - - pos: -33.5,-30.5 - parent: 1 - type: Transform - - uid: 2477 - components: - - pos: -32.5,-30.5 - parent: 1 - type: Transform - - uid: 2478 - components: - - pos: -30.5,-28.5 - parent: 1 - type: Transform - - uid: 2479 - components: - - pos: -29.5,-28.5 - parent: 1 - type: Transform - - uid: 2480 - components: - - pos: -28.5,-28.5 - parent: 1 - type: Transform - - uid: 2481 - components: - - pos: -30.5,-30.5 - parent: 1 - type: Transform - - uid: 2482 - components: - - pos: -29.5,-30.5 - parent: 1 - type: Transform - - uid: 2483 - components: - - pos: -28.5,-30.5 - parent: 1 - type: Transform - - uid: 2484 - components: - - pos: -28.5,-32.5 - parent: 1 - type: Transform - - uid: 2485 - components: - - pos: -29.5,-32.5 - parent: 1 - type: Transform - - uid: 2486 - components: - - pos: -30.5,-32.5 - parent: 1 - type: Transform - - uid: 2487 - components: - - pos: -32.5,-32.5 - parent: 1 - type: Transform - - uid: 2488 - components: - - pos: -33.5,-32.5 - parent: 1 - type: Transform - - uid: 2489 - components: - - pos: -34.5,-32.5 - parent: 1 - type: Transform - - uid: 2490 - components: - - pos: -34.5,-34.5 - parent: 1 - type: Transform - - uid: 2491 - components: - - pos: -33.5,-34.5 - parent: 1 - type: Transform - - uid: 2492 - components: - - pos: -32.5,-34.5 - parent: 1 - type: Transform - - uid: 2493 - components: - - pos: -30.5,-34.5 - parent: 1 - type: Transform - - uid: 2494 - components: - - pos: -29.5,-34.5 - parent: 1 - type: Transform - - uid: 2495 - components: - - pos: -28.5,-34.5 - parent: 1 - type: Transform - - uid: 2558 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,36.5 - parent: 1 - type: Transform - - uid: 2559 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,36.5 - parent: 1 - type: Transform - - uid: 2560 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - type: Transform - - uid: 2561 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,36.5 - parent: 1 - type: Transform - - uid: 2562 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,40.5 - parent: 1 - type: Transform - - uid: 2563 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,40.5 - parent: 1 - type: Transform - - uid: 2564 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,40.5 - parent: 1 - type: Transform - - uid: 2565 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,40.5 - parent: 1 - type: Transform - - uid: 2566 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,38.5 - parent: 1 - type: Transform - - uid: 2567 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,38.5 - parent: 1 - type: Transform - - uid: 2568 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,38.5 - parent: 1 - type: Transform - - uid: 2569 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,38.5 - parent: 1 - type: Transform - - uid: 2570 - components: - - rot: -1.5707963267948966 rad - pos: -31.5,34.5 - parent: 1 - type: Transform - - uid: 2571 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,34.5 - parent: 1 - type: Transform - - uid: 2572 - components: - - rot: -1.5707963267948966 rad - pos: -29.5,34.5 - parent: 1 - type: Transform - - uid: 2573 - components: - - rot: -1.5707963267948966 rad - pos: -28.5,34.5 - parent: 1 - type: Transform - - uid: 2574 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,34.5 - parent: 1 - type: Transform - - uid: 2575 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,34.5 - parent: 1 - type: Transform - - uid: 2576 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,34.5 - parent: 1 - type: Transform - - uid: 2577 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,34.5 - parent: 1 - type: Transform - - uid: 2578 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 1 - type: Transform - - uid: 2579 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,36.5 - parent: 1 - type: Transform - - uid: 2580 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,36.5 - parent: 1 - type: Transform - - uid: 2581 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,36.5 - parent: 1 - type: Transform - - uid: 2582 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,40.5 - parent: 1 - type: Transform - - uid: 2583 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,40.5 - parent: 1 - type: Transform - - uid: 2584 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,40.5 - parent: 1 - type: Transform - - uid: 2585 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,40.5 - parent: 1 - type: Transform - - uid: 2586 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - type: Transform - - uid: 2587 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,38.5 - parent: 1 - type: Transform - - uid: 2588 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,38.5 - parent: 1 - type: Transform - - uid: 2589 - components: - - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 1 - type: Transform - - uid: 2816 - components: - - pos: -16.5,-57.5 - parent: 1 - type: Transform - - uid: 2817 - components: - - pos: -15.5,-57.5 - parent: 1 - type: Transform - - uid: 2818 - components: - - pos: -13.5,-57.5 - parent: 1 - type: Transform - - uid: 2819 - components: - - pos: -12.5,-57.5 - parent: 1 - type: Transform - - uid: 2820 - components: - - pos: -12.5,-59.5 - parent: 1 - type: Transform - - uid: 2821 - components: - - pos: -15.5,-59.5 - parent: 1 - type: Transform - - uid: 2823 - components: - - pos: -13.5,-59.5 - parent: 1 - type: Transform - - uid: 2838 - components: - - pos: -16.5,-59.5 - parent: 1 - type: Transform -- proto: SolarTracker - entities: - - uid: 2521 - components: - - pos: -31.5,-36.5 - parent: 1 - type: Transform - - uid: 2653 - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform - - uid: 2815 - components: - - pos: -14.5,-60.5 - parent: 1 - type: Transform -- proto: SpaceCash1000 - entities: - - uid: 4132 - components: - - pos: -1.4122305,23.498293 - parent: 1 - type: Transform - - count: 2000 - type: Stack -- proto: SpaceVillainArcadeFilled - entities: - - uid: 2869 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-50.5 - parent: 1 - type: Transform -- proto: SpawnMobAlexander - entities: - - uid: 11924 - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- proto: SpawnMobBandito - entities: - - uid: 11925 - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnMobCatException - entities: - - uid: 5924 - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform -- proto: SpawnMobCatRuntime - entities: - - uid: 11923 - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnMobCorgi - entities: - - uid: 4967 - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform -- proto: SpawnMobDrone - entities: - - uid: 9658 - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform - - uid: 9659 - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform - - uid: 9661 - components: - - pos: 13.5,27.5 - parent: 1 - type: Transform -- proto: SpawnMobFoxRenault - entities: - - uid: 4084 - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform -- proto: SpawnMobMcGriff - entities: - - uid: 5925 - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 5416 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform -- proto: SpawnMobMouse - entities: - - uid: 11913 - components: - - pos: 8.5,-12.5 - parent: 1 - type: Transform - - uid: 11914 - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform - - uid: 11915 - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform - - uid: 11916 - components: - - pos: 41.5,10.5 - parent: 1 - type: Transform - - uid: 11917 - components: - - pos: 30.5,34.5 - parent: 1 - type: Transform - - uid: 11918 - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - uid: 11919 - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform - - uid: 11920 - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform - - uid: 11921 - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform - - uid: 11922 - components: - - pos: -24.5,-17.5 - parent: 1 - type: Transform -- proto: SpawnMobPossumMorty - entities: - - uid: 11926 - components: - - pos: -9.5,-25.5 - parent: 1 - type: Transform -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 11927 - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform - - uid: 11928 - components: - - pos: -38.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnMobShiva - entities: - - uid: 8256 - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform -- proto: SpawnMobWalter - entities: - - uid: 5922 - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 7496 - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform - - uid: 7497 - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - uid: 7498 - components: - - pos: -7.5,-25.5 - parent: 1 - type: Transform - - uid: 7499 - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform -- proto: SpawnPointAtmos - entities: - - uid: 7130 - components: - - pos: 32.5,-17.5 - parent: 1 - type: Transform - - uid: 7131 - components: - - pos: 33.5,-17.5 - parent: 1 - type: Transform -- proto: SpawnPointBartender - entities: - - uid: 6037 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform -- proto: SpawnPointBorg - entities: - - uid: 5913 - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform -- proto: SpawnPointBotanist - entities: - - uid: 6038 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 6039 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnPointCaptain - entities: - - uid: 6046 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform -- proto: SpawnPointCargoTechnician - entities: - - uid: 7475 - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - uid: 7476 - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- proto: SpawnPointChaplain - entities: - - uid: 7487 - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform -- proto: SpawnPointChef - entities: - - uid: 6036 - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- proto: SpawnPointChemist - entities: - - uid: 6031 - components: - - pos: -11.5,14.5 - parent: 1 - type: Transform -- proto: SpawnPointChiefEngineer - entities: - - uid: 7279 - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 1870 - components: - - pos: -19.5,13.5 - parent: 1 - type: Transform -- proto: SpawnPointClown - entities: - - uid: 7488 - components: - - pos: -10.5,-29.5 - parent: 1 - type: Transform -- proto: SpawnPointDetective - entities: - - uid: 12411 - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 6045 - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 6044 - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform -- proto: SpawnPointJanitor - entities: - - uid: 7491 - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 7480 - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform - - uid: 7481 - components: - - pos: 45.5,5.5 - parent: 1 - type: Transform - - uid: 7482 - components: - - pos: 45.5,8.5 - parent: 1 - type: Transform - - uid: 7483 - components: - - pos: 45.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 12442 - components: - - pos: 42.5,32.5 - parent: 1 - type: Transform - - uid: 12443 - components: - - pos: 43.5,32.5 - parent: 1 - type: Transform -- proto: SpawnPointLibrarian - entities: - - uid: 7486 - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 6029 - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalIntern - entities: - - uid: 6030 - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointMime - entities: - - uid: 7489 - components: - - pos: -12.5,-29.5 - parent: 1 - type: Transform -- proto: SpawnPointMusician - entities: - - uid: 7490 - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform -- proto: SpawnPointObserver - entities: - - uid: 7492 - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform -- proto: SpawnPointQuartermaster - entities: - - uid: 7477 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform -- proto: SpawnPointResearchAssistant - entities: - - uid: 6035 - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnPointResearchDirector - entities: - - uid: 6034 - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 7478 - components: - - pos: 20.5,-22.5 - parent: 1 - type: Transform - - uid: 7479 - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform -- proto: SpawnPointScientist - entities: - - uid: 6032 - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform - - uid: 6033 - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityCadet - entities: - - uid: 6042 - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointSecurityOfficer - entities: - - uid: 6040 - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointSeniorEngineer - entities: - - uid: 5915 - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform -- proto: SpawnPointSeniorOfficer - entities: - - uid: 5916 - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform -- proto: SpawnPointSeniorPhysician - entities: - - uid: 5923 - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform -- proto: SpawnPointSeniorResearcher - entities: - - uid: 770 - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnPointServiceWorker - entities: - - uid: 7493 - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform - - uid: 7494 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 7495 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 7278 - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - uid: 7280 - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 7281 - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform -- proto: SpawnPointWarden - entities: - - uid: 6043 - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform -- proto: SpawnVehicleJanicart - entities: - - uid: 7663 - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform -- proto: SpawnVehicleSecway - entities: - - uid: 5319 - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - uid: 5320 - components: - - pos: 19.5,10.5 - parent: 1 - type: Transform -- proto: SpawnVendingMachineRestockDrink - entities: - - uid: 3058 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 7673 - components: - - pos: -38.5,-16.5 - parent: 1 - type: Transform -- proto: SpawnVendingMachineRestockFood - entities: - - uid: 3836 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 7672 - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 7671 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 8833 - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - uid: 8909 - components: - - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 9149 - components: - - pos: 13.5,30.5 - parent: 1 - type: Transform - - uid: 9164 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 9475 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 9726 - components: - - pos: 41.5,13.5 - parent: 1 - type: Transform - - uid: 12488 - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform -- proto: SpeedLoaderPistol - entities: - - uid: 5358 - components: - - flags: InContainer - type: MetaData - - parent: 5356 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: Spoon - entities: - - uid: 5986 - components: - - pos: 1.7662358,10.5377035 - parent: 1 - type: Transform -- proto: SprayBottleSpaceCleaner - entities: - - uid: 5350 - components: - - pos: 23.525412,5.6263475 - parent: 1 - type: Transform -- proto: StasisBed - entities: - - uid: 1885 - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform -- proto: StationMap - entities: - - uid: 12501 - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform - - uid: 12502 - components: - - pos: -0.5,-28.5 - parent: 1 - type: Transform - - uid: 12503 - components: - - pos: -12.5,-27.5 - parent: 1 - type: Transform - - uid: 12504 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - uid: 12505 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 12506 - components: - - pos: 27.5,4.5 - parent: 1 - type: Transform - - uid: 12507 - components: - - pos: 43.5,5.5 - parent: 1 - type: Transform - - uid: 12508 - components: - - pos: 43.5,18.5 - parent: 1 - type: Transform - - uid: 12509 - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform - - uid: 12510 - components: - - pos: -29.5,0.5 - parent: 1 - type: Transform - - uid: 12511 - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform -- proto: Stool - entities: - - uid: 4946 - components: - - pos: 30.5,25.5 - parent: 1 - type: Transform -- proto: StoolBar - entities: - - uid: 5013 - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform - - uid: 5014 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - uid: 5015 - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform - - uid: 5016 - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform - - uid: 5017 - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - uid: 8305 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-15.5 - parent: 1 - type: Transform - - uid: 8306 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-15.5 - parent: 1 - type: Transform - - uid: 8307 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-15.5 - parent: 1 - type: Transform -- proto: StorageCanister - entities: - - uid: 6322 - components: - - pos: -17.5,-18.5 - parent: 1 - type: Transform - - uid: 6813 - components: - - pos: 43.5,-17.5 - parent: 1 - type: Transform - - uid: 6993 - components: - - pos: 34.5,-3.5 - parent: 1 - type: Transform - - uid: 7001 - components: - - pos: 34.5,-2.5 - parent: 1 - type: Transform - - uid: 9561 - components: - - pos: 35.5,-13.5 - parent: 1 - type: Transform - - uid: 9562 - components: - - pos: 35.5,-14.5 - parent: 1 - type: Transform - - uid: 9563 - components: - - pos: 35.5,-15.5 - parent: 1 - type: Transform -- proto: Stunbaton - entities: - - uid: 5327 - components: - - pos: 19.341703,15.5968685 - parent: 1 - type: Transform - - uid: 5328 - components: - - pos: 19.622953,15.5812435 - parent: 1 - type: Transform -- proto: SubstationBasic - entities: - - uid: 1469 - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - uid: 1714 - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform - - uid: 1715 - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - uid: 1716 - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform - - uid: 1718 - components: - - pos: -7.5,-20.5 - parent: 1 - type: Transform - - uid: 1719 - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform - - uid: 1749 - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform - - uid: 1951 - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - uid: 2260 - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - uid: 2426 - components: - - pos: 40.5,19.5 - parent: 1 - type: Transform - - uid: 2555 - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform - - uid: 2855 - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - uid: 3672 - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform - - uid: 7556 - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform -- proto: SubstationMachineCircuitboard - entities: - - uid: 9510 - components: - - pos: -1.3825207,-34.682213 - parent: 1 - type: Transform - - uid: 9511 - components: - - pos: -1.5075207,-34.557213 - parent: 1 - type: Transform -- proto: SuitStorageAtmos - entities: - - uid: 1849 - components: - - pos: 34.5,-18.5 - parent: 1 - type: Transform - - uid: 4931 - components: - - pos: 35.5,-18.5 - parent: 1 - type: Transform -- proto: SuitStorageCaptain - entities: - - uid: 4934 - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform -- proto: SuitStorageCE - entities: - - uid: 4933 - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform -- proto: SuitStorageCMO - entities: - - uid: 1865 - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform -- proto: SuitStorageEngi - entities: - - uid: 1510 - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform - - uid: 1522 - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform - - uid: 4916 - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform -- proto: SuitStorageEVA - entities: - - uid: 762 - components: - - pos: 40.5,23.5 - parent: 1 - type: Transform - - uid: 1846 - components: - - pos: 41.5,23.5 - parent: 1 - type: Transform - - uid: 5410 - components: - - pos: 42.5,23.5 - parent: 1 - type: Transform - - uid: 5411 - components: - - pos: 39.5,23.5 - parent: 1 - type: Transform -- proto: SuitStorageEVAPrisoner - entities: - - uid: 4935 - components: - - pos: 31.5,18.5 - parent: 1 - type: Transform - - uid: 5412 - components: - - pos: 34.5,23.5 - parent: 1 - type: Transform -- proto: SuitStorageHOS - entities: - - uid: 4973 - components: - - pos: 29.5,14.5 - parent: 1 - type: Transform -- proto: SuitStorageRD - entities: - - uid: 4929 - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform -- proto: SuitStorageSalv - entities: - - uid: 5382 - components: - - pos: 22.5,-22.5 - parent: 1 - type: Transform - - uid: 5413 - components: - - pos: 22.5,-21.5 - parent: 1 - type: Transform -- proto: SuitStorageSec - entities: - - uid: 4917 - components: - - pos: 37.5,10.5 - parent: 1 - type: Transform - - uid: 4932 - components: - - pos: 23.5,13.5 - parent: 1 - type: Transform -- proto: SuitStorageWarden - entities: - - uid: 4930 - components: - - pos: 29.5,18.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraCommand - entities: - - uid: 3970 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,52.5 - parent: 1 - type: Transform - - id: Telecomms - type: SurveillanceCamera - - uid: 3972 - components: - - rot: 3.141592653589793 rad - pos: -7.5,56.5 - parent: 1 - type: Transform - - id: AI Room North - type: SurveillanceCamera - - uid: 3973 - components: - - pos: -5.5,48.5 - parent: 1 - type: Transform - - id: AI Room South - type: SurveillanceCamera - - uid: 3974 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 1 - type: Transform - - id: AI Room Entrance - type: SurveillanceCamera - - uid: 3975 - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - id: AI Electrical Room - type: SurveillanceCamera - - uid: 5909 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - type: Transform - - id: Meeting Room - type: SurveillanceCamera - - uid: 5910 - components: - - pos: -0.5,27.5 - parent: 1 - type: Transform - - id: Bridge - type: SurveillanceCamera - - uid: 12098 - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform - - id: Vault - type: SurveillanceCamera - - uid: 12099 - components: - - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 1 - type: Transform - - id: HoP Office - type: SurveillanceCamera - - uid: 12100 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 12070 - components: - - rot: 3.141592653589793 rad - pos: 23.5,-3.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 12071 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 1 - type: Transform - - id: Reception - type: SurveillanceCamera - - uid: 12072 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 1 - type: Transform - - id: Atmospherics North - type: SurveillanceCamera - - uid: 12073 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 1 - type: Transform - - id: Atmospherics South - type: SurveillanceCamera - - uid: 12074 - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - id: SMES Room - type: SurveillanceCamera - - uid: 12077 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-31.5 - parent: 1 - type: Transform - - id: Tech Vault - type: SurveillanceCamera - - uid: 12088 - components: - - rot: -1.5707963267948966 rad - pos: -41.5,21.5 - parent: 1 - type: Transform - - id: Gravity Generator Room - type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 12068 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,32.5 - parent: 1 - type: Transform - - id: Courtroom - type: SurveillanceCamera - - uid: 12069 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 1 - type: Transform - - id: Arrivals - type: SurveillanceCamera - - uid: 12078 - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - id: Dorms - type: SurveillanceCamera - - uid: 12087 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,8.5 - parent: 1 - type: Transform - - id: Evac - type: SurveillanceCamera - - uid: 12089 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,8.5 - parent: 1 - type: Transform - - id: Chapel - type: SurveillanceCamera - - uid: 12090 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-4.5 - parent: 1 - type: Transform - - id: Library - type: SurveillanceCamera -- proto: SurveillanceCameraMedical - entities: - - uid: 12091 - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform - - id: Cloning - type: SurveillanceCamera - - uid: 12092 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 1 - type: Transform - - id: Morgue - type: SurveillanceCamera - - uid: 12093 - components: - - rot: 3.141592653589793 rad - pos: -17.5,11.5 - parent: 1 - type: Transform - - id: Ward - type: SurveillanceCamera - - uid: 12094 - components: - - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera - - uid: 12095 - components: - - rot: 3.141592653589793 rad - pos: -12.5,16.5 - parent: 1 - type: Transform - - id: Chemistry - type: SurveillanceCamera - - uid: 12096 - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform - - id: Virology - type: SurveillanceCamera - - uid: 12111 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,22.5 - parent: 1 - type: Transform - - id: Surgery Room - type: SurveillanceCamera -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 3776 - components: - - pos: 2.5,49.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 3787 - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 3791 - components: - - pos: 2.5,55.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 3774 - components: - - pos: 0.5,49.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterScience - entities: - - uid: 3788 - components: - - pos: 0.5,51.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 3775 - components: - - pos: 2.5,51.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterService - entities: - - uid: 3786 - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 3781 - components: - - pos: 0.5,55.5 - parent: 1 - type: Transform -- proto: SurveillanceCameraScience - entities: - - uid: 12082 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 1 - type: Transform - - id: Xenoarchaeology - type: SurveillanceCamera - - uid: 12083 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - id: Robotics - type: SurveillanceCamera - - uid: 12084 - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera - - uid: 12085 - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 12086 - components: - - pos: -27.5,-7.5 - parent: 1 - type: Transform - - id: Anomaly Lab - type: SurveillanceCamera -- proto: SurveillanceCameraSecurity - entities: - - uid: 12059 - components: - - rot: 1.5707963267948966 rad - pos: 33.5,27.5 - parent: 1 - type: Transform - - id: Permabrig - type: SurveillanceCamera - - uid: 12060 - components: - - rot: 3.141592653589793 rad - pos: 37.5,13.5 - parent: 1 - type: Transform - - id: Armory - type: SurveillanceCamera - - uid: 12061 - components: - - pos: 31.5,8.5 - parent: 1 - type: Transform - - id: Hallway - type: SurveillanceCamera - - uid: 12062 - components: - - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera - - uid: 12063 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera - - uid: 12064 - components: - - rot: 3.141592653589793 rad - pos: 14.5,10.5 - parent: 1 - type: Transform - - id: Brig Area - type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 12079 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform - - id: Botany - type: SurveillanceCamera - - uid: 12080 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - id: Kitchen - type: SurveillanceCamera - - uid: 12081 - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform - - id: Bar - type: SurveillanceCamera -- proto: SurveillanceCameraSupply - entities: - - uid: 12075 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - id: Reception - type: SurveillanceCamera - - uid: 12076 - components: - - pos: 16.5,-27.5 - parent: 1 - type: Transform - - id: Cargo Bay - type: SurveillanceCamera -- proto: SurvivalKnife - entities: - - uid: 8272 - components: - - desc: Weapon of last resort for a certified pilot. - name: dataknife - type: MetaData - - pos: -19.460943,-48.42677 - parent: 1 - type: Transform -- proto: Table - entities: - - uid: 233 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,11.5 - parent: 1 - type: Transform - - uid: 477 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 478 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform - - uid: 479 - components: - - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 480 - components: - - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 481 - components: - - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 482 - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 483 - components: - - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 1 - type: Transform - - uid: 484 - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 1 - type: Transform - - uid: 485 - components: - - rot: 3.141592653589793 rad - pos: -20.5,5.5 - parent: 1 - type: Transform - - uid: 767 - components: - - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 1 - type: Transform - - uid: 768 - components: - - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 1 - type: Transform - - uid: 769 - components: - - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 1 - type: Transform - - uid: 771 - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - uid: 772 - components: - - rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 773 - components: - - rot: 3.141592653589793 rad - pos: 12.5,15.5 - parent: 1 - type: Transform - - uid: 781 - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 782 - components: - - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 786 - components: - - pos: 16.5,12.5 - parent: 1 - type: Transform - - uid: 1505 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 1 - type: Transform - - uid: 1701 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 1702 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - uid: 1703 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 1704 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 1705 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - uid: 1706 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 1 - type: Transform - - uid: 1707 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 1 - type: Transform - - uid: 1708 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 1 - type: Transform - - uid: 1709 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 1 - type: Transform - - uid: 1756 - components: - - pos: 4.5,-27.5 - parent: 1 - type: Transform - - uid: 1808 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,25.5 - parent: 1 - type: Transform - - uid: 1811 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,27.5 - parent: 1 - type: Transform - - uid: 1890 - components: - - rot: 3.141592653589793 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - uid: 1902 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,11.5 - parent: 1 - type: Transform - - uid: 1904 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,11.5 - parent: 1 - type: Transform - - uid: 1906 - components: - - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 1 - type: Transform - - uid: 1907 - components: - - rot: 3.141592653589793 rad - pos: -24.5,11.5 - parent: 1 - type: Transform - - uid: 1919 - components: - - pos: -22.5,16.5 - parent: 1 - type: Transform - - uid: 1920 - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform - - uid: 1922 - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform - - uid: 1928 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 2369 - components: - - pos: 11.5,23.5 - parent: 1 - type: Transform - - uid: 2748 - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform - - uid: 2749 - components: - - pos: -10.5,54.5 - parent: 1 - type: Transform - - uid: 2751 - components: - - pos: -10.5,50.5 - parent: 1 - type: Transform - - uid: 2755 - components: - - pos: -9.5,48.5 - parent: 1 - type: Transform - - uid: 2756 - components: - - pos: -8.5,48.5 - parent: 1 - type: Transform - - uid: 2758 - components: - - pos: -3.5,48.5 - parent: 1 - type: Transform - - uid: 2763 - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform - - uid: 2764 - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform - - uid: 2766 - components: - - pos: -5.5,56.5 - parent: 1 - type: Transform - - uid: 2767 - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - uid: 3662 - components: - - pos: -24.5,-19.5 - parent: 1 - type: Transform - - uid: 3809 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 1 - type: Transform - - uid: 3810 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 1 - type: Transform - - uid: 3811 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 1 - type: Transform - - uid: 3812 - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform - - uid: 3813 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 3814 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform - - uid: 3922 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,44.5 - parent: 1 - type: Transform - - uid: 3925 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,46.5 - parent: 1 - type: Transform - - uid: 3954 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,44.5 - parent: 1 - type: Transform - - uid: 3955 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,46.5 - parent: 1 - type: Transform - - uid: 3956 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 1 - type: Transform - - uid: 4062 - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform - - uid: 4063 - components: - - pos: -3.5,32.5 - parent: 1 - type: Transform - - uid: 4075 - components: - - pos: -3.5,31.5 - parent: 1 - type: Transform - - uid: 4077 - components: - - pos: -0.5,31.5 - parent: 1 - type: Transform - - uid: 4087 - components: - - rot: 3.141592653589793 rad - pos: -2.5,27.5 - parent: 1 - type: Transform - - uid: 4088 - components: - - rot: 3.141592653589793 rad - pos: -1.5,27.5 - parent: 1 - type: Transform - - uid: 4089 - components: - - rot: 3.141592653589793 rad - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 4857 - components: - - rot: 3.141592653589793 rad - pos: 40.5,25.5 - parent: 1 - type: Transform - - uid: 4936 - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - uid: 4937 - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform - - uid: 4938 - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform - - uid: 5052 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - uid: 5055 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 5061 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 5314 - components: - - pos: 30.5,8.5 - parent: 1 - type: Transform - - uid: 5315 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform - - uid: 5316 - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform - - uid: 5317 - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform - - uid: 5318 - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - uid: 5340 - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform - - uid: 5404 - components: - - pos: 36.5,13.5 - parent: 1 - type: Transform - - uid: 5405 - components: - - pos: 37.5,13.5 - parent: 1 - type: Transform - - uid: 5406 - components: - - pos: 38.5,13.5 - parent: 1 - type: Transform - - uid: 5407 - components: - - pos: 38.5,12.5 - parent: 1 - type: Transform - - uid: 5408 - components: - - pos: 38.5,10.5 - parent: 1 - type: Transform - - uid: 5409 - components: - - pos: 38.5,11.5 - parent: 1 - type: Transform - - uid: 5551 - components: - - rot: 1.5707963267948966 rad - pos: 26.5,1.5 - parent: 1 - type: Transform - - uid: 5552 - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 1 - type: Transform - - uid: 5554 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,1.5 - parent: 1 - type: Transform - - uid: 5557 - components: - - rot: 1.5707963267948966 rad - pos: 44.5,19.5 - parent: 1 - type: Transform - - uid: 5676 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 1 - type: Transform - - uid: 5690 - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform - - uid: 5692 - components: - - pos: -12.5,19.5 - parent: 1 - type: Transform - - uid: 5693 - components: - - pos: -12.5,20.5 - parent: 1 - type: Transform - - uid: 5864 - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform - - uid: 5865 - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform - - uid: 5866 - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform - - uid: 5867 - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform - - uid: 5868 - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform - - uid: 5869 - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform - - uid: 5955 - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 5956 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 5957 - components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 5959 - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 5960 - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - type: Transform - - uid: 5966 - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 5992 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 5993 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 6398 - components: - - pos: -15.5,-24.5 - parent: 1 - type: Transform - - uid: 6617 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 6758 - components: - - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform - - uid: 6759 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform - - uid: 6763 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 1 - type: Transform - - uid: 6764 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform - - uid: 6765 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 1 - type: Transform - - uid: 6768 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 1 - type: Transform - - uid: 6769 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform - - uid: 7078 - components: - - pos: -4.5,-31.5 - parent: 1 - type: Transform - - uid: 7079 - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform - - uid: 7080 - components: - - pos: -2.5,-31.5 - parent: 1 - type: Transform - - uid: 7132 - components: - - pos: 32.5,-18.5 - parent: 1 - type: Transform - - uid: 7133 - components: - - pos: 33.5,-18.5 - parent: 1 - type: Transform - - uid: 7500 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-31.5 - parent: 1 - type: Transform - - uid: 7504 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 7507 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 7508 - components: - - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - uid: 7509 - components: - - rot: 3.141592653589793 rad - pos: -25.5,3.5 - parent: 1 - type: Transform - - uid: 7524 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - uid: 7527 - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform - - uid: 7634 - components: - - rot: 3.141592653589793 rad - pos: -41.5,18.5 - parent: 1 - type: Transform - - uid: 7635 - components: - - rot: 3.141592653589793 rad - pos: -41.5,19.5 - parent: 1 - type: Transform - - uid: 7636 - components: - - rot: 3.141592653589793 rad - pos: -41.5,20.5 - parent: 1 - type: Transform - - uid: 7666 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 7689 - components: - - pos: -5.5,-20.5 - parent: 1 - type: Transform - - uid: 7690 - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - - uid: 7691 - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform - - uid: 7692 - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform - - uid: 7693 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 7694 - components: - - pos: -5.5,-21.5 - parent: 1 - type: Transform - - uid: 7700 - components: - - pos: -12.5,-28.5 - parent: 1 - type: Transform - - uid: 7701 - components: - - pos: -13.5,-28.5 - parent: 1 - type: Transform - - uid: 7702 - components: - - pos: -13.5,-29.5 - parent: 1 - type: Transform - - uid: 7703 - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform - - uid: 7704 - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform - - uid: 7705 - components: - - pos: -11.5,-31.5 - parent: 1 - type: Transform - - uid: 7706 - components: - - pos: -9.5,-31.5 - parent: 1 - type: Transform - - uid: 7707 - components: - - pos: -9.5,-30.5 - parent: 1 - type: Transform - - uid: 7708 - components: - - pos: -9.5,-29.5 - parent: 1 - type: Transform - - uid: 7709 - components: - - pos: -9.5,-28.5 - parent: 1 - type: Transform - - uid: 8236 - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform - - uid: 8237 - components: - - pos: -26.5,20.5 - parent: 1 - type: Transform - - uid: 8238 - components: - - pos: -25.5,20.5 - parent: 1 - type: Transform - - uid: 8239 - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform - - uid: 8281 - components: - - pos: -27.5,-24.5 - parent: 1 - type: Transform - - uid: 8282 - components: - - pos: -27.5,-25.5 - parent: 1 - type: Transform - - uid: 8285 - components: - - pos: -23.5,-25.5 - parent: 1 - type: Transform - - uid: 8286 - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform - - uid: 8809 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-16.5 - parent: 1 - type: Transform - - uid: 8874 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-18.5 - parent: 1 - type: Transform - - uid: 8875 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-17.5 - parent: 1 - type: Transform - - uid: 8876 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - type: Transform - - uid: 8877 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 1 - type: Transform - - uid: 8878 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 1 - type: Transform - - uid: 8879 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 1 - type: Transform - - uid: 8881 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 1 - type: Transform - - uid: 8882 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-13.5 - parent: 1 - type: Transform - - uid: 8886 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 1 - type: Transform - - uid: 8887 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 1 - type: Transform - - uid: 8888 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 8889 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 - parent: 1 - type: Transform - - uid: 9045 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 1 - type: Transform - - uid: 9132 - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform - - uid: 9135 - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - uid: 9136 - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform - - uid: 9151 - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform - - uid: 9163 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 1 - type: Transform - - uid: 9311 - components: - - pos: 16.5,23.5 - parent: 1 - type: Transform - - uid: 9312 - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform - - uid: 9313 - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform - - uid: 9315 - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform - - uid: 9324 - components: - - pos: -14.5,27.5 - parent: 1 - type: Transform - - uid: 9325 - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform - - uid: 9350 - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform - - uid: 9352 - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - uid: 9363 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,23.5 - parent: 1 - type: Transform - - uid: 9370 - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform - - uid: 9372 - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform - - uid: 9373 - components: - - pos: 17.5,33.5 - parent: 1 - type: Transform - - uid: 9382 - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform - - uid: 9537 - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform - - uid: 9538 - components: - - pos: 42.5,6.5 - parent: 1 - type: Transform - - uid: 9541 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - uid: 9542 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,12.5 - parent: 1 - type: Transform - - uid: 9545 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,25.5 - parent: 1 - type: Transform - - uid: 9546 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,24.5 - parent: 1 - type: Transform - - uid: 9575 - components: - - rot: -1.5707963267948966 rad - pos: 44.5,6.5 - parent: 1 - type: Transform - - uid: 9646 - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform - - uid: 9650 - components: - - pos: 13.5,23.5 - parent: 1 - type: Transform - - uid: 9660 - components: - - pos: 10.5,23.5 - parent: 1 - type: Transform - - uid: 9682 - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - uid: 9683 - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - uid: 9686 - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - uid: 9688 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform - - uid: 9697 - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform - - uid: 9698 - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform - - uid: 9700 - components: - - pos: -33.5,18.5 - parent: 1 - type: Transform - - uid: 9711 - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform - - uid: 11797 - components: - - pos: 12.5,23.5 - parent: 1 - type: Transform -- proto: TableCarpet - entities: - - uid: 5041 - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform - - uid: 5566 - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - uid: 5567 - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - uid: 5568 - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform - - uid: 5569 - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform -- proto: TableCounterWood - entities: - - uid: 4886 - components: - - rot: 3.141592653589793 rad - pos: 43.5,33.5 - parent: 1 - type: Transform - - uid: 4887 - components: - - rot: 3.141592653589793 rad - pos: 42.5,33.5 - parent: 1 - type: Transform -- proto: TableGlass - entities: - - uid: 5051 - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform - - uid: 5614 - components: - - rot: 3.141592653589793 rad - pos: -10.5,16.5 - parent: 1 - type: Transform - - uid: 5615 - components: - - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 1 - type: Transform - - uid: 5616 - components: - - rot: 3.141592653589793 rad - pos: -11.5,13.5 - parent: 1 - type: Transform - - uid: 9615 - components: - - rot: 3.141592653589793 rad - pos: 16.5,27.5 - parent: 1 - type: Transform - - uid: 9616 - components: - - rot: 3.141592653589793 rad - pos: 17.5,27.5 - parent: 1 - type: Transform - - uid: 9617 - components: - - rot: 3.141592653589793 rad - pos: 18.5,27.5 - parent: 1 - type: Transform -- proto: TablePlasmaGlass - entities: - - uid: 553 - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform - - uid: 557 - components: - - pos: -27.5,-5.5 - parent: 1 - type: Transform - - uid: 558 - components: - - pos: -28.5,-7.5 - parent: 1 - type: Transform - - uid: 606 - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform - - uid: 607 - components: - - pos: -24.5,-0.5 - parent: 1 - type: Transform - - uid: 2865 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-53.5 - parent: 1 - type: Transform -- proto: TableReinforced - entities: - - uid: 605 - components: - - pos: -14.5,-8.5 - parent: 1 - type: Transform - - uid: 645 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - uid: 646 - components: - - pos: -9.5,-11.5 - parent: 1 - type: Transform - - uid: 650 - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform - - uid: 655 - components: - - pos: -9.5,-13.5 - parent: 1 - type: Transform - - uid: 656 - components: - - pos: -9.5,-12.5 - parent: 1 - type: Transform - - uid: 4121 - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform - - uid: 4122 - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform - - uid: 4123 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - uid: 4124 - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform - - uid: 4125 - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform - - uid: 6064 - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform - - uid: 6065 - components: - - pos: -14.5,-10.5 - parent: 1 - type: Transform -- proto: TableWood - entities: - - uid: 165 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 798 - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - uid: 1256 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 1 - type: Transform - - uid: 1261 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-2.5 - parent: 1 - type: Transform - - uid: 1263 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-3.5 - parent: 1 - type: Transform - - uid: 1281 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 1 - type: Transform - - uid: 1780 - components: - - pos: 27.5,14.5 - parent: 1 - type: Transform - - uid: 1802 - components: - - pos: 29.5,16.5 - parent: 1 - type: Transform - - uid: 1803 - components: - - pos: 28.5,16.5 - parent: 1 - type: Transform - - uid: 1844 - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - uid: 1863 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1 - type: Transform - - uid: 1864 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,14.5 - parent: 1 - type: Transform - - uid: 2782 - components: - - pos: -14.5,-48.5 - parent: 1 - type: Transform - - uid: 2786 - components: - - pos: -15.5,-48.5 - parent: 1 - type: Transform - - uid: 2799 - components: - - pos: -13.5,-48.5 - parent: 1 - type: Transform - - uid: 2930 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-52.5 - parent: 1 - type: Transform - - uid: 3130 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - type: Transform - - uid: 3131 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - type: Transform - - uid: 3132 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - uid: 3153 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,7.5 - parent: 1 - type: Transform - - uid: 3154 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 3469 - components: - - rot: 3.141592653589793 rad - pos: -36.5,11.5 - parent: 1 - type: Transform - - uid: 3470 - components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 1 - type: Transform - - uid: 3471 - components: - - rot: 3.141592653589793 rad - pos: -34.5,11.5 - parent: 1 - type: Transform - - uid: 3472 - components: - - rot: 3.141592653589793 rad - pos: -33.5,11.5 - parent: 1 - type: Transform - - uid: 3480 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,14.5 - parent: 1 - type: Transform - - uid: 4045 - components: - - rot: 3.141592653589793 rad - pos: -9.5,27.5 - parent: 1 - type: Transform - - uid: 4046 - components: - - rot: 3.141592653589793 rad - pos: -9.5,28.5 - parent: 1 - type: Transform - - uid: 4091 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,31.5 - parent: 1 - type: Transform - - uid: 4092 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,31.5 - parent: 1 - type: Transform - - uid: 4093 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 4094 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 1 - type: Transform - - uid: 4095 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 - type: Transform - - uid: 4108 - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform - - uid: 4109 - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform - - uid: 4305 - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform - - uid: 4885 - components: - - rot: 3.141592653589793 rad - pos: 40.5,33.5 - parent: 1 - type: Transform - - uid: 4888 - components: - - rot: 3.141592653589793 rad - pos: 39.5,33.5 - parent: 1 - type: Transform - - uid: 4889 - components: - - rot: 3.141592653589793 rad - pos: 39.5,31.5 - parent: 1 - type: Transform - - uid: 4890 - components: - - rot: 3.141592653589793 rad - pos: 40.5,31.5 - parent: 1 - type: Transform - - uid: 4891 - components: - - rot: 3.141592653589793 rad - pos: 41.5,31.5 - parent: 1 - type: Transform - - uid: 4892 - components: - - rot: 3.141592653589793 rad - pos: 44.5,31.5 - parent: 1 - type: Transform - - uid: 4893 - components: - - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 1 - type: Transform - - uid: 4894 - components: - - rot: 3.141592653589793 rad - pos: 46.5,31.5 - parent: 1 - type: Transform - - uid: 4956 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,21.5 - parent: 1 - type: Transform - - uid: 4957 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 1 - type: Transform - - uid: 4958 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 1 - type: Transform - - uid: 4964 - components: - - pos: -4.5,19.5 - parent: 1 - type: Transform - - uid: 5012 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - type: Transform - - uid: 5031 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 5032 - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform - - uid: 5035 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 1 - type: Transform - - uid: 5036 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1 - type: Transform - - uid: 5383 - components: - - pos: -22.5,-1.5 - parent: 1 - type: Transform - - uid: 5665 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - type: Transform - - uid: 5666 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 1 - type: Transform - - uid: 5947 - components: - - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - uid: 5948 - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - uid: 7445 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform - - uid: 7446 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 7710 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-28.5 - parent: 1 - type: Transform - - uid: 7711 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-28.5 - parent: 1 - type: Transform - - uid: 8288 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 1 - type: Transform - - uid: 8289 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 1 - type: Transform - - uid: 8290 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 1 - type: Transform - - uid: 8291 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-14.5 - parent: 1 - type: Transform - - uid: 8294 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-12.5 - parent: 1 - type: Transform - - uid: 8295 - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform - - uid: 8298 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 1 - type: Transform - - uid: 8300 - components: - - pos: -32.5,-17.5 - parent: 1 - type: Transform - - uid: 9015 - components: - - pos: -38.5,-9.5 - parent: 1 - type: Transform - - uid: 9634 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,25.5 - parent: 1 - type: Transform - - uid: 12519 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-29.5 - parent: 1 - type: Transform - - uid: 12520 - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 1 - type: Transform -- proto: TelecomServer - entities: - - uid: 3769 - components: - - pos: -0.5,53.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3770 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3771 - components: - - pos: -0.5,49.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3772 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3777 - components: - - pos: -0.5,55.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3778 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3779 - components: - - pos: 3.5,49.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3780 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3782 - components: - - pos: 3.5,55.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3783 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3784 - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3785 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3789 - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3790 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3792 - components: - - pos: 3.5,51.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3793 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- proto: TelecomServerCircuitboard - entities: - - uid: 4008 - components: - - pos: -2.3633666,50.634815 - parent: 1 - type: Transform - - uid: 4009 - components: - - pos: -2.5352416,50.43169 - parent: 1 - type: Transform -- proto: ThermomachineHeaterMachineCircuitBoard - entities: - - uid: 9560 - components: - - pos: -1.4709852,-34.50978 - parent: 1 - type: Transform -- proto: TintedWindow - entities: - - uid: 47 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 232 - components: - - pos: -13.5,6.5 - parent: 1 - type: Transform - - uid: 236 - components: - - pos: -16.5,6.5 - parent: 1 - type: Transform - - uid: 237 - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - uid: 238 - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - uid: 239 - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - uid: 260 - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform - - uid: 453 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - uid: 454 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - uid: 458 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 524 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - uid: 3447 - components: - - pos: -36.5,13.5 - parent: 1 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 6403 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-27.5 - parent: 1 - type: Transform - - uid: 6404 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 1 - type: Transform - - uid: 6405 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-27.5 - parent: 1 - type: Transform -- proto: ToolboxArtistic - entities: - - uid: 8226 - components: - - pos: -5.5007915,-20.744713 - parent: 1 - type: Transform -- proto: ToolboxElectricalFilled - entities: - - uid: 3976 - components: - - pos: -3.4942179,46.73459 - parent: 1 - type: Transform - - uid: 6025 - components: - - pos: -12.505221,-1.1054368 - parent: 1 - type: Transform - - uid: 6800 - components: - - pos: 18.476976,-7.3507767 - parent: 1 - type: Transform - - uid: 7640 - components: - - pos: -41.523235,18.607943 - parent: 1 - type: Transform - - uid: 8220 - components: - - pos: -5.49676,-21.465288 - parent: 1 - type: Transform - - uid: 8825 - components: - - pos: -27.52112,-24.46938 - parent: 1 - type: Transform - - uid: 9520 - components: - - pos: -4.515568,-31.274857 - parent: 1 - type: Transform -- proto: ToolboxEmergencyFilled - entities: - - uid: 5062 - components: - - pos: -3.518496,32.609406 - parent: 1 - type: Transform - - uid: 7426 - components: - - pos: 4.483827,-26.624891 - parent: 1 - type: Transform - - uid: 7650 - components: - - pos: -39.493473,12.623091 - parent: 1 - type: Transform - - uid: 8225 - components: - - pos: -5.5007915,-20.963463 - parent: 1 - type: Transform - - uid: 9577 - components: - - pos: 44.490696,19.610844 - parent: 1 - type: Transform - - uid: 9578 - components: - - pos: 46.47507,1.6124096 - parent: 1 - type: Transform -- proto: ToolboxGoldFilled - entities: - - uid: 4130 - components: - - pos: -1.51228,25.6276 - parent: 1 - type: Transform -- proto: ToolboxMechanicalFilled - entities: - - uid: 3977 - components: - - pos: -3.4942179,46.51584 - parent: 1 - type: Transform - - uid: 5065 - components: - - pos: -3.518496,32.421906 - parent: 1 - type: Transform - - uid: 6024 - components: - - pos: -12.505221,-1.4335618 - parent: 1 - type: Transform - - uid: 6801 - components: - - pos: 18.476976,-7.6789017 - parent: 1 - type: Transform - - uid: 7425 - components: - - pos: 4.483827,-26.343641 - parent: 1 - type: Transform - - uid: 8221 - components: - - pos: -5.5007915,-21.244713 - parent: 1 - type: Transform -- proto: ToyAi - entities: - - uid: 3616 - components: - - pos: -6.5061026,52.63185 - parent: 1 - type: Transform -- proto: ToyFireRipley - entities: - - uid: 8259 - components: - - desc: A figure of a well known titan, and perhaps an old friend. - name: bt-7274 figurine - type: MetaData - - pos: -17.266478,-52.27695 - parent: 1 - type: Transform -- proto: ToyIan - entities: - - uid: 12483 - components: - - pos: -1.0943661,19.21257 - parent: 1 - type: Transform -- proto: ToySpawner - entities: - - uid: 7809 - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform -- proto: TrashBananaPeel - entities: - - uid: 7799 - components: - - pos: -9.558007,-30.972847 - parent: 1 - type: Transform - - uid: 7800 - components: - - pos: -9.354882,-30.879097 - parent: 1 - type: Transform -- proto: TwoWayLever - entities: - - uid: 7429 - components: - - pos: 9.5,-27.5 - parent: 1 - type: Transform - - linkedPorts: - 1734: - - Left: Forward - - Right: Reverse - - Middle: Off - 1733: - - Left: Forward - - Right: Reverse - - Middle: Off - 1732: - - Left: Forward - - Right: Reverse - - Middle: Off - 1731: - - Left: Forward - - Right: Reverse - - Middle: Off - 1730: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 7430 - components: - - pos: 15.5,-27.5 - parent: 1 - type: Transform - - linkedPorts: - 1739: - - Left: Forward - - Right: Reverse - - Middle: Off - 1738: - - Left: Forward - - Right: Reverse - - Middle: Off - 1737: - - Left: Forward - - Right: Reverse - - Middle: Off - 1736: - - Left: Forward - - Right: Reverse - - Middle: Off - 1735: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 7431 - components: - - pos: 9.5,-22.5 - parent: 1 - type: Transform - - linkedPorts: - 1742: - - Left: Forward - - Right: Reverse - - Middle: Off - 1741: - - Left: Forward - - Right: Reverse - - Middle: Off - 1740: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 9199 - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform - - linkedPorts: - 3569: - - Left: Forward - - Right: Reverse - - Middle: Off - 3568: - - Left: Forward - - Right: Reverse - - Middle: Off - 3570: - - Left: Forward - - Right: Reverse - - Middle: Off - 3567: - - Left: Forward - - Right: Reverse - - Middle: Off - 3566: - - Left: Forward - - Right: Reverse - - Middle: Off - 3565: - - Left: Forward - - Right: Reverse - - Middle: Off - 3564: - - Left: Forward - - Right: Reverse - - Middle: Off - 3563: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: UnfinishedMachineFrame - entities: - - uid: 1926 - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform - - uid: 1927 - components: - - pos: -26.5,5.5 - parent: 1 - type: Transform -- proto: UniformPrinter - entities: - - uid: 4954 - components: - - pos: -1.5,21.5 - parent: 1 - type: Transform -- proto: UniformShortsRed - entities: - - uid: 8815 - components: - - pos: -43.7042,-16.640553 - parent: 1 - type: Transform - - uid: 8816 - components: - - pos: -43.438576,-16.624928 - parent: 1 - type: Transform -- proto: UniformShortsRedWithTop - entities: - - uid: 8817 - components: - - pos: -43.54795,-16.390553 - parent: 1 - type: Transform - - uid: 8818 - components: - - pos: -43.251076,-16.406178 - parent: 1 - type: Transform -- proto: UprightPianoInstrument - entities: - - uid: 8299 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-17.5 - parent: 1 - type: Transform -- proto: Vaccinator - entities: - - uid: 5688 - components: - - pos: -14.5,21.5 - parent: 1 - type: Transform -- proto: VehicleKeyJanicart - entities: - - uid: 7660 - components: - - flags: InContainer - type: MetaData - - parent: 7659 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: VehicleKeySecway - entities: - - uid: 5321 - components: - - pos: 25.427599,10.5971575 - parent: 1 - type: Transform - - uid: 5322 - components: - - pos: 25.708849,10.6596575 - parent: 1 - type: Transform -- proto: VendingBarDrobe - entities: - - uid: 5952 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,5.5 - parent: 1 - type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 7093 - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-18.5 - parent: 1 - type: Transform -- proto: VendingMachineBooze - entities: - - uid: 5949 - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,5.5 - parent: 1 - type: Transform - - uid: 8293 - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-12.5 - parent: 1 - type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 1712 - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,-23.5 - parent: 1 - type: Transform -- proto: VendingMachineCart - entities: - - uid: 4953 - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,21.5 - parent: 1 - type: Transform -- proto: VendingMachineChapel - entities: - - uid: 3478 - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,16.5 - parent: 1 - type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 5961 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,0.5 - parent: 1 - type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 5962 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,3.5 - parent: 1 - type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 5611 - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,16.5 - parent: 1 - type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 5617 - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,13.5 - parent: 1 - type: Transform -- proto: VendingMachineCigs - entities: - - uid: 4048 - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,26.5 - parent: 1 - type: Transform - - uid: 7533 - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,0.5 - parent: 1 - type: Transform - - uid: 7539 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,13.5 - parent: 1 - type: Transform -- proto: VendingMachineClothing - entities: - - uid: 7697 - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-24.5 - parent: 1 - type: Transform -- proto: VendingMachineDetDrobe - entities: - - uid: 5359 - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,6.5 - parent: 1 - type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 5964 - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,3.5 - parent: 1 - type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 7184 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-3.5 - parent: 1 - type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 6556 - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,-3.5 - parent: 1 - type: Transform -- proto: VendingMachineGames - entities: - - uid: 5596 - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,-7.5 - parent: 1 - type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 6011 - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-5.5 - parent: 1 - type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 7658 - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-2.5 - parent: 1 - type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 5334 - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,8.5 - parent: 1 - type: Transform -- proto: VendingMachineMedical - entities: - - uid: 1911 - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,11.5 - parent: 1 - type: Transform - - uid: 5344 - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,7.5 - parent: 1 - type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 1891 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,5.5 - parent: 1 - type: Transform -- proto: VendingMachineNutri - entities: - - uid: 6010 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-5.5 - parent: 1 - type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 660 - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-15.5 - parent: 1 - type: Transform -- proto: VendingMachineRobotics - entities: - - uid: 654 - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,-15.5 - parent: 1 - type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 7291 - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-20.5 - parent: 1 - type: Transform -- proto: VendingMachineSciDrobe - entities: - - uid: 3820 - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-0.5 - parent: 1 - type: Transform -- proto: VendingMachineSec - entities: - - uid: 759 - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,15.5 - parent: 1 - type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 5335 - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,9.5 - parent: 1 - type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 6007 - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,-5.5 - parent: 1 - type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 4949 - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,28.5 - parent: 1 - type: Transform -- proto: VendingMachineSovietSoda - entities: - - uid: 9246 - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,32.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 6994 - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-4.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 4923 - components: - - flags: SessionSpecific - type: MetaData - - pos: 42.5,21.5 - parent: 1 - type: Transform - - uid: 6767 - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.5,-8.5 - parent: 1 - type: Transform - - uid: 7292 - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-20.5 - parent: 1 - type: Transform -- proto: VendingMachineTheater - entities: - - uid: 7699 - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-24.5 - parent: 1 - type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 7695 - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-22.5 - parent: 1 - type: Transform - - uid: 9519 - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-31.5 - parent: 1 - type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 5691 - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,21.5 - parent: 1 - type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 1912 - components: - - flags: SessionSpecific - type: MetaData - - rot: 1.5707963267948966 rad - pos: -21.5,15.5 - parent: 1 - type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 6779 - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-3.5 - parent: 1 - type: Transform - - uid: 7696 - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- proto: WallReinforced - entities: - - uid: 106 - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform - - uid: 107 - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform - - uid: 111 - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform - - uid: 112 - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform - - uid: 117 - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - uid: 118 - components: - - pos: 6.5,18.5 - parent: 1 - type: Transform - - uid: 119 - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform - - uid: 120 - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - uid: 122 - components: - - pos: -5.5,22.5 - parent: 1 - type: Transform - - uid: 123 - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform - - uid: 124 - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform - - uid: 125 - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - uid: 126 - components: - - pos: -0.5,22.5 - parent: 1 - type: Transform - - uid: 127 - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - uid: 128 - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform - - uid: 129 - components: - - pos: -3.5,22.5 - parent: 1 - type: Transform - - uid: 130 - components: - - pos: -3.5,21.5 - parent: 1 - type: Transform - - uid: 131 - components: - - pos: -4.5,22.5 - parent: 1 - type: Transform - - uid: 132 - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - uid: 133 - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - uid: 142 - components: - - pos: -6.5,22.5 - parent: 1 - type: Transform - - uid: 143 - components: - - pos: -6.5,21.5 - parent: 1 - type: Transform - - uid: 144 - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform - - uid: 145 - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - - uid: 146 - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform - - uid: 147 - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform - - uid: 148 - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform - - uid: 152 - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform - - uid: 153 - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - uid: 154 - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform - - uid: 155 - components: - - pos: -9.5,16.5 - parent: 1 - type: Transform - - uid: 156 - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - uid: 160 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 162 - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - uid: 168 - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform - - uid: 180 - components: - - pos: -10.5,17.5 - parent: 1 - type: Transform - - uid: 182 - components: - - pos: -11.5,17.5 - parent: 1 - type: Transform - - uid: 183 - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform - - uid: 184 - components: - - pos: -13.5,17.5 - parent: 1 - type: Transform - - uid: 185 - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - uid: 189 - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - uid: 190 - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform - - uid: 191 - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform - - uid: 193 - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform - - uid: 194 - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - uid: 195 - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - uid: 198 - components: - - pos: -21.5,17.5 - parent: 1 - type: Transform - - uid: 199 - components: - - pos: -21.5,16.5 - parent: 1 - type: Transform - - uid: 200 - components: - - pos: -21.5,15.5 - parent: 1 - type: Transform - - uid: 201 - components: - - pos: -21.5,14.5 - parent: 1 - type: Transform - - uid: 202 - components: - - pos: -21.5,13.5 - parent: 1 - type: Transform - - uid: 203 - components: - - pos: -21.5,12.5 - parent: 1 - type: Transform - - uid: 204 - components: - - pos: -20.5,12.5 - parent: 1 - type: Transform - - uid: 205 - components: - - pos: -19.5,12.5 - parent: 1 - type: Transform - - uid: 206 - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform - - uid: 207 - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform - - uid: 208 - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform - - uid: 225 - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform - - uid: 226 - components: - - pos: -22.5,7.5 - parent: 1 - type: Transform - - uid: 230 - components: - - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 1 - type: Transform - - uid: 254 - components: - - pos: -22.5,6.5 - parent: 1 - type: Transform - - uid: 261 - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform - - uid: 262 - components: - - pos: -27.5,4.5 - parent: 1 - type: Transform - - uid: 267 - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform - - uid: 268 - components: - - pos: -27.5,6.5 - parent: 1 - type: Transform - - uid: 269 - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform - - uid: 270 - components: - - pos: -27.5,8.5 - parent: 1 - type: Transform - - uid: 273 - components: - - pos: -23.5,4.5 - parent: 1 - type: Transform - - uid: 274 - components: - - pos: -24.5,4.5 - parent: 1 - type: Transform - - uid: 275 - components: - - pos: -25.5,4.5 - parent: 1 - type: Transform - - uid: 276 - components: - - pos: -26.5,4.5 - parent: 1 - type: Transform - - uid: 314 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,25.5 - parent: 1 - type: Transform - - uid: 317 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,24.5 - parent: 1 - type: Transform - - uid: 318 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,23.5 - parent: 1 - type: Transform - - uid: 319 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,26.5 - parent: 1 - type: Transform - - uid: 320 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 1 - type: Transform - - uid: 321 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,25.5 - parent: 1 - type: Transform - - uid: 322 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,24.5 - parent: 1 - type: Transform - - uid: 323 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 1 - type: Transform - - uid: 324 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,26.5 - parent: 1 - type: Transform - - uid: 325 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - uid: 326 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,26.5 - parent: 1 - type: Transform - - uid: 327 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,26.5 - parent: 1 - type: Transform - - uid: 329 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 1 - type: Transform - - uid: 330 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,23.5 - parent: 1 - type: Transform - - uid: 331 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,32.5 - parent: 1 - type: Transform - - uid: 335 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,32.5 - parent: 1 - type: Transform - - uid: 336 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,32.5 - parent: 1 - type: Transform - - uid: 337 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,31.5 - parent: 1 - type: Transform - - uid: 338 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,30.5 - parent: 1 - type: Transform - - uid: 339 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - uid: 340 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 1 - type: Transform - - uid: 341 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,27.5 - parent: 1 - type: Transform - - uid: 342 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,26.5 - parent: 1 - type: Transform - - uid: 343 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,31.5 - parent: 1 - type: Transform - - uid: 344 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,30.5 - parent: 1 - type: Transform - - uid: 345 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 1 - type: Transform - - uid: 346 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,28.5 - parent: 1 - type: Transform - - uid: 347 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 1 - type: Transform - - uid: 348 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,26.5 - parent: 1 - type: Transform - - uid: 349 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 350 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 1 - type: Transform - - uid: 351 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 1 - type: Transform - - uid: 352 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 1 - type: Transform - - uid: 353 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - type: Transform - - uid: 354 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - uid: 355 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - uid: 356 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1 - type: Transform - - uid: 357 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 1 - type: Transform - - uid: 358 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,22.5 - parent: 1 - type: Transform - - uid: 359 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - type: Transform - - uid: 360 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 1 - type: Transform - - uid: 361 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 1 - type: Transform - - uid: 378 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,32.5 - parent: 1 - type: Transform - - uid: 387 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,25.5 - parent: 1 - type: Transform - - uid: 388 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,25.5 - parent: 1 - type: Transform - - uid: 389 - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform - - uid: 390 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,25.5 - parent: 1 - type: Transform - - uid: 391 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,25.5 - parent: 1 - type: Transform - - uid: 392 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,25.5 - parent: 1 - type: Transform - - uid: 393 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,26.5 - parent: 1 - type: Transform - - uid: 394 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,27.5 - parent: 1 - type: Transform - - uid: 395 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1 - type: Transform - - uid: 396 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,29.5 - parent: 1 - type: Transform - - uid: 397 - components: - - pos: -15.5,31.5 - parent: 1 - type: Transform - - uid: 398 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - type: Transform - - uid: 399 - components: - - rot: -1.5707963267948966 rad - pos: -12.5,32.5 - parent: 1 - type: Transform - - uid: 402 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,16.5 - parent: 1 - type: Transform - - uid: 410 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,29.5 - parent: 1 - type: Transform - - uid: 411 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,29.5 - parent: 1 - type: Transform - - uid: 412 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - type: Transform - - uid: 413 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,32.5 - parent: 1 - type: Transform - - uid: 414 - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform - - uid: 415 - components: - - pos: -16.5,31.5 - parent: 1 - type: Transform - - uid: 428 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,16.5 - parent: 1 - type: Transform - - uid: 429 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,16.5 - parent: 1 - type: Transform - - uid: 432 - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform - - uid: 433 - components: - - pos: -8.5,-19.5 - parent: 1 - type: Transform - - uid: 434 - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform - - uid: 439 - components: - - pos: 39.5,20.5 - parent: 1 - type: Transform - - uid: 440 - components: - - pos: -8.5,-21.5 - parent: 1 - type: Transform - - uid: 441 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,19.5 - parent: 1 - type: Transform - - uid: 442 - components: - - pos: 40.5,20.5 - parent: 1 - type: Transform - - uid: 460 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-6.5 - parent: 1 - type: Transform - - uid: 503 - components: - - rot: 3.141592653589793 rad - pos: -29.5,0.5 - parent: 1 - type: Transform - - uid: 520 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-8.5 - parent: 1 - type: Transform - - uid: 525 - components: - - rot: 3.141592653589793 rad - pos: -24.5,-8.5 - parent: 1 - type: Transform - - uid: 526 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-1.5 - parent: 1 - type: Transform - - uid: 527 - components: - - rot: 3.141592653589793 rad - pos: -24.5,0.5 - parent: 1 - type: Transform - - uid: 528 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform - - uid: 529 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-0.5 - parent: 1 - type: Transform - - uid: 530 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 1 - type: Transform - - uid: 531 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-7.5 - parent: 1 - type: Transform - - uid: 534 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 1 - type: Transform - - uid: 535 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 1 - type: Transform - - uid: 536 - components: - - rot: 3.141592653589793 rad - pos: -27.5,0.5 - parent: 1 - type: Transform - - uid: 537 - components: - - rot: 3.141592653589793 rad - pos: -28.5,-8.5 - parent: 1 - type: Transform - - uid: 538 - components: - - rot: 3.141592653589793 rad - pos: -28.5,0.5 - parent: 1 - type: Transform - - uid: 540 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-3.5 - parent: 1 - type: Transform - - uid: 541 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-4.5 - parent: 1 - type: Transform - - uid: 542 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-4.5 - parent: 1 - type: Transform - - uid: 543 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-3.5 - parent: 1 - type: Transform - - uid: 544 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-0.5 - parent: 1 - type: Transform - - uid: 547 - components: - - rot: 3.141592653589793 rad - pos: -27.5,-4.5 - parent: 1 - type: Transform - - uid: 548 - components: - - rot: 3.141592653589793 rad - pos: -25.5,-4.5 - parent: 1 - type: Transform - - uid: 549 - components: - - rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 1 - type: Transform - - uid: 550 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform - - uid: 551 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-5.5 - parent: 1 - type: Transform - - uid: 552 - components: - - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 1 - type: Transform - - uid: 554 - components: - - rot: 3.141592653589793 rad - pos: -31.5,-3.5 - parent: 1 - type: Transform - - uid: 555 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-5.5 - parent: 1 - type: Transform - - uid: 556 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 1 - type: Transform - - uid: 560 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-4.5 - parent: 1 - type: Transform - - uid: 561 - components: - - rot: 3.141592653589793 rad - pos: -25.5,0.5 - parent: 1 - type: Transform - - uid: 562 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-3.5 - parent: 1 - type: Transform - - uid: 563 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-7.5 - parent: 1 - type: Transform - - uid: 564 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-8.5 - parent: 1 - type: Transform - - uid: 565 - components: - - rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - uid: 567 - components: - - rot: 3.141592653589793 rad - pos: -19.5,0.5 - parent: 1 - type: Transform - - uid: 568 - components: - - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 1 - type: Transform - - uid: 569 - components: - - rot: 3.141592653589793 rad - pos: -29.5,-4.5 - parent: 1 - type: Transform - - uid: 570 - components: - - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 1 - type: Transform - - uid: 571 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-7.5 - parent: 1 - type: Transform - - uid: 572 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 1 - type: Transform - - uid: 573 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 1 - type: Transform - - uid: 574 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-7.5 - parent: 1 - type: Transform - - uid: 575 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-7.5 - parent: 1 - type: Transform - - uid: 577 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-7.5 - parent: 1 - type: Transform - - uid: 587 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform - - uid: 588 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1 - type: Transform - - uid: 590 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-10.5 - parent: 1 - type: Transform - - uid: 591 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-11.5 - parent: 1 - type: Transform - - uid: 592 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-14.5 - parent: 1 - type: Transform - - uid: 597 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-12.5 - parent: 1 - type: Transform - - uid: 599 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 1 - type: Transform - - uid: 603 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-15.5 - parent: 1 - type: Transform - - uid: 612 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 1 - type: Transform - - uid: 613 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-9.5 - parent: 1 - type: Transform - - uid: 614 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-10.5 - parent: 1 - type: Transform - - uid: 615 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-15.5 - parent: 1 - type: Transform - - uid: 616 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-16.5 - parent: 1 - type: Transform - - uid: 617 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-16.5 - parent: 1 - type: Transform - - uid: 618 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-16.5 - parent: 1 - type: Transform - - uid: 625 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-4.5 - parent: 1 - type: Transform - - uid: 626 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-0.5 - parent: 1 - type: Transform - - uid: 627 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-1.5 - parent: 1 - type: Transform - - uid: 628 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-2.5 - parent: 1 - type: Transform - - uid: 629 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-3.5 - parent: 1 - type: Transform - - uid: 630 - components: - - rot: 3.141592653589793 rad - pos: -23.5,-4.5 - parent: 1 - type: Transform - - uid: 631 - components: - - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 1 - type: Transform - - uid: 644 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,16.5 - parent: 1 - type: Transform - - uid: 670 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 1 - type: Transform - - uid: 672 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 1 - type: Transform - - uid: 673 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 1 - type: Transform - - uid: 676 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,16.5 - parent: 1 - type: Transform - - uid: 677 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,16.5 - parent: 1 - type: Transform - - uid: 679 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 680 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 1 - type: Transform - - uid: 681 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 1 - type: Transform - - uid: 682 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1 - type: Transform - - uid: 683 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - uid: 684 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - uid: 685 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 1 - type: Transform - - uid: 686 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,16.5 - parent: 1 - type: Transform - - uid: 687 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 1 - type: Transform - - uid: 688 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,6.5 - parent: 1 - type: Transform - - uid: 689 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - type: Transform - - uid: 690 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 1 - type: Transform - - uid: 691 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 1 - type: Transform - - uid: 692 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 1 - type: Transform - - uid: 693 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - uid: 694 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,4.5 - parent: 1 - type: Transform - - uid: 695 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,7.5 - parent: 1 - type: Transform - - uid: 696 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 1 - type: Transform - - uid: 697 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 1 - type: Transform - - uid: 698 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,4.5 - parent: 1 - type: Transform - - uid: 699 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 1 - type: Transform - - uid: 700 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 1 - type: Transform - - uid: 701 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,5.5 - parent: 1 - type: Transform - - uid: 702 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,4.5 - parent: 1 - type: Transform - - uid: 729 - components: - - rot: 3.141592653589793 rad - pos: 24.5,7.5 - parent: 1 - type: Transform - - uid: 730 - components: - - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - uid: 731 - components: - - rot: 3.141592653589793 rad - pos: 24.5,5.5 - parent: 1 - type: Transform - - uid: 732 - components: - - rot: 3.141592653589793 rad - pos: 24.5,4.5 - parent: 1 - type: Transform - - uid: 733 - components: - - rot: 3.141592653589793 rad - pos: 23.5,4.5 - parent: 1 - type: Transform - - uid: 735 - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 1 - type: Transform - - uid: 736 - components: - - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 1 - type: Transform - - uid: 748 - components: - - rot: 3.141592653589793 rad - pos: 18.5,16.5 - parent: 1 - type: Transform - - uid: 749 - components: - - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 1 - type: Transform - - uid: 750 - components: - - rot: 3.141592653589793 rad - pos: 20.5,16.5 - parent: 1 - type: Transform - - uid: 751 - components: - - rot: 3.141592653589793 rad - pos: 21.5,16.5 - parent: 1 - type: Transform - - uid: 752 - components: - - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 1 - type: Transform - - uid: 753 - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform - - uid: 754 - components: - - rot: 3.141592653589793 rad - pos: 24.5,15.5 - parent: 1 - type: Transform - - uid: 755 - components: - - rot: 3.141592653589793 rad - pos: 24.5,14.5 - parent: 1 - type: Transform - - uid: 756 - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - uid: 757 - components: - - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 1 - type: Transform - - uid: 758 - components: - - rot: 3.141592653589793 rad - pos: 24.5,11.5 - parent: 1 - type: Transform - - uid: 783 - components: - - pos: 25.5,15.5 - parent: 1 - type: Transform - - uid: 787 - components: - - pos: 26.5,15.5 - parent: 1 - type: Transform - - uid: 788 - components: - - pos: 27.5,15.5 - parent: 1 - type: Transform - - uid: 789 - components: - - pos: 28.5,15.5 - parent: 1 - type: Transform - - uid: 790 - components: - - pos: 29.5,15.5 - parent: 1 - type: Transform - - uid: 791 - components: - - pos: 30.5,15.5 - parent: 1 - type: Transform - - uid: 793 - components: - - pos: 30.5,12.5 - parent: 1 - type: Transform - - uid: 795 - components: - - pos: 30.5,11.5 - parent: 1 - type: Transform - - uid: 796 - components: - - pos: 29.5,11.5 - parent: 1 - type: Transform - - uid: 797 - components: - - pos: 28.5,11.5 - parent: 1 - type: Transform - - uid: 799 - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform - - uid: 800 - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform - - uid: 801 - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - uid: 802 - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform - - uid: 803 - components: - - pos: 29.5,7.5 - parent: 1 - type: Transform - - uid: 804 - components: - - pos: 29.5,6.5 - parent: 1 - type: Transform - - uid: 805 - components: - - pos: 29.5,5.5 - parent: 1 - type: Transform - - uid: 806 - components: - - pos: 29.5,4.5 - parent: 1 - type: Transform - - uid: 807 - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - uid: 808 - components: - - pos: 27.5,4.5 - parent: 1 - type: Transform - - uid: 809 - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - uid: 810 - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform - - uid: 811 - components: - - pos: 30.5,7.5 - parent: 1 - type: Transform - - uid: 812 - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform - - uid: 814 - components: - - pos: 33.5,7.5 - parent: 1 - type: Transform - - uid: 819 - components: - - pos: 34.5,7.5 - parent: 1 - type: Transform - - uid: 820 - components: - - pos: 34.5,8.5 - parent: 1 - type: Transform - - uid: 821 - components: - - pos: 34.5,9.5 - parent: 1 - type: Transform - - uid: 822 - components: - - pos: 34.5,10.5 - parent: 1 - type: Transform - - uid: 823 - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform - - uid: 824 - components: - - pos: 34.5,12.5 - parent: 1 - type: Transform - - uid: 825 - components: - - pos: 34.5,13.5 - parent: 1 - type: Transform - - uid: 826 - components: - - pos: 34.5,14.5 - parent: 1 - type: Transform - - uid: 827 - components: - - pos: 34.5,15.5 - parent: 1 - type: Transform - - uid: 828 - components: - - pos: 35.5,8.5 - parent: 1 - type: Transform - - uid: 829 - components: - - pos: 36.5,9.5 - parent: 1 - type: Transform - - uid: 830 - components: - - pos: 36.5,8.5 - parent: 1 - type: Transform - - uid: 831 - components: - - pos: 37.5,9.5 - parent: 1 - type: Transform - - uid: 832 - components: - - pos: 37.5,8.5 - parent: 1 - type: Transform - - uid: 833 - components: - - pos: 38.5,8.5 - parent: 1 - type: Transform - - uid: 834 - components: - - pos: 38.5,9.5 - parent: 1 - type: Transform - - uid: 835 - components: - - pos: 40.5,15.5 - parent: 1 - type: Transform - - uid: 836 - components: - - pos: 40.5,14.5 - parent: 1 - type: Transform - - uid: 837 - components: - - pos: 40.5,13.5 - parent: 1 - type: Transform - - uid: 838 - components: - - pos: 40.5,12.5 - parent: 1 - type: Transform - - uid: 839 - components: - - pos: 38.5,14.5 - parent: 1 - type: Transform - - uid: 840 - components: - - pos: 38.5,15.5 - parent: 1 - type: Transform - - uid: 841 - components: - - pos: 39.5,8.5 - parent: 1 - type: Transform - - uid: 842 - components: - - pos: 39.5,9.5 - parent: 1 - type: Transform - - uid: 843 - components: - - pos: 39.5,10.5 - parent: 1 - type: Transform - - uid: 844 - components: - - pos: 39.5,11.5 - parent: 1 - type: Transform - - uid: 845 - components: - - pos: 39.5,12.5 - parent: 1 - type: Transform - - uid: 846 - components: - - pos: 39.5,13.5 - parent: 1 - type: Transform - - uid: 847 - components: - - pos: 39.5,14.5 - parent: 1 - type: Transform - - uid: 848 - components: - - pos: 39.5,15.5 - parent: 1 - type: Transform - - uid: 849 - components: - - pos: 37.5,14.5 - parent: 1 - type: Transform - - uid: 850 - components: - - pos: 37.5,15.5 - parent: 1 - type: Transform - - uid: 851 - components: - - pos: 36.5,14.5 - parent: 1 - type: Transform - - uid: 852 - components: - - pos: 36.5,15.5 - parent: 1 - type: Transform - - uid: 853 - components: - - pos: 35.5,14.5 - parent: 1 - type: Transform - - uid: 854 - components: - - pos: 35.5,15.5 - parent: 1 - type: Transform - - uid: 855 - components: - - pos: 30.5,16.5 - parent: 1 - type: Transform - - uid: 856 - components: - - pos: 30.5,18.5 - parent: 1 - type: Transform - - uid: 857 - components: - - pos: 30.5,19.5 - parent: 1 - type: Transform - - uid: 858 - components: - - pos: 29.5,19.5 - parent: 1 - type: Transform - - uid: 859 - components: - - pos: 28.5,19.5 - parent: 1 - type: Transform - - uid: 860 - components: - - pos: 27.5,19.5 - parent: 1 - type: Transform - - uid: 861 - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform - - uid: 862 - components: - - pos: 26.5,18.5 - parent: 1 - type: Transform - - uid: 863 - components: - - pos: 26.5,17.5 - parent: 1 - type: Transform - - uid: 864 - components: - - pos: 26.5,16.5 - parent: 1 - type: Transform - - uid: 865 - components: - - pos: 34.5,16.5 - parent: 1 - type: Transform - - uid: 866 - components: - - pos: 34.5,17.5 - parent: 1 - type: Transform - - uid: 867 - components: - - pos: 34.5,18.5 - parent: 1 - type: Transform - - uid: 868 - components: - - pos: 34.5,19.5 - parent: 1 - type: Transform - - uid: 870 - components: - - pos: 24.5,16.5 - parent: 1 - type: Transform - - uid: 872 - components: - - pos: 40.5,11.5 - parent: 1 - type: Transform - - uid: 873 - components: - - pos: 40.5,10.5 - parent: 1 - type: Transform - - uid: 874 - components: - - pos: 40.5,9.5 - parent: 1 - type: Transform - - uid: 875 - components: - - pos: 40.5,8.5 - parent: 1 - type: Transform - - uid: 876 - components: - - pos: 35.5,10.5 - parent: 1 - type: Transform - - uid: 877 - components: - - pos: 35.5,12.5 - parent: 1 - type: Transform - - uid: 878 - components: - - pos: 35.5,13.5 - parent: 1 - type: Transform - - uid: 887 - components: - - pos: 31.5,19.5 - parent: 1 - type: Transform - - uid: 888 - components: - - pos: 34.5,22.5 - parent: 1 - type: Transform - - uid: 889 - components: - - pos: 35.5,19.5 - parent: 1 - type: Transform - - uid: 890 - components: - - pos: 30.5,22.5 - parent: 1 - type: Transform - - uid: 891 - components: - - pos: 30.5,23.5 - parent: 1 - type: Transform - - uid: 892 - components: - - pos: 29.5,22.5 - parent: 1 - type: Transform - - uid: 893 - components: - - pos: 29.5,23.5 - parent: 1 - type: Transform - - uid: 894 - components: - - pos: 28.5,22.5 - parent: 1 - type: Transform - - uid: 895 - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform - - uid: 896 - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform - - uid: 897 - components: - - pos: 27.5,23.5 - parent: 1 - type: Transform - - uid: 898 - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform - - uid: 899 - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform - - uid: 900 - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform - - uid: 901 - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform - - uid: 902 - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform - - uid: 903 - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - uid: 904 - components: - - pos: 23.5,22.5 - parent: 1 - type: Transform - - uid: 905 - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform - - uid: 906 - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - uid: 907 - components: - - pos: 23.5,25.5 - parent: 1 - type: Transform - - uid: 908 - components: - - pos: 23.5,26.5 - parent: 1 - type: Transform - - uid: 909 - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform - - uid: 910 - components: - - pos: 23.5,28.5 - parent: 1 - type: Transform - - uid: 911 - components: - - pos: 23.5,29.5 - parent: 1 - type: Transform - - uid: 912 - components: - - pos: 22.5,22.5 - parent: 1 - type: Transform - - uid: 913 - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform - - uid: 914 - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - uid: 915 - components: - - pos: 22.5,25.5 - parent: 1 - type: Transform - - uid: 916 - components: - - pos: 22.5,26.5 - parent: 1 - type: Transform - - uid: 917 - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform - - uid: 918 - components: - - pos: 22.5,28.5 - parent: 1 - type: Transform - - uid: 919 - components: - - pos: 22.5,29.5 - parent: 1 - type: Transform - - uid: 920 - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform - - uid: 921 - components: - - pos: 25.5,29.5 - parent: 1 - type: Transform - - uid: 922 - components: - - pos: 26.5,29.5 - parent: 1 - type: Transform - - uid: 923 - components: - - pos: 27.5,29.5 - parent: 1 - type: Transform - - uid: 924 - components: - - pos: 33.5,29.5 - parent: 1 - type: Transform - - uid: 925 - components: - - pos: 34.5,29.5 - parent: 1 - type: Transform - - uid: 927 - components: - - pos: 34.5,24.5 - parent: 1 - type: Transform - - uid: 928 - components: - - pos: 34.5,25.5 - parent: 1 - type: Transform - - uid: 929 - components: - - pos: 34.5,26.5 - parent: 1 - type: Transform - - uid: 930 - components: - - pos: 34.5,27.5 - parent: 1 - type: Transform - - uid: 931 - components: - - pos: 34.5,28.5 - parent: 1 - type: Transform - - uid: 932 - components: - - pos: 35.5,23.5 - parent: 1 - type: Transform - - uid: 933 - components: - - pos: 35.5,24.5 - parent: 1 - type: Transform - - uid: 934 - components: - - pos: 35.5,25.5 - parent: 1 - type: Transform - - uid: 935 - components: - - pos: 35.5,26.5 - parent: 1 - type: Transform - - uid: 936 - components: - - pos: 35.5,27.5 - parent: 1 - type: Transform - - uid: 937 - components: - - pos: 35.5,28.5 - parent: 1 - type: Transform - - uid: 938 - components: - - pos: 35.5,29.5 - parent: 1 - type: Transform - - uid: 939 - components: - - pos: 35.5,22.5 - parent: 1 - type: Transform - - uid: 940 - components: - - pos: 21.5,19.5 - parent: 1 - type: Transform - - uid: 941 - components: - - pos: 21.5,20.5 - parent: 1 - type: Transform - - uid: 942 - components: - - rot: -1.5707963267948966 rad - pos: 23.5,19.5 - parent: 1 - type: Transform - - uid: 943 - components: - - pos: 24.5,21.5 - parent: 1 - type: Transform - - uid: 944 - components: - - pos: 24.5,20.5 - parent: 1 - type: Transform - - uid: 945 - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform - - uid: 946 - components: - - pos: 25.5,26.5 - parent: 1 - type: Transform - - uid: 947 - components: - - pos: 26.5,26.5 - parent: 1 - type: Transform - - uid: 948 - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform - - uid: 950 - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform - - uid: 951 - components: - - pos: 21.5,21.5 - parent: 1 - type: Transform - - uid: 952 - components: - - pos: 21.5,22.5 - parent: 1 - type: Transform - - uid: 953 - components: - - pos: 35.5,30.5 - parent: 1 - type: Transform - - uid: 954 - components: - - pos: 35.5,31.5 - parent: 1 - type: Transform - - uid: 955 - components: - - pos: 34.5,31.5 - parent: 1 - type: Transform - - uid: 956 - components: - - pos: 33.5,31.5 - parent: 1 - type: Transform - - uid: 957 - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform - - uid: 958 - components: - - pos: 31.5,31.5 - parent: 1 - type: Transform - - uid: 959 - components: - - pos: 30.5,31.5 - parent: 1 - type: Transform - - uid: 961 - components: - - pos: 29.5,31.5 - parent: 1 - type: Transform - - uid: 962 - components: - - pos: 23.5,31.5 - parent: 1 - type: Transform - - uid: 963 - components: - - pos: 22.5,31.5 - parent: 1 - type: Transform - - uid: 964 - components: - - pos: 22.5,30.5 - parent: 1 - type: Transform - - uid: 984 - components: - - pos: 31.5,22.5 - parent: 1 - type: Transform - - uid: 1059 - components: - - pos: 15.5,-15.5 - parent: 1 - type: Transform - - uid: 1061 - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - uid: 1062 - components: - - pos: 15.5,-14.5 - parent: 1 - type: Transform - - uid: 1063 - components: - - pos: 15.5,-16.5 - parent: 1 - type: Transform - - uid: 1064 - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform - - uid: 1066 - components: - - pos: 16.5,-16.5 - parent: 1 - type: Transform - - uid: 1067 - components: - - pos: 17.5,-16.5 - parent: 1 - type: Transform - - uid: 1068 - components: - - pos: 18.5,-16.5 - parent: 1 - type: Transform - - uid: 1069 - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform - - uid: 1070 - components: - - pos: 20.5,-16.5 - parent: 1 - type: Transform - - uid: 1071 - components: - - pos: 21.5,-16.5 - parent: 1 - type: Transform - - uid: 1073 - components: - - pos: 21.5,-14.5 - parent: 1 - type: Transform - - uid: 1074 - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform - - uid: 1075 - components: - - pos: 21.5,-12.5 - parent: 1 - type: Transform - - uid: 1076 - components: - - pos: 17.5,-12.5 - parent: 1 - type: Transform - - uid: 1093 - components: - - pos: 24.5,-2.5 - parent: 1 - type: Transform - - uid: 1094 - components: - - pos: 29.5,-2.5 - parent: 1 - type: Transform - - uid: 1095 - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform - - uid: 1096 - components: - - pos: 22.5,-16.5 - parent: 1 - type: Transform - - uid: 1098 - components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform - - uid: 1102 - components: - - pos: 27.5,-13.5 - parent: 1 - type: Transform - - uid: 1103 - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform - - uid: 1104 - components: - - pos: 26.5,-12.5 - parent: 1 - type: Transform - - uid: 1105 - components: - - pos: 27.5,-12.5 - parent: 1 - type: Transform - - uid: 1107 - components: - - pos: 22.5,-12.5 - parent: 1 - type: Transform - - uid: 1108 - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - uid: 1109 - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform - - uid: 1110 - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - uid: 1111 - components: - - pos: 28.5,-2.5 - parent: 1 - type: Transform - - uid: 1112 - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - uid: 1113 - components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform - - uid: 1114 - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform - - uid: 1116 - components: - - pos: 26.5,-2.5 - parent: 1 - type: Transform - - uid: 1117 - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform - - uid: 1177 - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform - - uid: 1198 - components: - - pos: 30.5,-3.5 - parent: 1 - type: Transform - - uid: 1199 - components: - - pos: 30.5,-4.5 - parent: 1 - type: Transform - - uid: 1200 - components: - - pos: 30.5,-5.5 - parent: 1 - type: Transform - - uid: 1201 - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform - - uid: 1202 - components: - - pos: 30.5,-7.5 - parent: 1 - type: Transform - - uid: 1203 - components: - - pos: 30.5,-8.5 - parent: 1 - type: Transform - - uid: 1204 - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform - - uid: 1205 - components: - - pos: 28.5,-12.5 - parent: 1 - type: Transform - - uid: 1206 - components: - - pos: 29.5,-12.5 - parent: 1 - type: Transform - - uid: 1207 - components: - - pos: 30.5,-12.5 - parent: 1 - type: Transform - - uid: 1208 - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform - - uid: 1209 - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform - - uid: 1210 - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform - - uid: 1211 - components: - - pos: 33.5,-7.5 - parent: 1 - type: Transform - - uid: 1212 - components: - - pos: 33.5,-6.5 - parent: 1 - type: Transform - - uid: 1213 - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform - - uid: 1214 - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform - - uid: 1215 - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform - - uid: 1216 - components: - - pos: 33.5,-2.5 - parent: 1 - type: Transform - - uid: 1217 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 1 - type: Transform - - uid: 1218 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 1 - type: Transform - - uid: 1219 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 1 - type: Transform - - uid: 1220 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 1 - type: Transform - - uid: 1223 - components: - - pos: 40.5,-2.5 - parent: 1 - type: Transform - - uid: 1224 - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform - - uid: 1225 - components: - - pos: 33.5,-12.5 - parent: 1 - type: Transform - - uid: 1226 - components: - - pos: 33.5,-13.5 - parent: 1 - type: Transform - - uid: 1227 - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform - - uid: 1228 - components: - - pos: 33.5,-15.5 - parent: 1 - type: Transform - - uid: 1229 - components: - - pos: 41.5,-2.5 - parent: 1 - type: Transform - - uid: 1241 - components: - - pos: 38.5,19.5 - parent: 1 - type: Transform - - uid: 1244 - components: - - pos: 42.5,-2.5 - parent: 1 - type: Transform - - uid: 1245 - components: - - pos: 43.5,-2.5 - parent: 1 - type: Transform - - uid: 1246 - components: - - pos: 44.5,-2.5 - parent: 1 - type: Transform - - uid: 1247 - components: - - pos: 45.5,-2.5 - parent: 1 - type: Transform - - uid: 1250 - components: - - pos: 45.5,0.5 - parent: 1 - type: Transform - - uid: 1251 - components: - - pos: 45.5,-0.5 - parent: 1 - type: Transform - - uid: 1252 - components: - - pos: 45.5,-1.5 - parent: 1 - type: Transform - - uid: 1272 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - type: Transform - - uid: 1276 - components: - - pos: 47.5,4.5 - parent: 1 - type: Transform - - uid: 1279 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,13.5 - parent: 1 - type: Transform - - uid: 1282 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,4.5 - parent: 1 - type: Transform - - uid: 1283 - components: - - pos: 47.5,13.5 - parent: 1 - type: Transform - - uid: 1286 - components: - - pos: 47.5,6.5 - parent: 1 - type: Transform - - uid: 1288 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,6.5 - parent: 1 - type: Transform - - uid: 1290 - components: - - pos: 47.5,11.5 - parent: 1 - type: Transform - - uid: 1294 - components: - - pos: 42.5,20.5 - parent: 1 - type: Transform - - uid: 1297 - components: - - pos: 47.5,18.5 - parent: 1 - type: Transform - - uid: 1299 - components: - - pos: 43.5,20.5 - parent: 1 - type: Transform - - uid: 1301 - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform - - uid: 1302 - components: - - pos: 31.5,-15.5 - parent: 1 - type: Transform - - uid: 1303 - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - uid: 1304 - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - uid: 1306 - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - uid: 1307 - components: - - pos: 30.5,-19.5 - parent: 1 - type: Transform - - uid: 1353 - components: - - pos: 33.5,-19.5 - parent: 1 - type: Transform - - uid: 1360 - components: - - pos: 33.5,-21.5 - parent: 1 - type: Transform - - uid: 1361 - components: - - pos: 33.5,-24.5 - parent: 1 - type: Transform - - uid: 1362 - components: - - pos: 34.5,-24.5 - parent: 1 - type: Transform - - uid: 1364 - components: - - pos: 36.5,-24.5 - parent: 1 - type: Transform - - uid: 1365 - components: - - pos: 37.5,-24.5 - parent: 1 - type: Transform - - uid: 1366 - components: - - pos: 37.5,-21.5 - parent: 1 - type: Transform - - uid: 1380 - components: - - pos: 42.5,-18.5 - parent: 1 - type: Transform - - uid: 1381 - components: - - pos: 43.5,-18.5 - parent: 1 - type: Transform - - uid: 1382 - components: - - pos: 44.5,-18.5 - parent: 1 - type: Transform - - uid: 1383 - components: - - pos: 45.5,-18.5 - parent: 1 - type: Transform - - uid: 1384 - components: - - pos: 46.5,-18.5 - parent: 1 - type: Transform - - uid: 1385 - components: - - pos: 46.5,-17.5 - parent: 1 - type: Transform - - uid: 1386 - components: - - pos: 46.5,-16.5 - parent: 1 - type: Transform - - uid: 1387 - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform - - uid: 1388 - components: - - pos: 46.5,-14.5 - parent: 1 - type: Transform - - uid: 1389 - components: - - pos: 46.5,-13.5 - parent: 1 - type: Transform - - uid: 1390 - components: - - pos: 46.5,-12.5 - parent: 1 - type: Transform - - uid: 1391 - components: - - pos: 46.5,-11.5 - parent: 1 - type: Transform - - uid: 1392 - components: - - pos: 46.5,-10.5 - parent: 1 - type: Transform - - uid: 1393 - components: - - pos: 46.5,-9.5 - parent: 1 - type: Transform - - uid: 1394 - components: - - pos: 46.5,-8.5 - parent: 1 - type: Transform - - uid: 1395 - components: - - pos: 46.5,-7.5 - parent: 1 - type: Transform - - uid: 1396 - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform - - uid: 1397 - components: - - pos: 46.5,-5.5 - parent: 1 - type: Transform - - uid: 1398 - components: - - pos: 46.5,-4.5 - parent: 1 - type: Transform - - uid: 1399 - components: - - pos: 45.5,-4.5 - parent: 1 - type: Transform - - uid: 1400 - components: - - pos: 44.5,-4.5 - parent: 1 - type: Transform - - uid: 1401 - components: - - pos: 43.5,-4.5 - parent: 1 - type: Transform - - uid: 1402 - components: - - pos: 42.5,-4.5 - parent: 1 - type: Transform - - uid: 1403 - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform - - uid: 1404 - components: - - pos: 43.5,-6.5 - parent: 1 - type: Transform - - uid: 1405 - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform - - uid: 1406 - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform - - uid: 1407 - components: - - pos: 45.5,-8.5 - parent: 1 - type: Transform - - uid: 1408 - components: - - pos: 44.5,-8.5 - parent: 1 - type: Transform - - uid: 1409 - components: - - pos: 43.5,-8.5 - parent: 1 - type: Transform - - uid: 1410 - components: - - pos: 42.5,-8.5 - parent: 1 - type: Transform - - uid: 1411 - components: - - pos: 42.5,-10.5 - parent: 1 - type: Transform - - uid: 1412 - components: - - pos: 43.5,-10.5 - parent: 1 - type: Transform - - uid: 1413 - components: - - pos: 44.5,-10.5 - parent: 1 - type: Transform - - uid: 1414 - components: - - pos: 45.5,-10.5 - parent: 1 - type: Transform - - uid: 1415 - components: - - pos: 45.5,-12.5 - parent: 1 - type: Transform - - uid: 1416 - components: - - pos: 44.5,-12.5 - parent: 1 - type: Transform - - uid: 1417 - components: - - pos: 43.5,-12.5 - parent: 1 - type: Transform - - uid: 1418 - components: - - pos: 42.5,-12.5 - parent: 1 - type: Transform - - uid: 1419 - components: - - pos: 42.5,-14.5 - parent: 1 - type: Transform - - uid: 1420 - components: - - pos: 43.5,-14.5 - parent: 1 - type: Transform - - uid: 1421 - components: - - pos: 44.5,-14.5 - parent: 1 - type: Transform - - uid: 1422 - components: - - pos: 45.5,-14.5 - parent: 1 - type: Transform - - uid: 1423 - components: - - pos: 45.5,-16.5 - parent: 1 - type: Transform - - uid: 1424 - components: - - pos: 44.5,-16.5 - parent: 1 - type: Transform - - uid: 1425 - components: - - pos: 43.5,-16.5 - parent: 1 - type: Transform - - uid: 1426 - components: - - pos: 42.5,-16.5 - parent: 1 - type: Transform - - uid: 1441 - components: - - pos: 6.5,-13.5 - parent: 1 - type: Transform - - uid: 1442 - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 1443 - components: - - pos: 4.5,-13.5 - parent: 1 - type: Transform - - uid: 1444 - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform - - uid: 1445 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - uid: 1446 - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - uid: 1447 - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - uid: 1448 - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform - - uid: 1449 - components: - - pos: 7.5,-13.5 - parent: 1 - type: Transform - - uid: 1450 - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform - - uid: 1451 - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform - - uid: 1452 - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform - - uid: 1456 - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform - - uid: 1457 - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform - - uid: 1459 - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform - - uid: 1460 - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform - - uid: 1477 - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - uid: 1478 - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - uid: 1479 - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform - - uid: 1480 - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform - - uid: 1481 - components: - - pos: 23.5,-19.5 - parent: 1 - type: Transform - - uid: 1482 - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - uid: 1483 - components: - - rot: 3.141592653589793 rad - pos: 28.5,-21.5 - parent: 1 - type: Transform - - uid: 1484 - components: - - pos: 23.5,-21.5 - parent: 1 - type: Transform - - uid: 1485 - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform - - uid: 1486 - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - uid: 1487 - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform - - uid: 1488 - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform - - uid: 1489 - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform - - uid: 1490 - components: - - pos: 27.5,-21.5 - parent: 1 - type: Transform - - uid: 1491 - components: - - pos: 27.5,-20.5 - parent: 1 - type: Transform - - uid: 1506 - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform - - uid: 1507 - components: - - pos: 4.5,-28.5 - parent: 1 - type: Transform - - uid: 1511 - components: - - pos: 3.5,-28.5 - parent: 1 - type: Transform - - uid: 1516 - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform - - uid: 1520 - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform - - uid: 1525 - components: - - pos: 23.5,-25.5 - parent: 1 - type: Transform - - uid: 1526 - components: - - pos: 23.5,-26.5 - parent: 1 - type: Transform - - uid: 1527 - components: - - pos: 23.5,-27.5 - parent: 1 - type: Transform - - uid: 1532 - components: - - pos: 23.5,-28.5 - parent: 1 - type: Transform - - uid: 1533 - components: - - pos: 22.5,-28.5 - parent: 1 - type: Transform - - uid: 1537 - components: - - pos: 18.5,-28.5 - parent: 1 - type: Transform - - uid: 1538 - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform - - uid: 1539 - components: - - pos: 16.5,-28.5 - parent: 1 - type: Transform - - uid: 1543 - components: - - pos: 9.5,-31.5 - parent: 1 - type: Transform - - uid: 1544 - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - uid: 1545 - components: - - pos: 9.5,-28.5 - parent: 1 - type: Transform - - uid: 1546 - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform - - uid: 1547 - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform - - uid: 1560 - components: - - pos: 27.5,-25.5 - parent: 1 - type: Transform - - uid: 1591 - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform - - uid: 1592 - components: - - pos: -6.5,-20.5 - parent: 1 - type: Transform - - uid: 1593 - components: - - pos: -6.5,-23.5 - parent: 1 - type: Transform - - uid: 1594 - components: - - pos: -6.5,-21.5 - parent: 1 - type: Transform - - uid: 1595 - components: - - pos: -6.5,-22.5 - parent: 1 - type: Transform - - uid: 1597 - components: - - pos: 9.5,20.5 - parent: 1 - type: Transform - - uid: 1601 - components: - - pos: -8.5,-23.5 - parent: 1 - type: Transform - - uid: 1602 - components: - - pos: -7.5,-23.5 - parent: 1 - type: Transform - - uid: 1603 - components: - - pos: -8.5,-20.5 - parent: 1 - type: Transform - - uid: 1605 - components: - - pos: -0.5,-30.5 - parent: 1 - type: Transform - - uid: 1607 - components: - - pos: -5.5,-31.5 - parent: 1 - type: Transform - - uid: 1609 - components: - - pos: -5.5,-33.5 - parent: 1 - type: Transform - - uid: 1610 - components: - - pos: -0.5,-34.5 - parent: 1 - type: Transform - - uid: 1613 - components: - - pos: -0.5,-33.5 - parent: 1 - type: Transform - - uid: 1615 - components: - - pos: -0.5,-35.5 - parent: 1 - type: Transform - - uid: 1616 - components: - - pos: -1.5,-35.5 - parent: 1 - type: Transform - - uid: 1620 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 1 - type: Transform - - uid: 1634 - components: - - pos: -1.5,-30.5 - parent: 1 - type: Transform - - uid: 1636 - components: - - pos: -3.5,-30.5 - parent: 1 - type: Transform - - uid: 1637 - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform - - uid: 1638 - components: - - pos: -5.5,-30.5 - parent: 1 - type: Transform - - uid: 1640 - components: - - pos: -7.5,-30.5 - parent: 1 - type: Transform - - uid: 1641 - components: - - pos: -8.5,-30.5 - parent: 1 - type: Transform - - uid: 1642 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 1 - type: Transform - - uid: 1643 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1 - type: Transform - - uid: 1652 - components: - - pos: -0.5,-31.5 - parent: 1 - type: Transform - - uid: 1653 - components: - - pos: -6.5,-30.5 - parent: 1 - type: Transform - - uid: 1655 - components: - - pos: -2.5,-30.5 - parent: 1 - type: Transform - - uid: 1656 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 1 - type: Transform - - uid: 1657 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 1 - type: Transform - - uid: 1658 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 1 - type: Transform - - uid: 1661 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 1 - type: Transform - - uid: 1662 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 1 - type: Transform - - uid: 1663 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 1 - type: Transform - - uid: 1664 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 1 - type: Transform - - uid: 1665 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 1 - type: Transform - - uid: 1670 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-28.5 - parent: 1 - type: Transform - - uid: 1678 - components: - - pos: 41.5,18.5 - parent: 1 - type: Transform - - uid: 1679 - components: - - pos: 40.5,18.5 - parent: 1 - type: Transform - - uid: 1680 - components: - - pos: -7.5,-21.5 - parent: 1 - type: Transform - - uid: 1681 - components: - - pos: 38.5,18.5 - parent: 1 - type: Transform - - uid: 1683 - components: - - pos: 38.5,20.5 - parent: 1 - type: Transform - - uid: 1684 - components: - - pos: 38.5,21.5 - parent: 1 - type: Transform - - uid: 1685 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,23.5 - parent: 1 - type: Transform - - uid: 1687 - components: - - pos: 38.5,24.5 - parent: 1 - type: Transform - - uid: 1713 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,25.5 - parent: 1 - type: Transform - - uid: 1726 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,30.5 - parent: 1 - type: Transform - - uid: 1727 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,30.5 - parent: 1 - type: Transform - - uid: 1748 - components: - - pos: 11.5,20.5 - parent: 1 - type: Transform - - uid: 1750 - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform - - uid: 1751 - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - uid: 1757 - components: - - pos: 31.5,23.5 - parent: 1 - type: Transform - - uid: 1758 - components: - - pos: 31.5,24.5 - parent: 1 - type: Transform - - uid: 1767 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,26.5 - parent: 1 - type: Transform - - uid: 1768 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,26.5 - parent: 1 - type: Transform - - uid: 1769 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 1 - type: Transform - - uid: 1770 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,25.5 - parent: 1 - type: Transform - - uid: 1771 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,27.5 - parent: 1 - type: Transform - - uid: 1772 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,27.5 - parent: 1 - type: Transform - - uid: 1773 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,27.5 - parent: 1 - type: Transform - - uid: 1779 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,27.5 - parent: 1 - type: Transform - - uid: 1781 - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform - - uid: 1782 - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - uid: 1787 - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform - - uid: 1821 - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform - - uid: 1822 - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform - - uid: 1823 - components: - - pos: -19.5,32.5 - parent: 1 - type: Transform - - uid: 1828 - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform - - uid: 1829 - components: - - pos: 10.5,22.5 - parent: 1 - type: Transform - - uid: 1830 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,30.5 - parent: 1 - type: Transform - - uid: 1960 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,28.5 - parent: 1 - type: Transform - - uid: 1963 - components: - - rot: 1.5707963267948966 rad - pos: -22.5,30.5 - parent: 1 - type: Transform - - uid: 1964 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,30.5 - parent: 1 - type: Transform - - uid: 1965 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,29.5 - parent: 1 - type: Transform - - uid: 1966 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,28.5 - parent: 1 - type: Transform - - uid: 1967 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,28.5 - parent: 1 - type: Transform - - uid: 1968 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,28.5 - parent: 1 - type: Transform - - uid: 1969 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,31.5 - parent: 1 - type: Transform - - uid: 1970 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,28.5 - parent: 1 - type: Transform - - uid: 1971 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,28.5 - parent: 1 - type: Transform - - uid: 1972 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,28.5 - parent: 1 - type: Transform - - uid: 1974 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,27.5 - parent: 1 - type: Transform - - uid: 1975 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,26.5 - parent: 1 - type: Transform - - uid: 1976 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,25.5 - parent: 1 - type: Transform - - uid: 1977 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,24.5 - parent: 1 - type: Transform - - uid: 1980 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,21.5 - parent: 1 - type: Transform - - uid: 1981 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,20.5 - parent: 1 - type: Transform - - uid: 1982 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - uid: 1983 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 1 - type: Transform - - uid: 1986 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,18.5 - parent: 1 - type: Transform - - uid: 2039 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 1 - type: Transform - - uid: 2040 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,18.5 - parent: 1 - type: Transform - - uid: 2041 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,17.5 - parent: 1 - type: Transform - - uid: 2042 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,19.5 - parent: 1 - type: Transform - - uid: 2043 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - type: Transform - - uid: 2044 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,21.5 - parent: 1 - type: Transform - - uid: 2047 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 1 - type: Transform - - uid: 2048 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - type: Transform - - uid: 2049 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,20.5 - parent: 1 - type: Transform - - uid: 2050 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - type: Transform - - uid: 2051 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,21.5 - parent: 1 - type: Transform - - uid: 2052 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,22.5 - parent: 1 - type: Transform - - uid: 2053 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 1 - type: Transform - - uid: 2054 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,23.5 - parent: 1 - type: Transform - - uid: 2055 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,24.5 - parent: 1 - type: Transform - - uid: 2056 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,24.5 - parent: 1 - type: Transform - - uid: 2058 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,24.5 - parent: 1 - type: Transform - - uid: 2059 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,24.5 - parent: 1 - type: Transform - - uid: 2060 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,24.5 - parent: 1 - type: Transform - - uid: 2061 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,24.5 - parent: 1 - type: Transform - - uid: 2062 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,24.5 - parent: 1 - type: Transform - - uid: 2063 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,20.5 - parent: 1 - type: Transform - - uid: 2064 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,20.5 - parent: 1 - type: Transform - - uid: 2065 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,20.5 - parent: 1 - type: Transform - - uid: 2066 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,20.5 - parent: 1 - type: Transform - - uid: 2077 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 1 - type: Transform - - uid: 2090 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform - - uid: 2091 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 1 - type: Transform - - uid: 2136 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - type: Transform - - uid: 2138 - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-7.5 - parent: 1 - type: Transform - - uid: 2154 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-21.5 - parent: 1 - type: Transform - - uid: 2157 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-28.5 - parent: 1 - type: Transform - - uid: 2161 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-28.5 - parent: 1 - type: Transform - - uid: 2164 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 1 - type: Transform - - uid: 2169 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 1 - type: Transform - - uid: 2173 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 1 - type: Transform - - uid: 2181 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 1 - type: Transform - - uid: 2218 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-13.5 - parent: 1 - type: Transform - - uid: 2220 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-21.5 - parent: 1 - type: Transform - - uid: 2222 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-21.5 - parent: 1 - type: Transform - - uid: 2223 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 1 - type: Transform - - uid: 2224 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-24.5 - parent: 1 - type: Transform - - uid: 2225 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 1 - type: Transform - - uid: 2226 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 1 - type: Transform - - uid: 2227 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 1 - type: Transform - - uid: 2228 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-21.5 - parent: 1 - type: Transform - - uid: 2229 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 1 - type: Transform - - uid: 2230 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 1 - type: Transform - - uid: 2231 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 1 - type: Transform - - uid: 2232 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 1 - type: Transform - - uid: 2236 - components: - - pos: -42.5,-13.5 - parent: 1 - type: Transform - - uid: 2240 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 1 - type: Transform - - uid: 2241 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-22.5 - parent: 1 - type: Transform - - uid: 2242 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-23.5 - parent: 1 - type: Transform - - uid: 2243 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 1 - type: Transform - - uid: 2244 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 1 - type: Transform - - uid: 2245 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-26.5 - parent: 1 - type: Transform - - uid: 2246 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-26.5 - parent: 1 - type: Transform - - uid: 2247 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 - parent: 1 - type: Transform - - uid: 2248 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 1 - type: Transform - - uid: 2249 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-26.5 - parent: 1 - type: Transform - - uid: 2250 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-27.5 - parent: 1 - type: Transform - - uid: 2264 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-24.5 - parent: 1 - type: Transform - - uid: 2271 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 1 - type: Transform - - uid: 2273 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-22.5 - parent: 1 - type: Transform - - uid: 2274 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-23.5 - parent: 1 - type: Transform - - uid: 2275 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-23.5 - parent: 1 - type: Transform - - uid: 2276 - components: - - rot: 3.141592653589793 rad - pos: -36.5,-22.5 - parent: 1 - type: Transform - - uid: 2278 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,26.5 - parent: 1 - type: Transform - - uid: 2297 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,31.5 - parent: 1 - type: Transform - - uid: 2299 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,29.5 - parent: 1 - type: Transform - - uid: 2300 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,31.5 - parent: 1 - type: Transform - - uid: 2301 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,29.5 - parent: 1 - type: Transform - - uid: 2305 - components: - - pos: 39.5,24.5 - parent: 1 - type: Transform - - uid: 2306 - components: - - pos: 40.5,24.5 - parent: 1 - type: Transform - - uid: 2307 - components: - - pos: 41.5,24.5 - parent: 1 - type: Transform - - uid: 2308 - components: - - pos: 42.5,24.5 - parent: 1 - type: Transform - - uid: 2309 - components: - - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 1 - type: Transform - - uid: 2311 - components: - - pos: 8.5,34.5 - parent: 1 - type: Transform - - uid: 2312 - components: - - pos: 7.5,34.5 - parent: 1 - type: Transform - - uid: 2313 - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform - - uid: 2316 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,34.5 - parent: 1 - type: Transform - - uid: 2317 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,34.5 - parent: 1 - type: Transform - - uid: 2318 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,34.5 - parent: 1 - type: Transform - - uid: 2319 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,34.5 - parent: 1 - type: Transform - - uid: 2324 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 1 - type: Transform - - uid: 2326 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,35.5 - parent: 1 - type: Transform - - uid: 2327 - components: - - rot: 1.5707963267948966 rad - pos: 38.5,36.5 - parent: 1 - type: Transform - - uid: 2329 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,36.5 - parent: 1 - type: Transform - - uid: 2330 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,35.5 - parent: 1 - type: Transform - - uid: 2360 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 1 - type: Transform - - uid: 2361 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - uid: 2362 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,24.5 - parent: 1 - type: Transform - - uid: 2368 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - type: Transform - - uid: 2370 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,24.5 - parent: 1 - type: Transform - - uid: 2371 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 2372 - components: - - rot: -1.5707963267948966 rad - pos: 12.5,22.5 - parent: 1 - type: Transform - - uid: 2373 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,22.5 - parent: 1 - type: Transform - - uid: 2379 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,22.5 - parent: 1 - type: Transform - - uid: 2381 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,23.5 - parent: 1 - type: Transform - - uid: 2422 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,34.5 - parent: 1 - type: Transform - - uid: 2427 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,26.5 - parent: 1 - type: Transform - - uid: 2428 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,27.5 - parent: 1 - type: Transform - - uid: 2429 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,27.5 - parent: 1 - type: Transform - - uid: 2430 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - type: Transform - - uid: 2434 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,28.5 - parent: 1 - type: Transform - - uid: 2435 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - uid: 2436 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - type: Transform - - uid: 2437 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-14.5 - parent: 1 - type: Transform - - uid: 2439 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-15.5 - parent: 1 - type: Transform - - uid: 2440 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-21.5 - parent: 1 - type: Transform - - uid: 2443 - components: - - rot: 3.141592653589793 rad - pos: -44.5,-20.5 - parent: 1 - type: Transform - - uid: 2444 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-21.5 - parent: 1 - type: Transform - - uid: 2654 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,44.5 - parent: 1 - type: Transform - - uid: 2655 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,43.5 - parent: 1 - type: Transform - - uid: 2656 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,44.5 - parent: 1 - type: Transform - - uid: 2657 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,45.5 - parent: 1 - type: Transform - - uid: 2658 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform - - uid: 2660 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,43.5 - parent: 1 - type: Transform - - uid: 2661 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,47.5 - parent: 1 - type: Transform - - uid: 2663 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,43.5 - parent: 1 - type: Transform - - uid: 2664 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,46.5 - parent: 1 - type: Transform - - uid: 2665 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 1 - type: Transform - - uid: 2666 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 1 - type: Transform - - uid: 2667 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,49.5 - parent: 1 - type: Transform - - uid: 2668 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,47.5 - parent: 1 - type: Transform - - uid: 2669 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,43.5 - parent: 1 - type: Transform - - uid: 2670 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,47.5 - parent: 1 - type: Transform - - uid: 2671 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,47.5 - parent: 1 - type: Transform - - uid: 2672 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,43.5 - parent: 1 - type: Transform - - uid: 2673 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,43.5 - parent: 1 - type: Transform - - uid: 2674 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - uid: 2676 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,46.5 - parent: 1 - type: Transform - - uid: 2677 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,43.5 - parent: 1 - type: Transform - - uid: 2678 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,43.5 - parent: 1 - type: Transform - - uid: 2679 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,43.5 - parent: 1 - type: Transform - - uid: 2680 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 1 - type: Transform - - uid: 2681 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,44.5 - parent: 1 - type: Transform - - uid: 2682 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,45.5 - parent: 1 - type: Transform - - uid: 2683 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,46.5 - parent: 1 - type: Transform - - uid: 2684 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,47.5 - parent: 1 - type: Transform - - uid: 2686 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,47.5 - parent: 1 - type: Transform - - uid: 2687 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,47.5 - parent: 1 - type: Transform - - uid: 2692 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 1 - type: Transform - - uid: 2693 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,50.5 - parent: 1 - type: Transform - - uid: 2694 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,51.5 - parent: 1 - type: Transform - - uid: 2695 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - type: Transform - - uid: 2696 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,54.5 - parent: 1 - type: Transform - - uid: 2697 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,53.5 - parent: 1 - type: Transform - - uid: 2698 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,54.5 - parent: 1 - type: Transform - - uid: 2699 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,53.5 - parent: 1 - type: Transform - - uid: 2700 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,47.5 - parent: 1 - type: Transform - - uid: 2701 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,47.5 - parent: 1 - type: Transform - - uid: 2702 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 1 - type: Transform - - uid: 2703 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,51.5 - parent: 1 - type: Transform - - uid: 2704 - components: - - pos: -12.5,52.5 - parent: 1 - type: Transform - - uid: 2705 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,53.5 - parent: 1 - type: Transform - - uid: 2706 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,54.5 - parent: 1 - type: Transform - - uid: 2707 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,55.5 - parent: 1 - type: Transform - - uid: 2708 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,56.5 - parent: 1 - type: Transform - - uid: 2709 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,56.5 - parent: 1 - type: Transform - - uid: 2710 - components: - - rot: -1.5707963267948966 rad - pos: -10.5,57.5 - parent: 1 - type: Transform - - uid: 2711 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,57.5 - parent: 1 - type: Transform - - uid: 2712 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,57.5 - parent: 1 - type: Transform - - uid: 2713 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,57.5 - parent: 1 - type: Transform - - uid: 2714 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,57.5 - parent: 1 - type: Transform - - uid: 2715 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,57.5 - parent: 1 - type: Transform - - uid: 2716 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,57.5 - parent: 1 - type: Transform - - uid: 2717 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,57.5 - parent: 1 - type: Transform - - uid: 2718 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,57.5 - parent: 1 - type: Transform - - uid: 2719 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,56.5 - parent: 1 - type: Transform - - uid: 2720 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,56.5 - parent: 1 - type: Transform - - uid: 2721 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,55.5 - parent: 1 - type: Transform - - uid: 2722 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,54.5 - parent: 1 - type: Transform - - uid: 2723 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,53.5 - parent: 1 - type: Transform - - uid: 2724 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,48.5 - parent: 1 - type: Transform - - uid: 2725 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,51.5 - parent: 1 - type: Transform - - uid: 2726 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - uid: 2727 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,49.5 - parent: 1 - type: Transform - - uid: 2728 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 1 - type: Transform - - uid: 2729 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,48.5 - parent: 1 - type: Transform - - uid: 2730 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,48.5 - parent: 1 - type: Transform - - uid: 2731 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,48.5 - parent: 1 - type: Transform - - uid: 2732 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,56.5 - parent: 1 - type: Transform - - uid: 2733 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,55.5 - parent: 1 - type: Transform - - uid: 2734 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,54.5 - parent: 1 - type: Transform - - uid: 2735 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,53.5 - parent: 1 - type: Transform - - uid: 2736 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,52.5 - parent: 1 - type: Transform - - uid: 2737 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,51.5 - parent: 1 - type: Transform - - uid: 2738 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,50.5 - parent: 1 - type: Transform - - uid: 2739 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,49.5 - parent: 1 - type: Transform - - uid: 2740 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,56.5 - parent: 1 - type: Transform - - uid: 2741 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,56.5 - parent: 1 - type: Transform - - uid: 2742 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,56.5 - parent: 1 - type: Transform - - uid: 2743 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,56.5 - parent: 1 - type: Transform - - uid: 2744 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,56.5 - parent: 1 - type: Transform - - uid: 2745 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,48.5 - parent: 1 - type: Transform - - uid: 2746 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,48.5 - parent: 1 - type: Transform - - uid: 2747 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,48.5 - parent: 1 - type: Transform - - uid: 2969 - components: - - pos: -24.5,-28.5 - parent: 1 - type: Transform - - uid: 2985 - components: - - pos: -21.5,-30.5 - parent: 1 - type: Transform - - uid: 2986 - components: - - pos: -24.5,-30.5 - parent: 1 - type: Transform - - uid: 2987 - components: - - pos: -5.5,-35.5 - parent: 1 - type: Transform - - uid: 2994 - components: - - pos: -5.5,-34.5 - parent: 1 - type: Transform - - uid: 2996 - components: - - pos: -8.5,-34.5 - parent: 1 - type: Transform - - uid: 2997 - components: - - pos: -8.5,-33.5 - parent: 1 - type: Transform - - uid: 3000 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 1 - type: Transform - - uid: 3002 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-34.5 - parent: 1 - type: Transform - - uid: 3003 - components: - - pos: -2.5,-35.5 - parent: 1 - type: Transform - - uid: 3004 - components: - - pos: -3.5,-35.5 - parent: 1 - type: Transform - - uid: 3005 - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform - - uid: 3072 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-13.5 - parent: 1 - type: Transform - - uid: 3080 - components: - - rot: 3.141592653589793 rad - pos: -43.5,-25.5 - parent: 1 - type: Transform - - uid: 3081 - components: - - rot: 3.141592653589793 rad - pos: -42.5,-25.5 - parent: 1 - type: Transform - - uid: 3082 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-25.5 - parent: 1 - type: Transform - - uid: 3083 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-25.5 - parent: 1 - type: Transform - - uid: 3084 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 1 - type: Transform - - uid: 3085 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-25.5 - parent: 1 - type: Transform - - uid: 3086 - components: - - rot: 3.141592653589793 rad - pos: -38.5,-24.5 - parent: 1 - type: Transform - - uid: 3087 - components: - - rot: 3.141592653589793 rad - pos: -37.5,-24.5 - parent: 1 - type: Transform - - uid: 3352 - components: - - rot: 3.141592653589793 rad - pos: 29.5,-21.5 - parent: 1 - type: Transform - - uid: 3353 - components: - - rot: 3.141592653589793 rad - pos: 30.5,-21.5 - parent: 1 - type: Transform - - uid: 3622 - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform - - uid: 3623 - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform - - uid: 3624 - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - uid: 3625 - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform - - uid: 3626 - components: - - pos: 4.5,47.5 - parent: 1 - type: Transform - - uid: 3627 - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform - - uid: 3628 - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform - - uid: 3629 - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform - - uid: 3630 - components: - - pos: 5.5,50.5 - parent: 1 - type: Transform - - uid: 3631 - components: - - pos: 5.5,51.5 - parent: 1 - type: Transform - - uid: 3632 - components: - - pos: 5.5,52.5 - parent: 1 - type: Transform - - uid: 3633 - components: - - pos: 5.5,53.5 - parent: 1 - type: Transform - - uid: 3634 - components: - - pos: 5.5,54.5 - parent: 1 - type: Transform - - uid: 3635 - components: - - pos: 5.5,55.5 - parent: 1 - type: Transform - - uid: 3636 - components: - - pos: 5.5,56.5 - parent: 1 - type: Transform - - uid: 3637 - components: - - pos: 5.5,57.5 - parent: 1 - type: Transform - - uid: 3638 - components: - - pos: 4.5,57.5 - parent: 1 - type: Transform - - uid: 3639 - components: - - pos: 3.5,57.5 - parent: 1 - type: Transform - - uid: 3640 - components: - - pos: 2.5,57.5 - parent: 1 - type: Transform - - uid: 3641 - components: - - pos: 1.5,57.5 - parent: 1 - type: Transform - - uid: 3642 - components: - - pos: 0.5,57.5 - parent: 1 - type: Transform - - uid: 3643 - components: - - pos: -0.5,57.5 - parent: 1 - type: Transform - - uid: 3644 - components: - - pos: -1.5,57.5 - parent: 1 - type: Transform - - uid: 3645 - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform - - uid: 3646 - components: - - pos: -2.5,58.5 - parent: 1 - type: Transform - - uid: 3647 - components: - - pos: -3.5,58.5 - parent: 1 - type: Transform - - uid: 3648 - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform - - uid: 3649 - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform - - uid: 3650 - components: - - pos: -6.5,58.5 - parent: 1 - type: Transform - - uid: 3651 - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform - - uid: 3652 - components: - - pos: -8.5,58.5 - parent: 1 - type: Transform - - uid: 3653 - components: - - pos: -9.5,58.5 - parent: 1 - type: Transform - - uid: 3654 - components: - - pos: -10.5,58.5 - parent: 1 - type: Transform - - uid: 3655 - components: - - pos: -11.5,58.5 - parent: 1 - type: Transform - - uid: 3656 - components: - - pos: -11.5,57.5 - parent: 1 - type: Transform - - uid: 3657 - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - uid: 3658 - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform - - uid: 3659 - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - uid: 3660 - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform - - uid: 3661 - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform - - uid: 3663 - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - uid: 3664 - components: - - pos: -12.5,50.5 - parent: 1 - type: Transform - - uid: 3665 - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform - - uid: 3666 - components: - - pos: -12.5,48.5 - parent: 1 - type: Transform - - uid: 3667 - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform - - uid: 3668 - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform - - uid: 3669 - components: - - pos: -11.5,46.5 - parent: 1 - type: Transform - - uid: 3847 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,32.5 - parent: 1 - type: Transform - - uid: 3849 - components: - - pos: 30.5,32.5 - parent: 1 - type: Transform - - uid: 4808 - components: - - pos: 43.5,24.5 - parent: 1 - type: Transform - - uid: 4811 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,23.5 - parent: 1 - type: Transform - - uid: 4812 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,23.5 - parent: 1 - type: Transform - - uid: 4813 - components: - - rot: 1.5707963267948966 rad - pos: 48.5,21.5 - parent: 1 - type: Transform - - uid: 4814 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,21.5 - parent: 1 - type: Transform - - uid: 4819 - components: - - pos: 47.5,24.5 - parent: 1 - type: Transform - - uid: 4832 - components: - - pos: 47.5,29.5 - parent: 1 - type: Transform - - uid: 4840 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,34.5 - parent: 1 - type: Transform - - uid: 4863 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,35.5 - parent: 1 - type: Transform - - uid: 4871 - components: - - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - type: Transform - - uid: 4872 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,35.5 - parent: 1 - type: Transform - - uid: 4880 - components: - - rot: 1.5707963267948966 rad - pos: 47.5,30.5 - parent: 1 - type: Transform - - uid: 5548 - components: - - pos: -42.5,-12.5 - parent: 1 - type: Transform - - uid: 5859 - components: - - pos: -23.5,-30.5 - parent: 1 - type: Transform - - uid: 5860 - components: - - pos: -20.5,-30.5 - parent: 1 - type: Transform - - uid: 5861 - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform - - uid: 6823 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 1 - type: Transform - - uid: 6987 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 1 - type: Transform - - uid: 6989 - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 1 - type: Transform - - uid: 7070 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-34.5 - parent: 1 - type: Transform - - uid: 7071 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 1 - type: Transform - - uid: 7072 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 1 - type: Transform - - uid: 7656 - components: - - pos: 12.5,34.5 - parent: 1 - type: Transform - - uid: 8260 - components: - - pos: -11.5,52.5 - parent: 1 - type: Transform - - uid: 9198 - components: - - rot: -1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform - - uid: 9663 - components: - - pos: -19.5,31.5 - parent: 1 - type: Transform - - uid: 10647 - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform - - uid: 12292 - components: - - rot: 3.141592653589793 rad - pos: -1.5,63.5 - parent: 1 - type: Transform - - uid: 12293 - components: - - rot: 3.141592653589793 rad - pos: -1.5,64.5 - parent: 1 - type: Transform - - uid: 12294 - components: - - rot: 3.141592653589793 rad - pos: -2.5,64.5 - parent: 1 - type: Transform - - uid: 12295 - components: - - rot: 3.141592653589793 rad - pos: -2.5,65.5 - parent: 1 - type: Transform - - uid: 12296 - components: - - rot: 3.141592653589793 rad - pos: -2.5,66.5 - parent: 1 - type: Transform - - uid: 12297 - components: - - rot: 3.141592653589793 rad - pos: -1.5,67.5 - parent: 1 - type: Transform - - uid: 12298 - components: - - rot: 3.141592653589793 rad - pos: -0.5,67.5 - parent: 1 - type: Transform - - uid: 12299 - components: - - rot: 3.141592653589793 rad - pos: 0.5,67.5 - parent: 1 - type: Transform - - uid: 12300 - components: - - rot: 3.141592653589793 rad - pos: 1.5,66.5 - parent: 1 - type: Transform - - uid: 12301 - components: - - rot: 3.141592653589793 rad - pos: 1.5,65.5 - parent: 1 - type: Transform - - uid: 12302 - components: - - rot: 3.141592653589793 rad - pos: 1.5,64.5 - parent: 1 - type: Transform - - uid: 12303 - components: - - rot: 3.141592653589793 rad - pos: 0.5,64.5 - parent: 1 - type: Transform - - uid: 12304 - components: - - rot: 3.141592653589793 rad - pos: 0.5,63.5 - parent: 1 - type: Transform - - uid: 12305 - components: - - rot: 3.141592653589793 rad - pos: -0.5,63.5 - parent: 1 - type: Transform - - uid: 12306 - components: - - rot: 3.141592653589793 rad - pos: -1.5,66.5 - parent: 1 - type: Transform - - uid: 12307 - components: - - rot: 3.141592653589793 rad - pos: 0.5,66.5 - parent: 1 - type: Transform - - uid: 12553 - components: - - rot: 3.141592653589793 rad - pos: -0.5,25.5 - parent: 1 - type: Transform -- proto: WallSolid - entities: - - uid: 2 - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform - - uid: 3 - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform - - uid: 4 - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform - - uid: 5 - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - uid: 6 - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform - - uid: 7 - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform - - uid: 8 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 9 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 10 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 11 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 12 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 13 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 14 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 15 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 16 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 17 - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform - - uid: 18 - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform - - uid: 19 - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 20 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - uid: 21 - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform - - uid: 22 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 35 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 36 - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 38 - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform - - uid: 44 - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform - - uid: 48 - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 52 - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 54 - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform - - uid: 55 - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform - - uid: 68 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 69 - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform - - uid: 70 - components: - - pos: -3.5,10.5 - parent: 1 - type: Transform - - uid: 71 - components: - - pos: 6.5,10.5 - parent: 1 - type: Transform - - uid: 72 - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform - - uid: 93 - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - uid: 94 - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform - - uid: 103 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - type: Transform - - uid: 149 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 150 - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform - - uid: 151 - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform - - uid: 157 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - uid: 158 - components: - - pos: -9.5,19.5 - parent: 1 - type: Transform - - uid: 172 - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform - - uid: 175 - components: - - pos: -7.5,7.5 - parent: 1 - type: Transform - - uid: 192 - components: - - pos: -27.5,13.5 - parent: 1 - type: Transform - - uid: 216 - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - uid: 218 - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - uid: 221 - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - uid: 222 - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform - - uid: 223 - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform - - uid: 224 - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - uid: 227 - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - uid: 235 - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform - - uid: 256 - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform - - uid: 257 - components: - - pos: -25.5,12.5 - parent: 1 - type: Transform - - uid: 258 - components: - - pos: -26.5,12.5 - parent: 1 - type: Transform - - uid: 259 - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform - - uid: 271 - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform - - uid: 272 - components: - - pos: -30.5,4.5 - parent: 1 - type: Transform - - uid: 277 - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform - - uid: 278 - components: - - pos: -30.5,7.5 - parent: 1 - type: Transform - - uid: 279 - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform - - uid: 280 - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - uid: 281 - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform - - uid: 282 - components: - - pos: -30.5,11.5 - parent: 1 - type: Transform - - uid: 283 - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform - - uid: 284 - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform - - uid: 285 - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform - - uid: 286 - components: - - pos: -24.5,17.5 - parent: 1 - type: Transform - - uid: 287 - components: - - pos: -25.5,17.5 - parent: 1 - type: Transform - - uid: 288 - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform - - uid: 289 - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform - - uid: 290 - components: - - pos: -27.5,16.5 - parent: 1 - type: Transform - - uid: 291 - components: - - pos: -27.5,15.5 - parent: 1 - type: Transform - - uid: 292 - components: - - pos: -27.5,14.5 - parent: 1 - type: Transform - - uid: 293 - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform - - uid: 294 - components: - - pos: -27.5,11.5 - parent: 1 - type: Transform - - uid: 295 - components: - - pos: -27.5,9.5 - parent: 1 - type: Transform - - uid: 296 - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform - - uid: 297 - components: - - pos: -9.5,20.5 - parent: 1 - type: Transform - - uid: 298 - components: - - pos: -9.5,21.5 - parent: 1 - type: Transform - - uid: 299 - components: - - pos: -9.5,22.5 - parent: 1 - type: Transform - - uid: 300 - components: - - pos: -10.5,22.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: -11.5,22.5 - parent: 1 - type: Transform - - uid: 302 - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform - - uid: 303 - components: - - pos: -18.5,21.5 - parent: 1 - type: Transform - - uid: 304 - components: - - pos: -14.5,22.5 - parent: 1 - type: Transform - - uid: 305 - components: - - pos: -15.5,22.5 - parent: 1 - type: Transform - - uid: 306 - components: - - pos: -16.5,22.5 - parent: 1 - type: Transform - - uid: 307 - components: - - pos: -17.5,22.5 - parent: 1 - type: Transform - - uid: 308 - components: - - pos: -18.5,22.5 - parent: 1 - type: Transform - - uid: 309 - components: - - pos: -18.5,20.5 - parent: 1 - type: Transform - - uid: 310 - components: - - pos: -18.5,19.5 - parent: 1 - type: Transform - - uid: 311 - components: - - pos: -18.5,18.5 - parent: 1 - type: Transform - - uid: 407 - components: - - rot: 1.5707963267948966 rad - pos: 9.5,16.5 - parent: 1 - type: Transform - - uid: 417 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,27.5 - parent: 1 - type: Transform - - uid: 418 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,26.5 - parent: 1 - type: Transform - - uid: 419 - components: - - rot: -1.5707963267948966 rad - pos: -14.5,26.5 - parent: 1 - type: Transform - - uid: 421 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,26.5 - parent: 1 - type: Transform - - uid: 435 - components: - - pos: -14.5,23.5 - parent: 1 - type: Transform - - uid: 436 - components: - - pos: -18.5,23.5 - parent: 1 - type: Transform - - uid: 443 - components: - - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 1 - type: Transform - - uid: 444 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 456 - components: - - rot: 3.141592653589793 rad - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 459 - components: - - rot: 3.141592653589793 rad - pos: -15.5,0.5 - parent: 1 - type: Transform - - uid: 461 - components: - - rot: 3.141592653589793 rad - pos: -16.5,0.5 - parent: 1 - type: Transform - - uid: 462 - components: - - rot: 3.141592653589793 rad - pos: -17.5,0.5 - parent: 1 - type: Transform - - uid: 463 - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - uid: 464 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-4.5 - parent: 1 - type: Transform - - uid: 465 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 1 - type: Transform - - uid: 466 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-7.5 - parent: 1 - type: Transform - - uid: 468 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-12.5 - parent: 1 - type: Transform - - uid: 469 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform - - uid: 470 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-10.5 - parent: 1 - type: Transform - - uid: 472 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 1 - type: Transform - - uid: 475 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 1 - type: Transform - - uid: 476 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 1 - type: Transform - - uid: 486 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-4.5 - parent: 1 - type: Transform - - uid: 495 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-12.5 - parent: 1 - type: Transform - - uid: 496 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-14.5 - parent: 1 - type: Transform - - uid: 497 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-15.5 - parent: 1 - type: Transform - - uid: 498 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 1 - type: Transform - - uid: 499 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-14.5 - parent: 1 - type: Transform - - uid: 500 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-8.5 - parent: 1 - type: Transform - - uid: 501 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform - - uid: 502 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 505 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-10.5 - parent: 1 - type: Transform - - uid: 506 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-11.5 - parent: 1 - type: Transform - - uid: 507 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 1 - type: Transform - - uid: 508 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 1 - type: Transform - - uid: 509 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-16.5 - parent: 1 - type: Transform - - uid: 510 - components: - - rot: 3.141592653589793 rad - pos: -12.5,-16.5 - parent: 1 - type: Transform - - uid: 511 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 1 - type: Transform - - uid: 512 - components: - - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 1 - type: Transform - - uid: 513 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-16.5 - parent: 1 - type: Transform - - uid: 514 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 515 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 1 - type: Transform - - uid: 516 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-16.5 - parent: 1 - type: Transform - - uid: 517 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-16.5 - parent: 1 - type: Transform - - uid: 518 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-16.5 - parent: 1 - type: Transform - - uid: 519 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 566 - components: - - rot: 3.141592653589793 rad - pos: -18.5,0.5 - parent: 1 - type: Transform - - uid: 576 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 1 - type: Transform - - uid: 604 - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform - - uid: 632 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-17.5 - parent: 1 - type: Transform - - uid: 633 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-18.5 - parent: 1 - type: Transform - - uid: 634 - components: - - rot: 3.141592653589793 rad - pos: -21.5,-19.5 - parent: 1 - type: Transform - - uid: 635 - components: - - rot: 3.141592653589793 rad - pos: -20.5,-19.5 - parent: 1 - type: Transform - - uid: 636 - components: - - rot: 3.141592653589793 rad - pos: -19.5,-19.5 - parent: 1 - type: Transform - - uid: 637 - components: - - rot: 3.141592653589793 rad - pos: -18.5,-19.5 - parent: 1 - type: Transform - - uid: 638 - components: - - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 1 - type: Transform - - uid: 639 - components: - - rot: 3.141592653589793 rad - pos: -16.5,-19.5 - parent: 1 - type: Transform - - uid: 640 - components: - - rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 1 - type: Transform - - uid: 641 - components: - - rot: 3.141592653589793 rad - pos: -14.5,-19.5 - parent: 1 - type: Transform - - uid: 642 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 1 - type: Transform - - uid: 643 - components: - - rot: 3.141592653589793 rad - pos: -13.5,-18.5 - parent: 1 - type: Transform - - uid: 745 - components: - - rot: 3.141592653589793 rad - pos: 7.5,18.5 - parent: 1 - type: Transform - - uid: 746 - components: - - rot: 3.141592653589793 rad - pos: 9.5,18.5 - parent: 1 - type: Transform - - uid: 747 - components: - - rot: 3.141592653589793 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - uid: 813 - components: - - pos: 30.5,4.5 - parent: 1 - type: Transform - - uid: 815 - components: - - pos: 32.5,4.5 - parent: 1 - type: Transform - - uid: 816 - components: - - pos: 33.5,4.5 - parent: 1 - type: Transform - - uid: 817 - components: - - pos: 34.5,4.5 - parent: 1 - type: Transform - - uid: 818 - components: - - pos: 35.5,4.5 - parent: 1 - type: Transform - - uid: 869 - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - uid: 871 - components: - - pos: 25.5,17.5 - parent: 1 - type: Transform - - uid: 879 - components: - - pos: 36.5,4.5 - parent: 1 - type: Transform - - uid: 880 - components: - - pos: 37.5,4.5 - parent: 1 - type: Transform - - uid: 881 - components: - - pos: 37.5,5.5 - parent: 1 - type: Transform - - uid: 882 - components: - - pos: 38.5,5.5 - parent: 1 - type: Transform - - uid: 883 - components: - - pos: 39.5,5.5 - parent: 1 - type: Transform - - uid: 884 - components: - - pos: 40.5,5.5 - parent: 1 - type: Transform - - uid: 885 - components: - - pos: 41.5,5.5 - parent: 1 - type: Transform - - uid: 886 - components: - - pos: 42.5,5.5 - parent: 1 - type: Transform - - uid: 985 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform - - uid: 986 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-18.5 - parent: 1 - type: Transform - - uid: 987 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 1 - type: Transform - - uid: 988 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-18.5 - parent: 1 - type: Transform - - uid: 989 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,0.5 - parent: 1 - type: Transform - - uid: 990 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1 - type: Transform - - uid: 991 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-18.5 - parent: 1 - type: Transform - - uid: 992 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-18.5 - parent: 1 - type: Transform - - uid: 993 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - - uid: 994 - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform - - uid: 995 - components: - - rot: 3.141592653589793 rad - pos: 18.5,0.5 - parent: 1 - type: Transform - - uid: 997 - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform - - uid: 998 - components: - - pos: 21.5,0.5 - parent: 1 - type: Transform - - uid: 999 - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - uid: 1000 - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - uid: 1001 - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform - - uid: 1002 - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform - - uid: 1003 - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - uid: 1004 - components: - - pos: 27.5,0.5 - parent: 1 - type: Transform - - uid: 1005 - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform - - uid: 1006 - components: - - pos: 29.5,0.5 - parent: 1 - type: Transform - - uid: 1008 - components: - - pos: 31.5,0.5 - parent: 1 - type: Transform - - uid: 1009 - components: - - pos: 32.5,0.5 - parent: 1 - type: Transform - - uid: 1010 - components: - - pos: 33.5,0.5 - parent: 1 - type: Transform - - uid: 1011 - components: - - pos: 34.5,0.5 - parent: 1 - type: Transform - - uid: 1012 - components: - - pos: 35.5,0.5 - parent: 1 - type: Transform - - uid: 1013 - components: - - pos: 36.5,0.5 - parent: 1 - type: Transform - - uid: 1014 - components: - - pos: 37.5,0.5 - parent: 1 - type: Transform - - uid: 1015 - components: - - pos: 38.5,0.5 - parent: 1 - type: Transform - - uid: 1016 - components: - - pos: 39.5,0.5 - parent: 1 - type: Transform - - uid: 1017 - components: - - pos: 40.5,0.5 - parent: 1 - type: Transform - - uid: 1018 - components: - - pos: 41.5,0.5 - parent: 1 - type: Transform - - uid: 1019 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - uid: 1020 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - uid: 1022 - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - - uid: 1023 - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform - - uid: 1025 - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform - - uid: 1026 - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform - - uid: 1027 - components: - - pos: 19.5,-2.5 - parent: 1 - type: Transform - - uid: 1028 - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform - - uid: 1032 - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform - - uid: 1033 - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform - - uid: 1034 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 1 - type: Transform - - uid: 1036 - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - uid: 1038 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 1 - type: Transform - - uid: 1039 - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform - - uid: 1040 - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform - - uid: 1041 - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform - - uid: 1042 - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform - - uid: 1043 - components: - - pos: 7.5,-10.5 - parent: 1 - type: Transform - - uid: 1044 - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform - - uid: 1045 - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform - - uid: 1046 - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform - - uid: 1050 - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - uid: 1051 - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform - - uid: 1054 - components: - - pos: 10.5,-11.5 - parent: 1 - type: Transform - - uid: 1055 - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform - - uid: 1056 - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform - - uid: 1057 - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform - - uid: 1058 - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform - - uid: 1060 - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform - - uid: 1065 - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform - - uid: 1083 - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform - - uid: 1090 - components: - - pos: 21.5,-2.5 - parent: 1 - type: Transform - - uid: 1091 - components: - - pos: 22.5,-2.5 - parent: 1 - type: Transform - - uid: 1092 - components: - - pos: 23.5,-2.5 - parent: 1 - type: Transform - - uid: 1221 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,18.5 - parent: 1 - type: Transform - - uid: 1230 - components: - - pos: 43.5,4.5 - parent: 1 - type: Transform - - uid: 1231 - components: - - pos: 43.5,5.5 - parent: 1 - type: Transform - - uid: 1232 - components: - - pos: 43.5,6.5 - parent: 1 - type: Transform - - uid: 1233 - components: - - pos: 43.5,7.5 - parent: 1 - type: Transform - - uid: 1234 - components: - - pos: 43.5,8.5 - parent: 1 - type: Transform - - uid: 1235 - components: - - pos: 43.5,9.5 - parent: 1 - type: Transform - - uid: 1236 - components: - - pos: 43.5,10.5 - parent: 1 - type: Transform - - uid: 1237 - components: - - pos: 43.5,11.5 - parent: 1 - type: Transform - - uid: 1238 - components: - - pos: 43.5,12.5 - parent: 1 - type: Transform - - uid: 1239 - components: - - pos: 43.5,13.5 - parent: 1 - type: Transform - - uid: 1240 - components: - - pos: 43.5,14.5 - parent: 1 - type: Transform - - uid: 1242 - components: - - pos: 43.5,16.5 - parent: 1 - type: Transform - - uid: 1243 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,17.5 - parent: 1 - type: Transform - - uid: 1248 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,0.5 - parent: 1 - type: Transform - - uid: 1249 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 1 - type: Transform - - uid: 1453 - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform - - uid: 1455 - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform - - uid: 1462 - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform - - uid: 1463 - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform - - uid: 1464 - components: - - pos: 12.5,-17.5 - parent: 1 - type: Transform - - uid: 1465 - components: - - pos: 12.5,-18.5 - parent: 1 - type: Transform - - uid: 1466 - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform - - uid: 1467 - components: - - pos: 13.5,-19.5 - parent: 1 - type: Transform - - uid: 1468 - components: - - pos: 14.5,-19.5 - parent: 1 - type: Transform - - uid: 1470 - components: - - pos: 16.5,-19.5 - parent: 1 - type: Transform - - uid: 1471 - components: - - pos: 17.5,-19.5 - parent: 1 - type: Transform - - uid: 1472 - components: - - pos: 18.5,-19.5 - parent: 1 - type: Transform - - uid: 1473 - components: - - pos: 19.5,-19.5 - parent: 1 - type: Transform - - uid: 1474 - components: - - pos: 20.5,-19.5 - parent: 1 - type: Transform - - uid: 1476 - components: - - pos: 22.5,-19.5 - parent: 1 - type: Transform - - uid: 1495 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 1496 - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform - - uid: 1498 - components: - - pos: 7.5,-24.5 - parent: 1 - type: Transform - - uid: 1503 - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform - - uid: 1504 - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform - - uid: 1521 - components: - - pos: 3.5,-27.5 - parent: 1 - type: Transform - - uid: 1567 - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform - - uid: 1576 - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform - - uid: 1577 - components: - - pos: 4.5,-12.5 - parent: 1 - type: Transform - - uid: 1578 - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform - - uid: 1579 - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform - - uid: 1580 - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform - - uid: 1581 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - uid: 1582 - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform - - uid: 1583 - components: - - pos: -0.5,-17.5 - parent: 1 - type: Transform - - uid: 1584 - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform - - uid: 1585 - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform - - uid: 1586 - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform - - uid: 1587 - components: - - pos: -2.5,-19.5 - parent: 1 - type: Transform - - uid: 1588 - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform - - uid: 1589 - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform - - uid: 1590 - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform - - uid: 1596 - components: - - pos: -9.5,-17.5 - parent: 1 - type: Transform - - uid: 1599 - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform - - uid: 1600 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1 - type: Transform - - uid: 1606 - components: - - pos: -0.5,-28.5 - parent: 1 - type: Transform - - uid: 1612 - components: - - pos: -0.5,-29.5 - parent: 1 - type: Transform - - uid: 1621 - components: - - pos: -0.5,-23.5 - parent: 1 - type: Transform - - uid: 1633 - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform - - uid: 1635 - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform - - uid: 1639 - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - uid: 1644 - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform - - uid: 1645 - components: - - pos: -3.5,-27.5 - parent: 1 - type: Transform - - uid: 1646 - components: - - pos: -1.5,-27.5 - parent: 1 - type: Transform - - uid: 1647 - components: - - pos: -5.5,-27.5 - parent: 1 - type: Transform - - uid: 1648 - components: - - pos: -7.5,-27.5 - parent: 1 - type: Transform - - uid: 1649 - components: - - pos: -8.5,-27.5 - parent: 1 - type: Transform - - uid: 1650 - components: - - pos: -8.5,-28.5 - parent: 1 - type: Transform - - uid: 1651 - components: - - pos: -8.5,-29.5 - parent: 1 - type: Transform - - uid: 1659 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 1 - type: Transform - - uid: 1660 - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 1 - type: Transform - - uid: 1667 - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 1 - type: Transform - - uid: 1668 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 1 - type: Transform - - uid: 1669 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 1 - type: Transform - - uid: 1671 - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform - - uid: 1672 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 - parent: 1 - type: Transform - - uid: 1673 - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 1 - type: Transform - - uid: 1674 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-27.5 - parent: 1 - type: Transform - - uid: 1675 - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform - - uid: 1676 - components: - - pos: -16.5,-20.5 - parent: 1 - type: Transform - - uid: 1677 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,18.5 - parent: 1 - type: Transform - - uid: 1682 - components: - - pos: 38.5,17.5 - parent: 1 - type: Transform - - uid: 1689 - components: - - rot: 3.141592653589793 rad - pos: 38.5,25.5 - parent: 1 - type: Transform - - uid: 1690 - components: - - rot: 3.141592653589793 rad - pos: 38.5,27.5 - parent: 1 - type: Transform - - uid: 1691 - components: - - rot: 3.141592653589793 rad - pos: 38.5,28.5 - parent: 1 - type: Transform - - uid: 1692 - components: - - rot: 3.141592653589793 rad - pos: 38.5,29.5 - parent: 1 - type: Transform - - uid: 1693 - components: - - rot: 3.141592653589793 rad - pos: 38.5,30.5 - parent: 1 - type: Transform - - uid: 1694 - components: - - rot: 3.141592653589793 rad - pos: 38.5,34.5 - parent: 1 - type: Transform - - uid: 1695 - components: - - rot: 3.141592653589793 rad - pos: 38.5,33.5 - parent: 1 - type: Transform - - uid: 1696 - components: - - rot: 3.141592653589793 rad - pos: 38.5,32.5 - parent: 1 - type: Transform - - uid: 1759 - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - uid: 1760 - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - uid: 1761 - components: - - pos: -26.5,19.5 - parent: 1 - type: Transform - - uid: 1762 - components: - - pos: -22.5,25.5 - parent: 1 - type: Transform - - uid: 1774 - components: - - pos: -21.5,22.5 - parent: 1 - type: Transform - - uid: 1777 - components: - - pos: -21.5,24.5 - parent: 1 - type: Transform - - uid: 1778 - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - uid: 1783 - components: - - pos: -21.5,25.5 - parent: 1 - type: Transform - - uid: 1784 - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform - - uid: 1789 - components: - - pos: -27.5,19.5 - parent: 1 - type: Transform - - uid: 1791 - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform - - uid: 1809 - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform - - uid: 1819 - components: - - pos: -27.5,24.5 - parent: 1 - type: Transform - - uid: 1820 - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform - - uid: 1826 - components: - - pos: -21.5,19.5 - parent: 1 - type: Transform - - uid: 1827 - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 1 - type: Transform - - uid: 1831 - components: - - pos: -21.5,20.5 - parent: 1 - type: Transform - - uid: 1833 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - uid: 1834 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform - - uid: 1835 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - type: Transform - - uid: 1840 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform - - uid: 1984 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,17.5 - parent: 1 - type: Transform - - uid: 1985 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,16.5 - parent: 1 - type: Transform - - uid: 1996 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 1 - type: Transform - - uid: 1997 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1 - type: Transform - - uid: 1998 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-0.5 - parent: 1 - type: Transform - - uid: 1999 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 1 - type: Transform - - uid: 2000 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-0.5 - parent: 1 - type: Transform - - uid: 2002 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,11.5 - parent: 1 - type: Transform - - uid: 2003 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 1 - type: Transform - - uid: 2004 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,9.5 - parent: 1 - type: Transform - - uid: 2005 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - type: Transform - - uid: 2006 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - type: Transform - - uid: 2007 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,6.5 - parent: 1 - type: Transform - - uid: 2008 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,5.5 - parent: 1 - type: Transform - - uid: 2009 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 1 - type: Transform - - uid: 2019 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,12.5 - parent: 1 - type: Transform - - uid: 2020 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 1 - type: Transform - - uid: 2021 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,12.5 - parent: 1 - type: Transform - - uid: 2022 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,12.5 - parent: 1 - type: Transform - - uid: 2023 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,12.5 - parent: 1 - type: Transform - - uid: 2024 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,12.5 - parent: 1 - type: Transform - - uid: 2025 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,14.5 - parent: 1 - type: Transform - - uid: 2026 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,12.5 - parent: 1 - type: Transform - - uid: 2027 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - type: Transform - - uid: 2028 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform - - uid: 2029 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 1 - type: Transform - - uid: 2030 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,14.5 - parent: 1 - type: Transform - - uid: 2032 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,17.5 - parent: 1 - type: Transform - - uid: 2033 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,17.5 - parent: 1 - type: Transform - - uid: 2034 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,17.5 - parent: 1 - type: Transform - - uid: 2035 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,17.5 - parent: 1 - type: Transform - - uid: 2036 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,17.5 - parent: 1 - type: Transform - - uid: 2037 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,16.5 - parent: 1 - type: Transform - - uid: 2038 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,15.5 - parent: 1 - type: Transform - - uid: 2095 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 1 - type: Transform - - uid: 2096 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 1 - type: Transform - - uid: 2097 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-3.5 - parent: 1 - type: Transform - - uid: 2098 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-4.5 - parent: 1 - type: Transform - - uid: 2099 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-5.5 - parent: 1 - type: Transform - - uid: 2100 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-9.5 - parent: 1 - type: Transform - - uid: 2101 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 1 - type: Transform - - uid: 2112 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,0.5 - parent: 1 - type: Transform - - uid: 2113 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform - - uid: 2137 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,16.5 - parent: 1 - type: Transform - - uid: 2139 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 1 - type: Transform - - uid: 2140 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 1 - type: Transform - - uid: 2141 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 1 - type: Transform - - uid: 2142 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 1 - type: Transform - - uid: 2143 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-9.5 - parent: 1 - type: Transform - - uid: 2144 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 1 - type: Transform - - uid: 2145 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 1 - type: Transform - - uid: 2146 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform - - uid: 2147 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 1 - type: Transform - - uid: 2148 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 1 - type: Transform - - uid: 2149 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 1 - type: Transform - - uid: 2150 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-11.5 - parent: 1 - type: Transform - - uid: 2151 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-11.5 - parent: 1 - type: Transform - - uid: 2153 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-20.5 - parent: 1 - type: Transform - - uid: 2155 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-27.5 - parent: 1 - type: Transform - - uid: 2156 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-27.5 - parent: 1 - type: Transform - - uid: 2158 - components: - - pos: -20.5,-27.5 - parent: 1 - type: Transform - - uid: 2160 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-29.5 - parent: 1 - type: Transform - - uid: 2162 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 1 - type: Transform - - uid: 2163 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-26.5 - parent: 1 - type: Transform - - uid: 2165 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 1 - type: Transform - - uid: 2166 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-23.5 - parent: 1 - type: Transform - - uid: 2167 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 1 - type: Transform - - uid: 2168 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-23.5 - parent: 1 - type: Transform - - uid: 2170 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-23.5 - parent: 1 - type: Transform - - uid: 2171 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 1 - type: Transform - - uid: 2172 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-26.5 - parent: 1 - type: Transform - - uid: 2174 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 1 - type: Transform - - uid: 2175 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 1 - type: Transform - - uid: 2176 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 1 - type: Transform - - uid: 2177 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 1 - type: Transform - - uid: 2178 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 1 - type: Transform - - uid: 2179 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 1 - type: Transform - - uid: 2180 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 1 - type: Transform - - uid: 2182 - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 1 - type: Transform - - uid: 2183 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-11.5 - parent: 1 - type: Transform - - uid: 2184 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-11.5 - parent: 1 - type: Transform - - uid: 2185 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-11.5 - parent: 1 - type: Transform - - uid: 2187 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 1 - type: Transform - - uid: 2188 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 1 - type: Transform - - uid: 2189 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-14.5 - parent: 1 - type: Transform - - uid: 2190 - components: - - rot: 3.141592653589793 rad - pos: -33.5,-14.5 - parent: 1 - type: Transform - - uid: 2191 - components: - - rot: 3.141592653589793 rad - pos: -34.5,-14.5 - parent: 1 - type: Transform - - uid: 2192 - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 1 - type: Transform - - uid: 2193 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-18.5 - parent: 1 - type: Transform - - uid: 2194 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-14.5 - parent: 1 - type: Transform - - uid: 2195 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-21.5 - parent: 1 - type: Transform - - uid: 2196 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-19.5 - parent: 1 - type: Transform - - uid: 2197 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-18.5 - parent: 1 - type: Transform - - uid: 2198 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-18.5 - parent: 1 - type: Transform - - uid: 2199 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 1 - type: Transform - - uid: 2200 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 1 - type: Transform - - uid: 2202 - components: - - rot: 3.141592653589793 rad - pos: -35.5,-14.5 - parent: 1 - type: Transform - - uid: 2204 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 1 - type: Transform - - uid: 2205 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-15.5 - parent: 1 - type: Transform - - uid: 2206 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-16.5 - parent: 1 - type: Transform - - uid: 2207 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-16.5 - parent: 1 - type: Transform - - uid: 2208 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-15.5 - parent: 1 - type: Transform - - uid: 2209 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-17.5 - parent: 1 - type: Transform - - uid: 2210 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-11.5 - parent: 1 - type: Transform - - uid: 2211 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 1 - type: Transform - - uid: 2212 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-17.5 - parent: 1 - type: Transform - - uid: 2213 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-18.5 - parent: 1 - type: Transform - - uid: 2214 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-18.5 - parent: 1 - type: Transform - - uid: 2215 - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-18.5 - parent: 1 - type: Transform - - uid: 2216 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-18.5 - parent: 1 - type: Transform - - uid: 2237 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-17.5 - parent: 1 - type: Transform - - uid: 2238 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-18.5 - parent: 1 - type: Transform - - uid: 2239 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-19.5 - parent: 1 - type: Transform - - uid: 2251 - components: - - pos: -23.5,-27.5 - parent: 1 - type: Transform - - uid: 2253 - components: - - pos: -21.5,-27.5 - parent: 1 - type: Transform - - uid: 2254 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-23.5 - parent: 1 - type: Transform - - uid: 2256 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 1 - type: Transform - - uid: 2257 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 1 - type: Transform - - uid: 2258 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-23.5 - parent: 1 - type: Transform - - uid: 2259 - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-23.5 - parent: 1 - type: Transform - - uid: 2261 - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-23.5 - parent: 1 - type: Transform - - uid: 2310 - components: - - pos: 12.5,31.5 - parent: 1 - type: Transform - - uid: 2314 - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform - - uid: 2315 - components: - - pos: 13.5,31.5 - parent: 1 - type: Transform - - uid: 2320 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 1 - type: Transform - - uid: 2322 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 1 - type: Transform - - uid: 2323 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 1 - type: Transform - - uid: 2343 - components: - - rot: 3.141592653589793 rad - pos: 38.5,31.5 - parent: 1 - type: Transform - - uid: 2344 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 1 - type: Transform - - uid: 2345 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,19.5 - parent: 1 - type: Transform - - uid: 2346 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,19.5 - parent: 1 - type: Transform - - uid: 2347 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 1 - type: Transform - - uid: 2348 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,19.5 - parent: 1 - type: Transform - - uid: 2349 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,19.5 - parent: 1 - type: Transform - - uid: 2350 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - type: Transform - - uid: 2352 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,22.5 - parent: 1 - type: Transform - - uid: 2353 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,23.5 - parent: 1 - type: Transform - - uid: 2354 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,24.5 - parent: 1 - type: Transform - - uid: 2355 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 1 - type: Transform - - uid: 2356 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,25.5 - parent: 1 - type: Transform - - uid: 2357 - components: - - rot: 3.141592653589793 rad - pos: 19.5,26.5 - parent: 1 - type: Transform - - uid: 2358 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,27.5 - parent: 1 - type: Transform - - uid: 2359 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,28.5 - parent: 1 - type: Transform - - uid: 2364 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,28.5 - parent: 1 - type: Transform - - uid: 2365 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 1 - type: Transform - - uid: 2366 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,28.5 - parent: 1 - type: Transform - - uid: 2367 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - uid: 2378 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 1 - type: Transform - - uid: 2380 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 1 - type: Transform - - uid: 2418 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,31.5 - parent: 1 - type: Transform - - uid: 2419 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,31.5 - parent: 1 - type: Transform - - uid: 2420 - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - uid: 2421 - components: - - pos: 13.5,33.5 - parent: 1 - type: Transform - - uid: 2423 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 1 - type: Transform - - uid: 2424 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,31.5 - parent: 1 - type: Transform - - uid: 2425 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,31.5 - parent: 1 - type: Transform - - uid: 2431 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,24.5 - parent: 1 - type: Transform - - uid: 2432 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,24.5 - parent: 1 - type: Transform - - uid: 2433 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,24.5 - parent: 1 - type: Transform - - uid: 2441 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-25.5 - parent: 1 - type: Transform - - uid: 3074 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-16.5 - parent: 1 - type: Transform - - uid: 3076 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-14.5 - parent: 1 - type: Transform - - uid: 3077 - components: - - rot: 3.141592653589793 rad - pos: -39.5,-13.5 - parent: 1 - type: Transform - - uid: 3078 - components: - - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 1 - type: Transform - - uid: 3079 - components: - - rot: 3.141592653589793 rad - pos: -41.5,-13.5 - parent: 1 - type: Transform - - uid: 3110 - components: - - pos: -14.5,-15.5 - parent: 1 - type: Transform - - uid: 3152 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 3483 - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-21.5 - parent: 1 - type: Transform - - uid: 3484 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 1 - type: Transform - - uid: 3485 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1 - type: Transform - - uid: 3500 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 1 - type: Transform - - uid: 3549 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-11.5 - parent: 1 - type: Transform - - uid: 5345 - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform - - uid: 6616 - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform - - uid: 7237 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 1 - type: Transform - - uid: 8323 - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform - - uid: 8325 - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform -- proto: WallSolidRust - entities: - - uid: 9058 - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1 - type: Transform - - uid: 11950 - components: - - rot: 1.5707963267948966 rad - pos: 43.5,19.5 - parent: 1 - type: Transform -- proto: WallWood - entities: - - uid: 2759 - components: - - pos: -10.5,-54.5 - parent: 1 - type: Transform - - uid: 2760 - components: - - pos: -10.5,-53.5 - parent: 1 - type: Transform - - uid: 2768 - components: - - pos: -10.5,-51.5 - parent: 1 - type: Transform - - uid: 2770 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 - parent: 1 - type: Transform - - uid: 2771 - components: - - pos: -18.5,-54.5 - parent: 1 - type: Transform - - uid: 2773 - components: - - pos: -11.5,-54.5 - parent: 1 - type: Transform - - uid: 2774 - components: - - pos: -10.5,-48.5 - parent: 1 - type: Transform - - uid: 2775 - components: - - pos: -12.5,-45.5 - parent: 1 - type: Transform - - uid: 2776 - components: - - pos: -10.5,-45.5 - parent: 1 - type: Transform - - uid: 2777 - components: - - pos: -10.5,-46.5 - parent: 1 - type: Transform - - uid: 2779 - components: - - pos: -12.5,-47.5 - parent: 1 - type: Transform - - uid: 2780 - components: - - pos: -11.5,-45.5 - parent: 1 - type: Transform - - uid: 2788 - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-51.5 - parent: 1 - type: Transform - - uid: 2789 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 1 - type: Transform - - uid: 2791 - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform - - uid: 2798 - components: - - pos: -10.5,-52.5 - parent: 1 - type: Transform - - uid: 2801 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-51.5 - parent: 1 - type: Transform - - uid: 2803 - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-51.5 - parent: 1 - type: Transform - - uid: 2805 - components: - - pos: -17.5,-54.5 - parent: 1 - type: Transform - - uid: 2808 - components: - - pos: -10.5,-50.5 - parent: 1 - type: Transform - - uid: 2854 - components: - - pos: -10.5,-49.5 - parent: 1 - type: Transform - - uid: 2858 - components: - - pos: -14.5,-47.5 - parent: 1 - type: Transform - - uid: 2859 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-47.5 - parent: 1 - type: Transform - - uid: 2860 - components: - - pos: -13.5,-47.5 - parent: 1 - type: Transform - - uid: 2861 - components: - - pos: -10.5,-47.5 - parent: 1 - type: Transform - - uid: 2872 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-47.5 - parent: 1 - type: Transform - - uid: 2873 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 1 - type: Transform - - uid: 2926 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-50.5 - parent: 1 - type: Transform - - uid: 2932 - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-48.5 - parent: 1 - type: Transform -- proto: WardrobeCargoFilled - entities: - - uid: 7240 - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- proto: WardrobeChapelFilled - entities: - - uid: 3479 - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform -- proto: WardrobePrisonFilled - entities: - - uid: 1815 - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform - - uid: 1816 - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - uid: 5444 - components: - - pos: 18.5,5.5 - parent: 1 - type: Transform - - uid: 5445 - components: - - pos: 15.5,5.5 - parent: 1 - type: Transform - - uid: 5446 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform -- proto: WardrobeRobotics - entities: - - uid: 661 - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform -- proto: WarningCO2 - entities: - - uid: 6969 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-8.5 - parent: 1 - type: Transform -- proto: WarningN2 - entities: - - uid: 6967 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 1 - type: Transform -- proto: WarningN2O - entities: - - uid: 6971 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-10.5 - parent: 1 - type: Transform -- proto: WarningO2 - entities: - - uid: 6968 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 1 - type: Transform -- proto: WarningPlasma - entities: - - uid: 6970 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-14.5 - parent: 1 - type: Transform -- proto: WarningTritium - entities: - - uid: 6972 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-16.5 - parent: 1 - type: Transform -- proto: WarningWaste - entities: - - uid: 6973 - components: - - rot: 3.141592653589793 rad - pos: 42.5,-12.5 - parent: 1 - type: Transform -- proto: WarpPoint - entities: - - uid: 12045 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,10.5 - parent: 1 - type: Transform - - location: bar - type: WarpPoint - - uid: 12046 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,29.5 - parent: 1 - type: Transform - - location: bridge - type: WarpPoint - - uid: 12047 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,52.5 - parent: 1 - type: Transform - - location: ai sat - type: WarpPoint - - uid: 12048 - components: - - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 1 - type: Transform - - location: med - type: WarpPoint - - uid: 12049 - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 1 - type: Transform - - location: sci - type: WarpPoint - - uid: 12050 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 1 - type: Transform - - location: engi - type: WarpPoint - - uid: 12051 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 1 - type: Transform - - location: atmos - type: WarpPoint - - uid: 12052 - components: - - rot: 1.5707963267948966 rad - pos: 27.5,34.5 - parent: 1 - type: Transform - - location: abandoned evac dock - type: WarpPoint - - uid: 12053 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 1 - type: Transform - - location: sec - type: WarpPoint - - uid: 12054 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,31.5 - parent: 1 - type: Transform - - location: courthouse - type: WarpPoint - - uid: 12055 - components: - - rot: 1.5707963267948966 rad - pos: 45.5,10.5 - parent: 1 - type: Transform - - location: arrivals - type: WarpPoint - - uid: 12056 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1 - type: Transform - - location: cargo - type: WarpPoint - - uid: 12057 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - location: dorms - type: WarpPoint - - uid: 12058 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,8.5 - parent: 1 - type: Transform - - location: evac - type: WarpPoint -- proto: WaterCooler - entities: - - uid: 4856 - components: - - pos: 39.5,25.5 - parent: 1 - type: Transform - - uid: 6396 - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform -- proto: WaterTankFull - entities: - - uid: 4948 - components: - - pos: 33.5,28.5 - parent: 1 - type: Transform - - uid: 7665 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - - uid: 8853 - components: - - pos: -30.5,-10.5 - parent: 1 - type: Transform - - uid: 8859 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 9140 - components: - - pos: 14.5,-18.5 - parent: 1 - type: Transform - - uid: 9177 - components: - - pos: 24.5,-0.5 - parent: 1 - type: Transform - - uid: 9377 - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform - - uid: 9378 - components: - - pos: 21.5,26.5 - parent: 1 - type: Transform - - uid: 9536 - components: - - pos: 35.5,7.5 - parent: 1 - type: Transform - - uid: 9690 - components: - - pos: -13.5,25.5 - parent: 1 - type: Transform - - uid: 9710 - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform -- proto: WaterTankHighCapacity - entities: - - uid: 6009 - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform -- proto: WaterVaporCanister - entities: - - uid: 6811 - components: - - pos: 43.5,-13.5 - parent: 1 - type: Transform -- proto: WeaponCapacitorRecharger - entities: - - uid: 780 - components: - - pos: 16.5,12.5 - parent: 1 - type: Transform - - uid: 784 - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - uid: 4116 - components: - - pos: -0.5,27.5 - parent: 1 - type: Transform - - uid: 5060 - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform - - uid: 5330 - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 5324 - components: - - pos: 19.372377,15.690639 - parent: 1 - type: Transform - - uid: 5325 - components: - - pos: 19.544252,15.612514 - parent: 1 - type: Transform - - uid: 5326 - components: - - pos: 19.747377,15.550014 - parent: 1 - type: Transform - - uid: 5437 - components: - - pos: 16.478151,15.561477 - parent: 1 - type: Transform -- proto: WeaponLaserCarbine - entities: - - uid: 5424 - components: - - pos: 38.328125,13.694345 - parent: 1 - type: Transform - - uid: 5425 - components: - - pos: 38.375,13.58497 - parent: 1 - type: Transform -- proto: WeaponPistolMk58 - entities: - - uid: 5396 - components: - - pos: 29.446836,16.541578 - parent: 1 - type: Transform - - uid: 5422 - components: - - pos: 37.46875,13.61622 - parent: 1 - type: Transform - - uid: 5436 - components: - - pos: 37.546875,13.55372 - parent: 1 - type: Transform -- proto: WeaponRevolverDeckard - entities: - - uid: 4842 - components: - - flags: InContainer - type: MetaData - - parent: 4120 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponRifleLecter - entities: - - uid: 5431 - components: - - pos: 38.533405,11.484736 - parent: 1 - type: Transform -- proto: WeaponShotgunKammerer - entities: - - uid: 5426 - components: - - pos: 38.470905,12.377476 - parent: 1 - type: Transform - - uid: 5427 - components: - - pos: 38.54903,12.330601 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunDrozd - entities: - - uid: 5418 - components: - - pos: 36.546875,13.694345 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunDrozdRubber - entities: - - uid: 5310 - components: - - pos: 18.660734,15.690639 - parent: 1 - type: Transform -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 5385 - components: - - pos: 27.524961,14.648642 - parent: 1 - type: Transform -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 2688 - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform - - uid: 2750 - components: - - pos: -2.5,55.5 - parent: 1 - type: Transform - - uid: 2753 - components: - - pos: -2.5,49.5 - parent: 1 - type: Transform - - uid: 2754 - components: - - pos: -10.5,49.5 - parent: 1 - type: Transform -- proto: WelderIndustrialAdvanced - entities: - - uid: 7139 - components: - - pos: 33.606236,-18.496468 - parent: 1 - type: Transform -- proto: WeldingFuelTankFull - entities: - - uid: 6766 - components: - - pos: 20.5,-8.5 - parent: 1 - type: Transform - - uid: 8858 - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform - - uid: 8860 - components: - - pos: -31.5,-10.5 - parent: 1 - type: Transform - - uid: 9139 - components: - - pos: 13.5,-18.5 - parent: 1 - type: Transform - - uid: 9178 - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform - - uid: 9375 - components: - - pos: 21.5,27.5 - parent: 1 - type: Transform - - uid: 9376 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 9535 - components: - - pos: 36.5,7.5 - parent: 1 - type: Transform - - uid: 9689 - components: - - pos: -14.5,25.5 - parent: 1 - type: Transform - - uid: 9709 - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform -- proto: Windoor - entities: - - uid: 8315 - components: - - pos: -28.5,-14.5 - parent: 1 - type: Transform - - uid: 8759 - components: - - pos: -41.5,-16.5 - parent: 1 - type: Transform -- proto: WindoorChapelLocked - entities: - - uid: 3474 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 1 - type: Transform - - uid: 3475 - components: - - rot: 1.5707963267948966 rad - pos: -33.5,16.5 - parent: 1 - type: Transform -- proto: WindoorSecure - entities: - - uid: 3290 - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - uid: 3350 - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 1 - type: Transform - - uid: 3405 - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 3406 - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - uid: 3407 - components: - - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 3408 - components: - - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 3603 - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 3604 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - uid: 5099 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 5100 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 7245 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 7246 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 7243 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - uid: 7244 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - uid: 7288 - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform - - uid: 7290 - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- proto: WindoorSecureChemistryLocked - entities: - - uid: 3401 - components: - - rot: 3.141592653589793 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 3402 - components: - - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 1 - type: Transform - - uid: 3403 - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 1 - type: Transform -- proto: WindoorSecureCommandLocked - entities: - - uid: 3614 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,52.5 - parent: 1 - type: Transform - - uid: 3615 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,52.5 - parent: 1 - type: Transform - - uid: 4127 - components: - - pos: -4.5,25.5 - parent: 1 - type: Transform - - uid: 4730 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,19.5 - parent: 1 - type: Transform - - uid: 4972 - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 3349 - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 3289 - components: - - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 1 - type: Transform -- proto: WindoorSecureMedicalLocked - entities: - - uid: 3404 - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform - - uid: 3409 - components: - - pos: -9.5,7.5 - parent: 1 - type: Transform - - uid: 3410 - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform - - uid: 3558 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,21.5 - parent: 1 - type: Transform - - uid: 3559 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 1 - type: Transform -- proto: WindoorSecureSalvageLocked - entities: - - uid: 7297 - components: - - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 1 - type: Transform - - uid: 7300 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-24.5 - parent: 1 - type: Transform -- proto: WindoorSecureScienceLocked - entities: - - uid: 3605 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 3606 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform -- proto: WindoorSecureSecurityLocked - entities: - - uid: 1775 - components: - - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 1 - type: Transform - - uid: 1776 - components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - uid: 4900 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,34.5 - parent: 1 - type: Transform - - uid: 5097 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform - - uid: 5098 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - uid: 5535 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - - links: - - 12485 - type: DeviceLinkSink - - uid: 5536 - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform - - links: - - 12486 - type: DeviceLinkSink - - uid: 5537 - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - links: - - 12487 - type: DeviceLinkSink - - uid: 12003 - components: - - pos: 36.5,13.5 - parent: 1 - type: Transform - - uid: 12004 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,12.5 - parent: 1 - type: Transform - - uid: 12005 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,11.5 - parent: 1 - type: Transform -- proto: WindoorServiceLocked - entities: - - uid: 3375 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 3376 - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 3377 - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 3378 - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - uid: 3379 - components: - - rot: 3.141592653589793 rad - pos: -2.5,7.5 - parent: 1 - type: Transform - - uid: 3380 - components: - - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 1 - type: Transform -- proto: Window - entities: - - uid: 40 - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 41 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 73 - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform - - uid: 75 - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - uid: 77 - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform - - uid: 78 - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform - - uid: 79 - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - uid: 80 - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - uid: 81 - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - uid: 82 - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - uid: 84 - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - uid: 86 - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - uid: 95 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - - uid: 96 - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform - - uid: 97 - components: - - pos: 6.5,6.5 - parent: 1 - type: Transform - - uid: 98 - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform - - uid: 420 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - uid: 1604 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 1611 - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform - - uid: 1619 - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform - - uid: 1625 - components: - - pos: -5.5,-23.5 - parent: 1 - type: Transform - - uid: 1626 - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform - - uid: 1627 - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform - - uid: 1628 - components: - - pos: -1.5,-23.5 - parent: 1 - type: Transform - - uid: 1987 - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - uid: 1988 - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - uid: 1989 - components: - - rot: 1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - uid: 1990 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - type: Transform - - uid: 2092 - components: - - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - uid: 2110 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 1 - type: Transform - - uid: 2111 - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - uid: 4820 - components: - - pos: 44.5,24.5 - parent: 1 - type: Transform - - uid: 4821 - components: - - pos: 46.5,24.5 - parent: 1 - type: Transform -- proto: WindowDirectional - entities: - - uid: 315 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,19.5 - parent: 1 - type: Transform - - uid: 316 - components: - - rot: -1.5707963267948966 rad - pos: -11.5,20.5 - parent: 1 - type: Transform -- proto: WindowFrostedDirectional - entities: - - uid: 312 - components: - - pos: -10.5,20.5 - parent: 1 - type: Transform - - uid: 313 - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform - - uid: 3473 - components: - - rot: 3.141592653589793 rad - pos: -33.5,14.5 - parent: 1 - type: Transform - - uid: 9631 - components: - - rot: -1.5707963267948966 rad - pos: 16.5,27.5 - parent: 1 - type: Transform - - uid: 9632 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,25.5 - parent: 1 - type: Transform - - uid: 12452 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 12453 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform -- proto: WindowReinforcedDirectional - entities: - - uid: 727 - components: - - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 1 - type: Transform - - uid: 728 - components: - - rot: 3.141592653589793 rad - pos: 23.5,7.5 - parent: 1 - type: Transform - - uid: 1688 - components: - - pos: 46.5,33.5 - parent: 1 - type: Transform - - uid: 1697 - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform - - uid: 1698 - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - uid: 1699 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 1700 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - uid: 3556 - components: - - pos: 45.5,33.5 - parent: 1 - type: Transform - - uid: 3583 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-23.5 - parent: 1 - type: Transform - - uid: 3798 - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - uid: 3799 - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - uid: 3800 - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - uid: 4126 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,25.5 - parent: 1 - type: Transform - - uid: 4895 - components: - - rot: -1.5707963267948966 rad - pos: 45.5,33.5 - parent: 1 - type: Transform - - uid: 4969 - components: - - pos: 3.5,30.5 - parent: 1 - type: Transform - - uid: 4970 - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform - - uid: 11963 - components: - - rot: 1.5707963267948966 rad - pos: 36.5,13.5 - parent: 1 - type: Transform - - uid: 12000 - components: - - pos: 38.5,12.5 - parent: 1 - type: Transform - - uid: 12001 - components: - - pos: 38.5,11.5 - parent: 1 - type: Transform - - uid: 12002 - components: - - rot: 3.141592653589793 rad - pos: 38.5,12.5 - parent: 1 - type: Transform -- proto: Wirecutter - entities: - - uid: 6073 - components: - - pos: -6.449393,-15.322836 - parent: 1 - type: Transform -- proto: WoodDoor - entities: - - uid: 3088 - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform - - uid: 3446 - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform -- proto: Wrench - entities: - - uid: 5603 - components: - - pos: -23.498562,5.5333753 - parent: 1 - type: Transform - - uid: 6090 - components: - - pos: -28.522102,-7.4028454 - parent: 1 - type: Transform -- proto: YellowOxygenTankFilled - entities: - - uid: 8928 - components: - - pos: -33.421288,-7.524516 - parent: 1 - type: Transform - - uid: 9731 - components: - - pos: -28.423817,12.547613 - parent: 1 - type: Transform -... +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorArcadeBlue2 + 12: FloorBar + 15: FloorBlueCircuit + 16: FloorBoxing + 18: FloorCarpetClown + 26: FloorDark + 27: FloorDarkDiagonal + 30: FloorDarkMini + 31: FloorDarkMono + 33: FloorDarkPavement + 38: FloorEighties + 39: FloorElevatorShaft + 41: FloorFreezer + 42: FloorGlass + 45: FloorGrassDark + 55: FloorHydro + 58: FloorLaundry + 59: FloorLino + 62: FloorMime + 70: FloorRGlass + 71: FloorReinforced + 74: FloorShowroom + 83: FloorSteel + 86: FloorSteelDiagonal + 89: FloorSteelHerringbone + 91: FloorSteelMono + 95: FloorTechMaint + 99: FloorWhite + 100: FloorWhiteDiagonal + 102: FloorWhiteHerringbone + 103: FloorWhiteMini + 104: FloorWhiteMono + 109: FloorWood + 111: Lattice + 112: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: -0.484375,-0.5 + parent: 12281 + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: YwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACYwAAAAACZAAAAAABZAAAAAAAZAAAAAADZAAAAAACYwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACYwAAAAADZAAAAAADZAAAAAAAZAAAAAACZAAAAAADYwAAAAADYwAAAAADUwAAAAADRgAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAACbQAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAACbQAAAAADcAAAAAAAUwAAAAADRgAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAABbQAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABDAAAAAACDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAbQAAAAABbQAAAAABbQAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAABUwAAAAADRgAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACbQAAAAAAbQAAAAABbQAAAAACDAAAAAABbQAAAAACbQAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABbQAAAAAAbQAAAAADbQAAAAAADAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAGgAAAAACDAAAAAACDAAAAAAADAAAAAACDAAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAACGgAAAAABDAAAAAABDAAAAAACDAAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADRgAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAACGgAAAAADGgAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACGgAAAAABGgAAAAACGgAAAAAAUwAAAAAARgAAAAAAUwAAAAACUwAAAAADUwAAAAABRgAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAGgAAAAAAGgAAAAAC + version: 6 + -1,0: + ind: -1,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABRgAAAAAAUwAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZAAAAAABZAAAAAADcAAAAAAAYwAAAAAAYwAAAAADaAAAAAADZAAAAAACZAAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbQAAAAACbQAAAAADbQAAAAACZAAAAAACZAAAAAACcAAAAAAAYwAAAAACYwAAAAACaAAAAAADZAAAAAABZAAAAAACcAAAAAAAUwAAAAAARgAAAAAAUwAAAAABcAAAAAAAbQAAAAACbQAAAAABbQAAAAACaAAAAAADaAAAAAADcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAaAAAAAABaAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbQAAAAADbQAAAAADbQAAAAACYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAACUwAAAAACUwAAAAABUwAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAABaAAAAAABYwAAAAACYwAAAAAAYwAAAAAAUwAAAAACRgAAAAAAUwAAAAACDAAAAAABDAAAAAABDAAAAAADDAAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAADYwAAAAAAaAAAAAACYwAAAAABYwAAAAABYwAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAbQAAAAACbQAAAAACDAAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAABUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbQAAAAACDAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAaAAAAAACcAAAAAAAcAAAAAAAaAAAAAAAaAAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAADAAAAAADYwAAAAACcAAAAAAAZwAAAAADZwAAAAABZwAAAAABZwAAAAABZwAAAAACZwAAAAADcAAAAAAAUwAAAAABRgAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAZwAAAAAAZwAAAAACZwAAAAAAZwAAAAADZwAAAAAAZwAAAAACcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAYwAAAAAAaAAAAAACZwAAAAABZwAAAAABZwAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADRgAAAAAAUwAAAAACUwAAAAAB + version: 6 + -1,-1: + ind: -1,-1 + tiles: WwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAGgAAAAADGgAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAADWQAAAAADcAAAAAAAUwAAAAAAUwAAAAADGgAAAAACGgAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAACcAAAAAAAUwAAAAABUwAAAAACGgAAAAAAGgAAAAADDwAAAAAAHgAAAAABDwAAAAAAGwAAAAACGwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWQAAAAADWQAAAAADcAAAAAAAUwAAAAABUwAAAAABGgAAAAACGgAAAAABDwAAAAAAHgAAAAADDwAAAAAAGwAAAAADGwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADGgAAAAABGgAAAAABDwAAAAAAHgAAAAABDwAAAAAAGwAAAAABGwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAABcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWQAAAAAAWQAAAAADcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAWQAAAAAAWQAAAAADcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADRgAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAIQAAAAACIQAAAAADNwAAAAAAUwAAAAADUwAAAAADcAAAAAAAHwAAAAABHwAAAAAAcAAAAAAAHwAAAAACHwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAIQAAAAABIQAAAAACNwAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAABcAAAAAAAUwAAAAACRgAAAAAAUwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACHwAAAAABIQAAAAACIQAAAAADIQAAAAADUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAIQAAAAACIQAAAAADIQAAAAABUwAAAAABUwAAAAAAcAAAAAAAGgAAAAACGgAAAAACDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAIQAAAAADIQAAAAAAcAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: UwAAAAACUwAAAAACUwAAAAABcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAbQAAAAACbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAARgAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABRgAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAWwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABWwAAAAAAUwAAAAABIQAAAAACIQAAAAAAIQAAAAADNwAAAAAAIQAAAAAAIQAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAWwAAAAABIQAAAAABIQAAAAADIQAAAAABNwAAAAAAIQAAAAABIQAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABRgAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANwAAAAAAIQAAAAAAIQAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAABGgAAAAAC + version: 6 + -1,1: + ind: -1,1 + tiles: YwAAAAAAcAAAAAAAZwAAAAACZwAAAAACZwAAAAADZwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADaAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAACZAAAAAADZAAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAADZAAAAAAAZAAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAABZAAAAAACZAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAADYwAAAAABYwAAAAACYwAAAAADYwAAAAABZAAAAAAAZAAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAGgAAAAACGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAD + version: 6 + 0,1: + ind: 0,1 + tiles: UwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAAAbQAAAAADbQAAAAAAbQAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAGgAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAbQAAAAABbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAGgAAAAADUwAAAAAAUwAAAAABGgAAAAADbQAAAAABbQAAAAACbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABUwAAAAABcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: UwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZgAAAAAAZgAAAAADZgAAAAABZgAAAAADcAAAAAAAZAAAAAADZAAAAAACcAAAAAAAZAAAAAAAZAAAAAADcAAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAZgAAAAACZgAAAAABZgAAAAAAZgAAAAAAcAAAAAAAZAAAAAABZAAAAAACcAAAAAAAZAAAAAADZAAAAAADcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAZgAAAAABZgAAAAADZgAAAAAAZgAAAAAAcAAAAAAAaAAAAAADaAAAAAAAcAAAAAAAaAAAAAABaAAAAAABcAAAAAAAbQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAADcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAACbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAADYwAAAAABbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAACGwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAABcAAAAAAAYwAAAAADOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAYwAAAAACOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACHwAAAAAAYwAAAAAC + version: 6 + 1,0: + ind: 1,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACcAAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAACcAAAAAAAUwAAAAABGgAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACUwAAAAADGgAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAUwAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC + version: 6 + 0,-2: + ind: 0,-2 + tiles: UwAAAAADUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACWwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADWwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAWwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADWwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAWwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAAAWwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: OwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAALQAAAAADYwAAAAACYwAAAAAALQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAACcAAAAAAALQAAAAACcAAAAAAAYwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAALQAAAAABYwAAAAABYwAAAAACLQAAAAAALQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALQAAAAADYwAAAAABcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAALQAAAAADLQAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAABXwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAADXwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAABXwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: bQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAABcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWQAAAAAAWwAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAWQAAAAACWQAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWQAAAAAAWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAADXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWQAAAAABWwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWQAAAAACWwAAAAADGwAAAAADGwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGwAAAAACGwAAAAADGwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADGwAAAAAAGwAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAGwAAAAACGwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABDwAAAAAAHwAAAAADDwAAAAAAGgAAAAABcAAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAADUwAAAAABUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABHwAAAAADDwAAAAAAHwAAAAACGgAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAADwAAAAAAHwAAAAACDwAAAAAAGgAAAAADcAAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAD + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAHwAAAAACGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAASgAAAAAASgAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADSgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: bwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAASgAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAVgAAAAACVgAAAAAAVgAAAAACVgAAAAAAVgAAAAABbQAAAAABbQAAAAABcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAACVgAAAAADcAAAAAAAbQAAAAADcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAAAVgAAAAABVgAAAAAAVgAAAAAC + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAVgAAAAADVgAAAAACVgAAAAACVgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAACAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAVgAAAAABVgAAAAABVgAAAAADVgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAADUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADGgAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: UwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADKgAAAAAAKgAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACKgAAAAAAKgAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADGgAAAAADGgAAAAADbQAAAAABbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACGgAAAAABGgAAAAACbQAAAAACbQAAAAAAbQAAAAACcAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: LQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAUwAAAAACLQAAAAACcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAALQAAAAAALQAAAAADLQAAAAABUwAAAAAALQAAAAABcAAAAAAAGgAAAAACGgAAAAADbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAGgAAAAAAGgAAAAADcAAAAAAALQAAAAACLQAAAAADcAAAAAAALQAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: XwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAALQAAAAABcAAAAAAALQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAALQAAAAAAcAAAAAAALQAAAAACUwAAAAAALQAAAAADcAAAAAAALQAAAAACLQAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACLQAAAAACcAAAAAAAUwAAAAABLQAAAAAALQAAAAADLQAAAAABUwAAAAADcAAAAAAALQAAAAADUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAALQAAAAADUwAAAAACcAAAAAAALQAAAAACcAAAAAAAcAAAAAAAUwAAAAAALQAAAAACcAAAAAAALQAAAAAAcAAAAAAAUwAAAAACUwAAAAADbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: UwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABKgAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAWwAAAAAAUwAAAAABUwAAAAACWwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACWwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADWwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAKgAAAAAAKgAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAUwAAAAABUwAAAAABKgAAAAAAKgAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAUwAAAAADWwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAUwAAAAADWwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAB + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAACGgAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACGgAAAAACGgAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAB + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAHwAAAAABGgAAAAACOwAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADGgAAAAABOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABHwAAAAADHwAAAAAAHwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABHwAAAAACHwAAAAABHwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAABHwAAAAABHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAEAAAAAADEAAAAAABcAAAAAAAEAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAEAAAAAAAcAAAAAAAcAAAAAAAEAAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAEAAAAAACEAAAAAACEAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAEAAAAAAAEAAAAAAAcAAAAAAAEAAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAbQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABVgAAAAACVgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAAD + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADGgAAAAADGgAAAAABAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAGgAAAAACAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAGgAAAAABAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAbQAAAAADXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAbQAAAAADbQAAAAACcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAABcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,4: + ind: 0,4 + tiles: cAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: Shuttle + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 1358: 25.881918,34.192333 + 1361: 36.05116,32.59352 + 1386: -23.029747,20.063555 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 1359: 31.894993,33.661083 + 1371: 25.780825,32.109146 + 1392: -27.154747,21.001055 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 1360: 33.992474,34.93727 + 1391: -26.029747,22.04793 + - node: + color: '#A46106FF' + id: BotLeft + decals: + 1112: 22,-28 + 1113: 21,-28 + 1114: 20,-28 + 1115: 20,-27 + 1116: 21,-27 + 1117: 22,-27 + 1118: 15,-22 + 1119: 15,-23 + 1120: 15,-24 + 1121: 15,-25 + 1122: 14,-25 + 1123: 14,-24 + 1124: 14,-23 + 1125: 14,-22 + 1126: 18,-28 + 1127: 18,-27 + 1128: 17,-27 + 1129: 17,-28 + 1130: 16,-27 + 1131: 16,-28 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 1449: 6,-22 + 1450: 6,-21 + 1451: 6,-20 + 1452: 5,-20 + 1453: 4,-20 + 1454: -3,17 + 1455: -2,17 + 1456: -1,17 + 1457: 0,17 + - node: + color: '#EFB341FF' + id: BotRight + decals: + 1035: 26,-7 + 1036: 26,-6 + 1037: 26,-5 + 1038: 26,-4 + 1039: 27,-4 + 1040: 27,-5 + 1041: 27,-6 + 1042: 27,-7 + 1043: 28,-7 + 1044: 28,-6 + 1045: 28,-5 + 1046: 28,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 958: -17,-9 + 973: -17,-13 + 974: -17,-11 + 975: -17,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 115: -4,56 + 116: -3,55 + 124: -6,46 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 113: -11,55 + 114: -10,56 + 123: -8,46 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 109: -4,48 + 110: -3,49 + 121: -6,44 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 111: -10,48 + 112: -11,49 + 122: -8,44 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 838: -10,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 835: -12,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 118: -4,55 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 117: -10,55 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 119: -4,49 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 120: -10,49 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 87: -3,54 + 88: -3,53 + 89: -3,52 + 90: -3,51 + 91: -3,50 + 125: -6,45 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 92: -8,56 + 93: -9,56 + 94: -7,56 + 95: -5,56 + 96: -5,56 + 97: -6,56 + 128: -7,46 + 837: -11,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 104: -9,48 + 105: -8,48 + 106: -7,48 + 107: -6,48 + 108: -5,48 + 127: -7,44 + 836: -11,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 98: -11,54 + 99: -11,53 + 100: -11,53 + 101: -11,51 + 102: -11,52 + 103: -11,50 + 126: -8,45 + - node: + color: '#334E6DFF' + id: BrickTileSteelBox + decals: + 196: 2,49 + 197: 3,49 + - node: + color: '#52B4E9FF' + id: BrickTileSteelBox + decals: + 193: -1,49 + 194: 0,49 + 195: 1,49 + - node: + color: '#9FED58FF' + id: BrickTileSteelBox + decals: + 187: -1,53 + 188: 0,53 + - node: + color: '#A46106FF' + id: BrickTileSteelBox + decals: + 185: -1,55 + 186: 0,55 + - node: + color: '#B7FF8FFF' + id: BrickTileSteelBox + decals: + 189: 2,55 + 190: 3,55 + - node: + color: '#D381C9FF' + id: BrickTileSteelBox + decals: + 191: -1,51 + 192: 0,51 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelBox + decals: + 181: 2,51 + 182: 3,51 + - node: + color: '#EFB341FF' + id: BrickTileSteelBox + decals: + 183: 2,53 + 184: 3,53 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerNe + decals: + 748: -19,16 + 749: -23,16 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerNe + decals: + 896: -21,-1 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNe + decals: + 492: 29,14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 813: 2,-5 + 814: -2,-5 + 1244: -14,-51 + 1251: -41,-18 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerNw + decals: + 746: -27,16 + 747: -21,16 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerNw + decals: + 897: -23,-1 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNw + decals: + 491: 25,14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 815: 0,-5 + 816: 4,-5 + 1245: -16,-51 + 1250: -44,-18 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerSe + decals: + 744: -19,13 + 745: -23,13 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerSe + decals: + 899: -21,-4 + 969: -15,-19 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSe + decals: + 494: 29,12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 1249: -14,-52 + 1253: -41,-21 + - node: + color: '#52B4E9FF' + id: BrickTileSteelCornerSw + decals: + 750: -27,13 + 751: -21,13 + - node: + color: '#D381C9FF' + id: BrickTileSteelCornerSw + decals: + 898: -23,-4 + 968: -21,-19 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSw + decals: + 493: 25,12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 1248: -16,-52 + 1252: -44,-21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 824: 2,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 825: 4,-3 + 826: 0,-3 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineE + decals: + 728: -19,14 + 729: -19,15 + 733: -23,15 + 734: -23,14 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineE + decals: + 890: -21,-2 + 891: -21,-3 + 959: -15,-17 + 960: -15,-18 + 1413: -15,-15 + 1414: -15,-14 + 1415: -15,-13 + 1416: -15,-11 + 1417: -15,-10 + 1418: -15,-9 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineE + decals: + 486: 29,13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 822: -2,-6 + 823: 2,-6 + 1256: -41,-19 + 1257: -41,-20 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineN + decals: + 730: -24,16 + 731: -25,16 + 732: -26,16 + 743: -20,16 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineN + decals: + 892: -22,-1 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineN + decals: + 487: 28,14 + 488: 27,14 + 489: 26,14 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 215: -4,26 + 817: -3,-5 + 818: 1,-5 + 819: 5,-5 + 827: 1,-3 + 830: 5,-3 + 1246: -15,-51 + 1254: -43,-18 + 1255: -42,-18 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineS + decals: + 739: -26,13 + 740: -25,13 + 741: -24,13 + 742: -20,13 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineS + decals: + 893: -22,-4 + 961: -17,-19 + 962: -16,-19 + 963: -18,-19 + 964: -19,-19 + 965: -20,-19 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineS + decals: + 483: 28,12 + 484: 27,12 + 485: 26,12 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 828: 1,-3 + 829: 5,-3 + 1247: -15,-52 + 1260: -43,-21 + 1261: -42,-21 + 1460: -3,-3 + 1461: -2,-3 + 1462: -1,-3 + - node: + color: '#52B4E9FF' + id: BrickTileSteelLineW + decals: + 735: -27,15 + 736: -27,14 + 737: -21,15 + 738: -21,14 + - node: + color: '#D381C9FF' + id: BrickTileSteelLineW + decals: + 894: -23,-3 + 895: -23,-2 + 966: -21,-18 + 967: -21,-17 + 1419: -18,-15 + 1420: -18,-14 + 1421: -18,-13 + 1422: -18,-11 + 1423: -18,-10 + 1424: -18,-9 + 1426: -18,-12 + 1427: -18,-16 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineW + decals: + 490: 25,13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 214: 2,28 + 820: 4,-6 + 821: 0,-6 + 1258: -44,-19 + 1259: -44,-20 + - node: + color: '#EFB341FF' + id: BrickTileWhiteBox + decals: + 1107: 19,-15 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerNe + decals: + 631: -21,6 + 632: -18,6 + 633: -15,6 + 777: -9,6 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteCornerNe + decals: + 1305: 46,28 + 1328: 43,27 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerNe + decals: + 707: -11,21 + 710: -11,19 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerNe + decals: + 1164: 11,-18 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 496: 29,18 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerNe + decals: + 1095: 20,-14 + 1111: 21,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 808: 4,2 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerNw + decals: + 628: -22,6 + 629: -19,6 + 630: -16,6 + 774: -10,6 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteCornerNw + decals: + 1306: 39,28 + 1327: 42,27 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerNw + decals: + 705: -12,21 + 709: -12,19 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerNw + decals: + 1229: 8,-18 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 495: 27,18 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerNw + decals: + 1096: 16,-14 + 1110: 20,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 805: 1,2 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerSe + decals: + 1301: 44,33 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSe + decals: + 634: -21,5 + 635: -18,5 + 636: -15,5 + 775: -9,5 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteCornerSe + decals: + 1323: 46,25 + 1326: 43,26 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerSe + decals: + 706: -11,18 + 708: -11,20 + - node: + color: '#A46106FF' + id: BrickTileWhiteCornerSe + decals: + 1163: 11,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 497: 29,16 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerSe + decals: + 1097: 20,-16 + 1108: 21,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 806: 4,1 + - node: + color: '#334E6DFF' + id: BrickTileWhiteCornerSw + decals: + 1302: 41,33 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteCornerSw + decals: + 637: -22,5 + 638: -19,5 + 639: -16,5 + 776: -10,5 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteCornerSw + decals: + 1324: 39,25 + 1325: 42,26 + - node: + color: '#9FED58FF' + id: BrickTileWhiteCornerSw + decals: + 704: -12,18 + 711: -12,20 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 498: 27,16 + - node: + color: '#EFB341FF' + id: BrickTileWhiteCornerSw + decals: + 1098: 16,-16 + 1109: 20,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 807: 1,1 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 158: -2,52 + - node: + color: '#BDFF8593' + id: BrickTileWhiteInnerNe + decals: + 175: 1,54 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 149: 1,50 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerNe + decals: + 171: 1,52 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 1237: -5,-25 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNw + decals: + 165: 1,52 + - node: + color: '#A46106FF' + id: BrickTileWhiteInnerNw + decals: + 180: 1,54 + 1228: 8,-19 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNw + decals: + 157: 1,50 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 1398: -3,-25 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSe + decals: + 151: -2,52 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 148: 1,52 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerSe + decals: + 172: 1,54 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerSw + decals: + 164: 1,54 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSw + decals: + 154: 1,52 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineE + decals: + 1300: 44,34 + - node: + color: '#7C5C98FF' + id: BrickTileWhiteLineE + decals: + 1399: 9,-2 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteLineE + decals: + 1313: 46,27 + 1314: 46,26 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineE + decals: + 1155: 11,-19 + 1156: 11,-20 + 1157: 11,-21 + 1158: 11,-22 + 1159: 11,-23 + 1227: 7,-18 + - node: + color: '#BDFF8593' + id: BrickTileWhiteLineE + decals: + 176: 1,55 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 147: 1,51 + 501: 29,17 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineE + decals: + 166: 1,53 + 1105: 20,-15 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteLineN + decals: + 1307: 40,28 + 1308: 41,28 + 1309: 42,28 + 1310: 43,28 + 1311: 44,28 + 1312: 45,28 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 159: -1,52 + 160: 0,52 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineN + decals: + 177: -1,54 + 178: 0,54 + 1153: 9,-18 + 1154: 10,-18 + - node: + color: '#BDFF8593' + id: BrickTileWhiteLineN + decals: + 173: 2,54 + 174: 3,54 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineN + decals: + 155: -1,50 + 156: 0,50 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 143: 2,50 + 144: 3,50 + 500: 28,18 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineN + decals: + 169: 2,52 + 170: 3,52 + 1099: 17,-14 + 1100: 18,-14 + 1101: 19,-14 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 809: 2,2 + 810: 3,2 + 831: 3,-1 + 832: 4,-1 + 1236: -4,-25 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineS + decals: + 141: 2,50 + 142: 3,50 + 1297: 42,33 + 1298: 43,33 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineS + decals: + 138: -1,50 + 139: 0,50 + 140: 1,50 + 1333: -4,-34 + - node: + color: '#7C5C98FF' + id: BrickTileWhiteLineS + decals: + 1404: 14,1 + 1405: 15,1 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteLineS + decals: + 1315: 45,25 + 1316: 44,25 + 1317: 43,25 + 1318: 42,25 + 1319: 41,25 + 1320: 40,25 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 161: -1,54 + 162: 0,54 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineS + decals: + 1160: 8,-24 + 1161: 9,-24 + 1162: 10,-24 + 1334: -3,-34 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineS + decals: + 152: -1,52 + 153: 0,52 + 1335: -5,-34 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 145: 2,52 + 146: 3,52 + 499: 28,16 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineS + decals: + 167: 2,54 + 168: 3,54 + 1102: 17,-16 + 1103: 18,-16 + 1104: 19,-16 + 1332: -2,-34 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 811: 2,1 + 812: 3,1 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 1329: -7,-32 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineW + decals: + 1299: 41,34 + - node: + color: '#70707093' + id: BrickTileWhiteLineW + decals: + 1331: -7,-34 + - node: + color: '#9D9D97FF' + id: BrickTileWhiteLineW + decals: + 1321: 39,26 + 1322: 39,27 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 163: 1,53 + - node: + color: '#A46106FF' + id: BrickTileWhiteLineW + decals: + 179: 1,55 + - node: + color: '#C78B1993' + id: BrickTileWhiteLineW + decals: + 1330: -7,-33 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineW + decals: + 150: 1,51 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 502: 27,17 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineW + decals: + 1106: 16,-15 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 1354: 28.377537,33.036083 + 1384: -25.060997,23.98543 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 1349: 22.922419,33.036083 + 1350: 19.880083,33.942333 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 1383: -23.045372,22.032305 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 1351: 18.98016,34.92671 + 1352: 19.38641,32.098583 + 1353: 24.355186,34.536083 + - node: + color: '#FFFFFFFF' + id: Bushc2 + decals: + 1375: 34.975742,34.972504 + 1393: -22.967247,20.969805 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 1373: 28.499575,31.984146 + 1374: 36.95945,33.952896 + 1385: -26.967247,21.92293 + 1387: -23.998497,23.938555 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 1390: -26.014122,20.92293 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 1372: 27.04645,31.937271 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 1355: 31.565037,34.80171 + 1356: 32.45566,32.92671 + 1357: 29.877537,34.89546 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 981: -27,-6 + 1134: 11,-28 + 1135: 13,-28 + 1235: -41,16 + - node: + color: '#000000FF' + id: CheckerNESW + decals: + 778: 0,3 + 779: 1,3 + 780: 2,3 + 781: 3,3 + 782: 4,3 + 783: 5,3 + 784: 5,2 + 785: 0,2 + 786: 0,1 + 787: 5,1 + 788: 5,0 + 789: 4,0 + 790: 3,0 + 791: 2,0 + 792: 1,0 + 793: 0,0 + 794: 4,4 + 795: 3,4 + 796: 6,2 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 640: -17,12 + 641: -16,12 + 642: -17,13 + 643: -16,13 + 644: -17,14 + 645: -16,14 + 646: -17,15 + 647: -16,15 + 648: -16,16 + 649: -17,16 + - node: + color: '#A4610696' + id: CheckerNESW + decals: + 1218: 6,-28 + 1219: 6,-27 + 1220: 6,-26 + 1221: 5,-26 + 1222: 5,-27 + 1223: 5,-28 + 1224: 4,-28 + 1225: 4,-27 + 1226: 4,-26 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 940: -13,-7 + 941: -13,-6 + 942: -12,-6 + 943: -12,-7 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 381: 18,12 + 382: 18,13 + 383: 18,14 + 384: 18,15 + 385: 19,15 + 386: 19,14 + 387: 19,13 + 388: 19,12 + 389: 20,12 + 390: 20,13 + 391: 20,14 + 392: 20,15 + 393: 21,15 + 394: 21,14 + 395: 21,13 + 396: 21,12 + 397: 22,12 + 398: 22,13 + 399: 22,15 + 400: 22,14 + 401: 23,15 + 402: 23,14 + 403: 23,13 + 404: 23,12 + 405: 20,11 + 406: 21,11 + 563: 15,11 + 564: 14,12 + 565: 15,12 + 566: 16,12 + 567: 16,13 + 568: 15,13 + 569: 14,13 + 570: 14,14 + 571: 15,14 + 572: 16,14 + 573: 16,15 + 574: 15,15 + 575: 14,15 + 576: 13,14 + 577: 13,13 + 582: 10,13 + 583: 10,14 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 692: -8,8 + 693: -9,8 + 694: -10,8 + 695: -10,9 + 696: -9,9 + 697: -8,9 + 698: -8,10 + 699: -9,10 + 700: -10,10 + 701: -10,11 + 702: -9,11 + 703: -8,11 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 561: 34,11 + 562: 35,11 + 600: 15,7 + 601: 18,7 + 602: 12,7 + - node: + color: '#EF5C1F93' + id: CheckerNWSE + decals: + 519: 32,23 + 520: 33,23 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 1008: 17,-5 + 1009: 16,-5 + 1010: 15,-5 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 979: -21,-14 + 980: -21,-10 + 1262: -6,52 + 1263: -7,53 + 1264: -8,52 + 1265: -7,51 + 1395: 11,27 + 1396: 12,27 + 1397: 13,27 + - node: + color: '#000000FF' + id: DiagonalCheckerAOverlay + decals: + 797: 2,2 + 798: 3,1 + 799: 1,1 + 800: 4,2 + 801: 2,1 + 802: 1,2 + 803: 3,2 + 804: 4,1 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 308: -7,29 + 309: -13,30 + 310: -16,30 + 321: 4,20 + 322: 4,17 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 482: 22,4 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 503: 30,13 + 504: 30,17 + 509: 32,19 + 510: 33,19 + - node: + color: '#EF5C1F93' + id: FullTileOverlayGreyscale + decals: + 513: 32,22 + 514: 33,22 + 515: 32,24 + 516: 33,24 + 535: 26,25 + 536: 26,27 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 1344: 25.518755,33.161083 + 1345: 28.102278,34.536083 + 1346: 30.90701,33.067333 + 1388: -24.060997,21.969805 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 1347: 33.051407,34.442333 + 1348: 35.00453,33.848583 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 1343: 22.28438,34.23921 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 1369: 28.9527,33.984146 + 1370: 26.85895,32.952896 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 1368: 21.980526,32.077896 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 1365: 23.027401,35.28102 + 1366: 24.996151,35.327896 + 1367: 23.902401,32.12477 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 1362: 20.983843,34.62477 + 1363: 19.968218,33.077896 + 1364: 23.34307,34.234146 + 1389: -25.998497,19.938555 + - node: + color: '#2BAF9D93' + id: HalfTileOverlayGreyscale + decals: + 1433: 32,-17 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 305: -11,31 + 306: -10,31 + 307: -9,31 + 319: 4,19 + 323: 4,16 + 324: 3,16 + 325: 5,16 + 342: 2,25 + 343: 3,25 + 344: 4,25 + 345: -2,32 + 346: -3,32 + 347: 0,31 + 348: -5,31 + 372: -3,17 + 373: -2,17 + 374: -1,17 + 375: 0,17 + 376: 1,17 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 469: 21,7 + 470: 22,7 + 473: 22,3 + 716: -17,21 + 717: -16,21 + 718: -15,21 + 719: -14,21 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 37: 3,-8 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 845: -11,-2 + 846: -10,-2 + 900: -18,-1 + 901: -17,-1 + 902: -16,-1 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 468: 32,18 + 556: 37,13 + - node: + color: '#EF5C1F93' + id: HalfTileOverlayGreyscale + decals: + 511: 32,21 + 512: 33,21 + 525: 28,28 + 526: 29,28 + 527: 30,28 + 528: 31,28 + 529: 32,28 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 1080: 12,-11 + 1081: 13,-11 + 1082: 14,-11 + 1083: 15,-11 + - node: + color: '#2BAF9D93' + id: HalfTileOverlayGreyscale180 + decals: + 1434: 32,-19 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 294: -11,26 + 295: -9,26 + 296: -10,26 + 320: 4,18 + 349: 4,21 + 350: 2,23 + 351: 1,23 + 352: -1,27 + 353: -2,27 + 354: -5,27 + 355: -4,27 + 356: -3,27 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 471: 21,5 + 472: 22,5 + 712: -17,18 + 713: -16,18 + 714: -15,18 + 715: -14,18 + - node: + color: '#707070FF' + id: HalfTileOverlayGreyscale180 + decals: + 57: -9,-10 + 58: -8,-10 + 59: -8,-10 + 60: -7,-10 + - node: + color: '#79150096' + id: HalfTileOverlayGreyscale180 + decals: + 286: 1,14 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 847: -12,-4 + 848: -11,-4 + 849: -10,-4 + 907: -16,-7 + 908: -17,-7 + 909: -18,-7 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 507: 32,20 + 508: 33,20 + 555: 37,10 + - node: + color: '#EF5C1F93' + id: HalfTileOverlayGreyscale180 + decals: + 521: 32,25 + 522: 31,25 + 523: 29,24 + 524: 28,24 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 1077: 15,-12 + 1078: 12,-13 + 1079: 13,-13 + - node: + color: '#2BAF9D93' + id: HalfTileOverlayGreyscale270 + decals: + 1436: 31,-18 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 301: -12,27 + 302: -12,28 + 303: -12,29 + 304: -12,30 + 365: -6,28 + 366: -6,29 + 367: -6,30 + 368: 0,26 + 369: 0,25 + 370: 0,24 + 371: 3,22 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 475: 20,6 + 671: -27,10 + 722: -18,20 + 727: -18,19 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 18: 7,2 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 1203: 8,-27 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 851: -13,-3 + 852: -13,-2 + 910: -19,-6 + 911: -19,-5 + 912: -19,-4 + 913: -19,-3 + 914: -19,-2 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 559: 36,11 + 560: 36,12 + 586: 11,13 + 587: 11,14 + - node: + color: '#EF5C1F93' + id: HalfTileOverlayGreyscale270 + decals: + 532: 27,25 + 533: 27,26 + 534: 27,27 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 1021: 15,-8 + 1084: 11,-12 + - node: + color: '#2BAF9D93' + id: HalfTileOverlayGreyscale90 + decals: + 1435: 33,-18 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 297: -8,27 + 298: -8,28 + 299: -8,29 + 300: -8,30 + 357: 5,22 + 358: 5,23 + 359: 5,24 + 360: 1,26 + 361: 1,27 + 362: 1,28 + 363: 1,29 + 364: 1,30 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 474: 23,6 + 669: -12,10 + 670: -12,9 + 720: -13,20 + 721: -13,19 + - node: + color: '#707070FF' + id: HalfTileOverlayGreyscale90 + decals: + 62: -12,-12 + 63: -12,-13 + 64: -12,-14 + 65: -12,-16 + 66: -12,-15 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 287: -5,2 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 1144: 6,-23 + 1145: 6,-22 + 1146: 6,-21 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 850: -9,-3 + 903: -15,-2 + 904: -15,-4 + 905: -15,-5 + 906: -15,-6 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 557: 38,11 + 558: 38,12 + 584: 12,13 + 585: 12,14 + - node: + color: '#EF5C1F93' + id: HalfTileOverlayGreyscale90 + decals: + 530: 33,26 + 531: 33,27 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 985: 13,-8 + 986: 13,-7 + 987: 13,-6 + 1020: 16,-8 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1458: 1,17 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 1459: 6,-23 + - node: + color: '#D381C9FF' + id: MiniTileSteelCornerNe + decals: + 885: -32,-7 + - node: + color: '#D381C9FF' + id: MiniTileSteelCornerNw + decals: + 887: -31,-7 + - node: + color: '#D381C9FF' + id: MiniTileSteelCornerSe + decals: + 880: -25,-4 + - node: + color: '#D381C9FF' + id: MiniTileSteelCornerSw + decals: + 881: -29,-4 + - node: + color: '#D381C9FF' + id: MiniTileSteelInnerNw + decals: + 886: -30,-7 + - node: + color: '#D381C9FF' + id: MiniTileSteelLineE + decals: + 877: -25,-3 + 878: -25,-2 + 879: -25,-1 + 889: -32,-8 + - node: + color: '#D381C9FF' + id: MiniTileSteelLineS + decals: + 874: -28,-4 + 875: -27,-4 + 876: -26,-4 + 883: -32,-6 + 884: -31,-6 + - node: + color: '#D381C9FF' + id: MiniTileSteelLineW + decals: + 871: -29,-1 + 872: -29,-2 + 873: -29,-3 + 888: -31,-8 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 613: -24,7 + - node: + color: '#EF7241FF' + id: MiniTileWhiteCornerNe + decals: + 752: -11,16 + 753: -9,14 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 612: -27,7 + - node: + color: '#EF7241FF' + id: MiniTileWhiteCornerNw + decals: + 756: -14,16 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 614: -24,5 + - node: + color: '#D381C9FF' + id: MiniTileWhiteCornerSe + decals: + 926: -25,-8 + - node: + color: '#EF7241FF' + id: MiniTileWhiteCornerSe + decals: + 754: -9,13 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 615: -27,5 + - node: + color: '#D381C9FF' + id: MiniTileWhiteCornerSw + decals: + 927: -29,-8 + - node: + color: '#EF7241FF' + id: MiniTileWhiteCornerSw + decals: + 755: -14,13 + - node: + color: '#7C5C98FF' + id: MiniTileWhiteInnerNe + decals: + 1402: 9,-3 + - node: + color: '#EF7241FF' + id: MiniTileWhiteInnerNe + decals: + 766: -11,14 + - node: + color: '#7C5C98FF' + id: MiniTileWhiteInnerSe + decals: + 1400: 13,1 + 1401: 9,-1 + - node: + color: '#7C5C98FF' + id: MiniTileWhiteInnerSw + decals: + 1403: 16,1 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 604: -24,6 + - node: + color: '#D381C9FF' + id: MiniTileWhiteLineE + decals: + 919: -25,-6 + 920: -25,-7 + - node: + color: '#EF7241FF' + id: MiniTileWhiteLineE + decals: + 761: -11,15 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 609: -26,7 + 610: -25,7 + - node: + color: '#D381C9FF' + id: MiniTileWhiteLineN + decals: + 928: -21,-6 + 929: -22,-6 + 930: -23,-6 + - node: + color: '#EF7241FF' + id: MiniTileWhiteLineN + decals: + 764: -13,16 + 765: -12,16 + 767: -10,14 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineS + decals: + 605: -26,5 + 606: -26,5 + 607: -25,5 + - node: + color: '#D381C9FF' + id: MiniTileWhiteLineS + decals: + 921: -26,-8 + 922: -27,-8 + 923: -28,-8 + 931: -23,-7 + 932: -22,-7 + 933: -21,-7 + - node: + color: '#EF7241FF' + id: MiniTileWhiteLineS + decals: + 757: -13,13 + 758: -12,13 + 759: -11,13 + 760: -10,13 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 608: -27,6 + - node: + color: '#D381C9FF' + id: MiniTileWhiteLineW + decals: + 924: -29,-7 + 925: -29,-6 + - node: + color: '#EF7241FF' + id: MiniTileWhiteLineW + decals: + 762: -14,14 + 763: -14,15 + - node: + color: '#334E6DC8' + id: MonoOverlay + decals: + 1338: -8,-32 + - node: + color: '#52B4E996' + id: MonoOverlay + decals: + 624: -11,10 + 625: -11,9 + 626: -11,6 + 627: -11,5 + 768: -10,7 + 769: -9,7 + 770: -13,12 + 771: -10,12 + 772: -9,12 + 773: -15,15 + 1337: -4,-35 + - node: + color: '#52B4E9FF' + id: MonoOverlay + decals: + 611: -25,8 + - node: + color: '#70707093' + id: MonoOverlay + decals: + 1340: -8,-34 + - node: + color: '#A14F9793' + id: MonoOverlay + decals: + 867: -27,-3 + 868: -28,-2 + 869: -27,-1 + 870: -26,-2 + 882: -27,-5 + - node: + color: '#A4610696' + id: MonoOverlay + decals: + 1165: 5,-25 + 1166: 7,-27 + 1167: 9,-25 + 1168: 10,-25 + 1169: 12,-23 + 1170: 12,-22 + 1171: 7,-22 + 1172: 7,-21 + 1173: 7,-24 + 1176: 17,-22 + 1177: 17,-23 + 1342: -3,-35 + - node: + color: '#A46106FF' + id: MonoOverlay + decals: + 1174: 20,-25 + 1175: 21,-25 + - node: + color: '#C78B1993' + id: MonoOverlay + decals: + 1339: -8,-33 + - node: + color: '#D381C996' + id: MonoOverlay + decals: + 944: -13,-8 + 945: -12,-8 + 946: -11,-7 + 947: -11,-6 + 948: -12,-5 + 949: -13,-5 + 950: -17,-8 + 1336: -5,-35 + - node: + color: '#D381C9FF' + id: MonoOverlay + decals: + 934: -24,-6 + 935: -24,-7 + 936: -20,-6 + 937: -20,-7 + 938: -14,-7 + 939: -14,-6 + - node: + color: '#EF663193' + id: MonoOverlay + decals: + 1378: 34,23 + - node: + color: '#EFB34196' + id: MonoOverlay + decals: + 1022: 14,-8 + 1023: 14,-7 + 1024: 15,-6 + 1025: 16,-6 + 1026: 22,-10 + 1027: 23,-10 + 1028: 24,-8 + 1029: 27,-10 + 1030: 17,-11 + 1031: 17,-12 + 1032: 25,-13 + 1033: 30,-12 + 1034: 30,-11 + 1341: -2,-35 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 327: 6,16 + 328: -4,31 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 477: 23,3 + 616: -7,7 + 617: -7,8 + 618: -7,9 + 619: -7,10 + 620: -7,11 + 621: -7,12 + 622: -7,13 + 623: -7,14 + 687: -13,7 + 688: -13,6 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale + decals: + 260: 7,4 + 261: 7,5 + 262: 7,6 + 263: 7,7 + 264: 7,8 + 265: 7,9 + 266: 7,10 + 275: 7,11 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 20: 7,1 + 28: 7,-8 + 29: -4,-8 + 30: -3,-8 + 31: -2,-8 + 32: -1,-8 + 33: 0,-8 + 34: 1,-8 + 39: 2,-8 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 1150: 5,-20 + 1151: 4,-20 + 1152: 3,-20 + 1192: 13,-21 + 1193: 13,-22 + 1194: 13,-24 + 1195: 13,-23 + 1196: 13,-25 + 1197: 13,-26 + 1198: 12,-26 + 1199: 11,-26 + 1200: 10,-26 + 1201: 9,-26 + 1202: 8,-26 + - node: + color: '#B02E26FF' + id: QuarterTileOverlayGreyscale + decals: + 1303: 42,29 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 48: -10,-10 + 49: -10,-9 + 50: -10,-8 + 51: -10,-7 + 52: -10,-6 + 53: -9,-6 + 54: -8,-6 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 463: 31,10 + 1465: 10,-5 + 1466: 11,-5 + - node: + color: '#EF5C1F93' + id: QuarterTileOverlayGreyscale + decals: + 518: 34,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 988: 12,-5 + 990: 18,-5 + 991: 18,-4 + 992: 19,-4 + 993: 20,-4 + 994: 21,-4 + 995: 22,-4 + 1005: 18,-8 + 1006: 18,-7 + 1007: 18,-6 + 1057: 28,-11 + 1058: 27,-11 + 1059: 26,-11 + 1060: 25,-11 + 1061: 24,-11 + 1086: 25,-8 + 1087: 25,-7 + 1088: 25,-6 + 1089: 25,-5 + 1090: 25,-4 + - node: + color: '#F9801DFF' + id: QuarterTileOverlayGreyscale + decals: + 1292: 45,34 + - node: + color: '#3C44AAFF' + id: QuarterTileOverlayGreyscale180 + decals: + 1285: 43,30 + 1286: 43,31 + 1287: 43,32 + 1288: 44,32 + 1289: 45,32 + 1290: 46,32 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 672: -26,9 + 673: -25,9 + 674: -24,9 + 675: -23,9 + 678: -21,8 + 679: -20,8 + 680: -19,8 + 681: -18,8 + 682: -17,8 + 683: -15,8 + 684: -16,8 + 685: -14,8 + 689: -12,8 + 690: -12,7 + 691: -12,6 + - node: + color: '#707070FF' + id: QuarterTileOverlayGreyscale180 + decals: + 55: -10,-10 + 61: -12,-11 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale180 + decals: + 276: -4,12 + 277: -3,13 + 283: -2,14 + 284: -1,14 + 285: 0,14 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 41: -5,-7 + 42: -5,-6 + 43: -5,-5 + 44: -5,-4 + 45: -5,-3 + 46: -5,-2 + 47: -5,-1 + 289: -5,3 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 426: 13,8 + 427: 14,8 + 428: 15,8 + 429: 16,8 + 430: 17,8 + 431: 18,8 + 432: 20,8 + 433: 19,8 + 434: 21,8 + 435: 22,8 + 436: 23,8 + 437: 24,8 + 438: 25,8 + 439: 26,8 + 440: 27,8 + 441: 28,8 + 442: 29,8 + 443: 30,8 + 444: 31,8 + 445: 32,8 + 446: 33,8 + 447: 33,9 + 448: 33,10 + 449: 33,11 + 450: 33,12 + 451: 33,13 + 452: 33,14 + 453: 33,15 + 454: 33,17 + 455: 33,16 + 505: 31,20 + 603: 12,8 + - node: + color: '#EF5C1F93' + id: QuarterTileOverlayGreyscale180 + decals: + 550: 30,25 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 996: 23,-5 + 997: 23,-6 + 998: 23,-7 + 999: 23,-8 + 1000: 23,-9 + 1001: 22,-9 + 1002: 21,-9 + 1003: 20,-9 + 1004: 19,-9 + 1051: 23,-12 + 1052: 22,-12 + 1053: 21,-12 + 1054: 20,-12 + 1055: 19,-12 + 1075: 14,-12 + 1091: 26,-9 + 1092: 27,-9 + 1093: 28,-9 + 1094: 29,-9 + - node: + color: '#F9801DFF' + id: QuarterTileOverlayGreyscale180 + decals: + 1291: 46,33 + - node: + color: '#2BAF9D93' + id: QuarterTileOverlayGreyscale270 + decals: + 1447: 32,-12 + 1448: 31,-12 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 330: 0,27 + 331: 3,23 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 676: -22,9 + 686: -13,8 + 1463: 10,-9 + 1464: 11,-9 + - node: + color: '#707070FF' + id: QuarterTileOverlayGreyscale270 + decals: + 56: -6,-10 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale270 + decals: + 278: 6,12 + 279: 5,13 + 280: 4,14 + 281: 3,14 + 282: 2,14 + - node: + color: '#9D9D97FF' + id: QuarterTileOverlayGreyscale270 + decals: + 1295: 39,33 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 19: 7,3 + 21: 7,-1 + 22: 7,-2 + 23: 7,-3 + 24: 7,-4 + 25: 7,-5 + 26: 7,-6 + 27: 7,-7 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 1147: 5,-24 + 1148: 4,-24 + 1149: 3,-24 + 1178: 8,-28 + 1179: 9,-28 + 1210: 18,-22 + 1211: 18,-23 + 1212: 18,-24 + 1213: 19,-24 + 1214: 20,-24 + 1215: 21,-24 + - node: + color: '#B02E26FF' + id: QuarterTileOverlayGreyscale270 + decals: + 1279: 39,32 + 1280: 40,32 + 1281: 41,32 + 1282: 42,32 + 1283: 42,31 + 1284: 42,30 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 456: 31,17 + 457: 31,16 + 458: 31,15 + 459: 31,14 + 460: 31,13 + 461: 31,12 + 462: 31,11 + 506: 34,20 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 989: 12,-9 + 1047: 28,-12 + 1048: 27,-12 + 1049: 26,-12 + 1050: 25,-12 + 1056: 24,-12 + 1442: 31,-11 + 1443: 32,-11 + - node: + color: '#2BAF9D93' + id: QuarterTileOverlayGreyscale90 + decals: + 1441: 31,-11 + 1445: 32,-12 + 1446: 32,-11 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 326: 2,16 + 329: -1,31 + 341: 1,25 + - node: + color: '#3C44AAFF' + id: QuarterTileOverlayGreyscale90 + decals: + 1304: 43,29 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 476: 21,3 + 650: -12,11 + 651: -13,11 + 652: -15,11 + 653: -14,11 + 654: -16,11 + 655: -17,11 + 656: -18,11 + 657: -19,11 + 658: -20,11 + 659: -21,11 + 660: -22,11 + 661: -23,11 + 662: -24,11 + 663: -25,11 + 664: -26,11 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale90 + decals: + 267: -5,4 + 268: -5,5 + 269: -5,6 + 270: -5,7 + 271: -5,8 + 272: -5,9 + 273: -5,10 + 274: -5,11 + - node: + color: '#9D9D97FF' + id: QuarterTileOverlayGreyscale90 + decals: + 1296: 40,34 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 35: 6,-8 + 36: 5,-8 + 38: 4,-8 + 40: -5,-8 + 288: -5,1 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 1180: 22,-26 + 1181: 21,-26 + 1182: 20,-26 + 1183: 19,-26 + 1184: 18,-26 + 1185: 16,-26 + 1186: 17,-26 + 1187: 16,-25 + 1188: 16,-24 + 1189: 16,-23 + 1190: 16,-22 + 1191: 16,-21 + 1205: 22,-21 + 1206: 21,-21 + 1207: 20,-21 + 1208: 19,-21 + 1209: 22,-22 + 1469: 22,-23 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 844: -12,-2 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 377: 9,15 + 378: 9,14 + 379: 9,13 + 380: 9,12 + 407: 30,10 + 408: 29,10 + 409: 27,10 + 410: 28,10 + 411: 26,10 + 412: 24,10 + 413: 25,10 + 414: 23,10 + 415: 22,10 + 416: 21,10 + 417: 20,10 + 418: 19,10 + 419: 18,10 + 420: 17,10 + 421: 16,10 + 422: 15,10 + 423: 14,10 + 424: 13,10 + 425: 12,10 + - node: + color: '#EF5C1F93' + id: QuarterTileOverlayGreyscale90 + decals: + 517: 31,21 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 1062: 23,-11 + 1063: 22,-11 + 1064: 21,-11 + 1065: 20,-11 + 1066: 19,-11 + 1444: 31,-12 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 1379: -27.060997,22.876055 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 1380: -25.107872,21.001055 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1381: -25.060997,22.89168 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 1382: -23.045372,24.001055 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 976: -17,-7 + 977: -8,-10 + 978: -8,-15 + 982: -27,-4 + 1132: 10,-27 + 1133: 14,-27 + 1394: 12,26 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1234: -40,22 + - node: + color: '#2BAF9D93' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1438: 31,-17 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 291: -12,31 + 311: -15,31 + 317: 3,19 + 336: -4,32 + 337: -6,31 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 478: 20,7 + 666: -27,11 + 723: -18,21 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1216: 18,-21 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 843: -13,-1 + 915: -19,-1 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 465: 11,10 + 467: 31,18 + 551: 36,13 + 579: 11,15 + - node: + color: '#EF5C1F93' + id: ThreeQuarterTileOverlayGreyscale + decals: + 537: 27,28 + 544: 24,28 + 545: 24,25 + - node: + color: '#EF791B93' + id: ThreeQuarterTileOverlayGreyscale + decals: + 591: 11,6 + 592: 14,6 + 593: 17,6 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1017: 15,-7 + 1068: 18,-11 + 1073: 11,-11 + - node: + color: '#2BAF9D93' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1440: 33,-19 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 293: -8,26 + 314: -14,30 + 315: 5,18 + 340: 5,21 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 481: 23,5 + 668: -12,5 + 726: -13,18 + - node: + color: '#9D9D97FF' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1294: 40,33 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1143: 6,-24 + 1217: 22,-24 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 840: -9,-4 + 918: -15,-7 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 554: 38,10 + 581: 12,12 + - node: + color: '#EF5C1F93' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 540: 30,24 + 541: 33,25 + 542: 25,24 + 543: 25,27 + - node: + color: '#EF791B93' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 597: 12,5 + 598: 15,5 + 599: 18,5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 984: 13,-9 + 1019: 16,-9 + 1070: 29,-12 + 1071: 16,-12 + 1076: 14,-13 + - node: + color: '#2BAF9D93' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1439: 31,-19 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 292: -12,26 + 313: -15,30 + 318: 3,18 + 332: 3,21 + 338: 0,23 + 339: -6,27 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 480: 20,5 + 665: -27,9 + 667: -13,5 + 677: -22,8 + 725: -18,18 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 839: -13,-4 + 917: -19,-7 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 464: 11,8 + 553: 36,10 + 578: 11,12 + - node: + color: '#EF5C1F93' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 539: 27,24 + 548: 24,24 + 549: 24,27 + - node: + color: '#EF791B93' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 594: 11,5 + 595: 14,5 + 596: 17,5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1011: 18,-9 + 1018: 15,-9 + 1069: 18,-12 + 1074: 11,-13 + 1085: 25,-9 + - node: + color: '#F9801DFF' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1293: 45,33 + - node: + color: '#2BAF9D93' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1437: 33,-17 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 290: -8,31 + 312: -14,31 + 316: 5,19 + 333: 5,25 + 334: 1,31 + 335: -1,32 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 479: 23,7 + 724: -13,21 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1142: 6,-20 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 841: -9,-2 + 842: -12,-1 + 916: -15,-1 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 466: 33,18 + 552: 38,13 + 580: 12,15 + - node: + color: '#EF5C1F93' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 538: 33,28 + 546: 25,28 + 547: 25,25 + - node: + color: '#EF791B93' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 588: 12,6 + 589: 15,6 + 590: 18,6 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 983: 13,-5 + 1012: 23,-4 + 1016: 16,-7 + 1067: 29,-11 + 1072: 16,-11 + - node: + color: '#FFFFFFFF' + id: VentSmall + decals: + 972: -21,-18 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 129: -1,46 + 1270: -7,52 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 134: -2,46 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 5: -9,-15 + 133: -1,45 + 1406: -12,-52 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 209: -2,23 + 1013: 17,-4 + 1376: -41,23 + 1467: 18,-1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 853: -11,-1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 81: -8,49 + 82: -9,50 + 135: -3,46 + 866: -29,-4 + 1233: -40,20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 6: -6,-15 + 79: -6,49 + 80: -5,50 + 198: -2,23 + 213: -4,24 + 865: -25,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 83: -9,54 + 84: -8,55 + 1140: 9,-28 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 85: -6,55 + 86: -5,54 + 210: -4,26 + 1141: 15,-28 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 13: -10,-16 + 14: -10,-15 + 15: -10,-14 + 16: -10,-13 + 17: -10,-12 + 74: -9,53 + 75: -9,52 + 76: -9,51 + 136: -2,45 + 137: -2,44 + 207: -2,24 + 208: -2,25 + 862: -29,-3 + 863: -29,-2 + 864: -29,-1 + 1230: -40,21 + 1231: -40,22 + 1232: -40,23 + 1269: -6,52 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 67: -13,-8 + 68: -12,-8 + 77: -7,55 + 130: -2,47 + 131: -1,47 + 204: -5,23 + 205: -4,23 + 206: -3,23 + 854: -10,-1 + 855: -9,-1 + 1014: 16,-4 + 1015: 15,-4 + 1136: 11,-28 + 1137: 13,-28 + 1138: 14,-28 + 1139: 12,-28 + 1204: 10,-28 + 1266: -7,51 + 1377: -42,23 + 1409: -17,-12 + 1410: -16,-12 + 1428: -18,-16 + 1429: -17,-16 + 1430: -16,-16 + 1431: -18,-12 + 1468: 17,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 0: -11,-12 + 1: -11,-13 + 2: -11,-14 + 3: -11,-15 + 4: -11,-16 + 7: -9,-16 + 8: -6,-13 + 9: -6,-12 + 10: -6,-14 + 71: -5,52 + 72: -5,51 + 73: -5,53 + 132: -1,44 + 199: -2,25 + 200: -2,24 + 211: -4,25 + 856: -25,-1 + 857: -25,-2 + 858: -25,-3 + 1267: -8,52 + 1407: -12,-53 + 1408: -12,-54 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 11: -8,-15 + 12: -7,-15 + 69: -13,-8 + 70: -12,-8 + 78: -7,49 + 201: -5,23 + 202: -4,23 + 203: -3,23 + 212: -5,24 + 859: -28,-4 + 860: -27,-4 + 861: -26,-4 + 951: -17,-9 + 952: -16,-9 + 953: -18,-17 + 954: -17,-17 + 955: -16,-17 + 956: -19,-17 + 957: -20,-17 + 970: -21,-17 + 971: -15,-17 + 1268: -7,53 + 1411: -17,-12 + 1412: -16,-12 + 1425: -18,-9 + 1432: -18,-12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 1272: 41,31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 1271: 44,31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 257: -4,9 + 258: -1,8 + 259: 3,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 254: 6,9 + 255: 3,8 + 256: -1,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 251: -1,12 + 252: -4,8 + 253: 3,12 + 1242: -8,-27 + 1243: -4,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 248: 6,8 + 249: -1,12 + 250: 3,12 + 1240: -6,-27 + 1241: -2,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 243: -1,11 + 244: -1,10 + 245: -1,9 + 246: 3,10 + 247: 3,11 + 1274: 41,30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 234: 0,8 + 235: 1,8 + 236: 2,8 + 237: -3,9 + 238: -2,9 + 239: 4,9 + 240: 5,9 + 833: 3,4 + 834: 4,4 + 1275: 40,31 + 1276: 39,31 + 1277: 45,31 + 1278: 46,31 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 216: -3,8 + 217: -2,8 + 218: -1,8 + 219: 0,8 + 220: 1,8 + 221: 1,8 + 222: 2,8 + 223: 3,8 + 224: 4,8 + 225: 5,8 + 226: 5,8 + 227: 0,12 + 228: 1,12 + 229: 2,12 + 1238: -7,-27 + 1239: -3,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 230: 3,11 + 231: 3,11 + 232: 3,9 + 233: 3,10 + 241: -1,10 + 242: -1,11 + 1273: 44,30 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 32767 + 1: 32768 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -8,0: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + 4,0: + 0: 65535 + 5,0: + 0: 65535 + 6,0: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + -8,4: + 0: 65535 + -7,4: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -6,6: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + 0,8: + 0: 32095 + 1,8: + 0: 6559 + -4,8: + 0: 44911 + -3,8: + 0: 28655 + -2,8: + 0: 58287 + -1,8: + 0: 61951 + -5,8: + 0: 28495 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -1,-4: + 0: 65535 + -8,-3: + 0: 65535 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65533 + -6,-3: + 0: 65533 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -4,-5: + 0: 65535 + -3,-5: + 0: 65535 + -2,-5: + 0: 65535 + -1,-5: + 0: 65535 + -6,-5: + 0: 65535 + -5,-5: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 1,-4: + 0: 65535 + 2,-4: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 2,6: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 0,-8: + 0: 65535 + 1,-8: + 0: 65521 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65534 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -7,5: + 0: 65535 + -7,6: + 0: 65535 + -6,7: + 0: 16383 + -7,-4: + 0: 65279 + 2: 256 + -4,-6: + 0: 65535 + -4,-8: + 0: 65534 + -4,-7: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -7,-5: + 0: 65535 + -7,-6: + 0: 65535 + -6,-6: + 0: 65535 + -5,-6: + 0: 65535 + 4,4: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 61951 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,2: + 0: 65535 + 9,3: + 0: 65535 + 10,0: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 65535 + 10,3: + 0: 65535 + 11,0: + 0: 65535 + 11,1: + 0: 65535 + 11,2: + 0: 65535 + 11,3: + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 65535 + 8,7: + 0: 65535 + 9,4: + 0: 65535 + 9,5: + 0: 65535 + 9,6: + 0: 65535 + 9,7: + 0: 65535 + 10,4: + 0: 65535 + 10,5: + 0: 65535 + 11,4: + 0: 65535 + 8,8: + 0: 65535 + 9,8: + 0: 65535 + 5,8: + 0: 65535 + 6,8: + 0: 65535 + 7,8: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 65535 + 9,-1: + 0: 65535 + 10,-4: + 0: 63479 + 3: 8 + 4: 2048 + 10,-3: + 0: 63479 + 4: 2056 + 10,-2: + 0: 63479 + 5: 8 + 6: 2048 + 10,-1: + 0: 65535 + 11,-4: + 3: 3 + 0: 64764 + 4: 768 + 11,-3: + 4: 771 + 0: 64764 + 11,-2: + 5: 3 + 0: 64764 + 6: 768 + 11,-1: + 0: 65535 + 4,-8: + 0: 65534 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 65327 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-8: + 0: 61696 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-8: + 0: 28672 + 7,-7: + 0: 23933 + 7,-6: + 0: 63447 + 7,-5: + 0: 65535 + 12,0: + 0: 4369 + 12,1: + 0: 4369 + 12,2: + 0: 4369 + 12,3: + 0: 4369 + 8,-7: + 0: 65327 + 8,-6: + 0: 65331 + 4: 204 + 8,-5: + 0: 65535 + 9,-7: + 0: 32559 + 9,-6: + 4: 17 + 0: 63462 + 9,-5: + 0: 65535 + 10,-7: + 0: 4369 + 10,-6: + 0: 16145 + 10,-5: + 0: 63487 + 4: 2048 + 11,-6: + 0: 40704 + 11,-5: + 0: 64767 + 4: 768 + 0,-9: + 0: 65535 + -3,-9: + 0: 63984 + -2,-9: + 0: 65533 + -1,-9: + 0: 65535 + 12,-4: + 0: 12834 + 12,-3: + 0: 12834 + 12,-2: + 0: 8994 + 12,-1: + 0: 12850 + 12,4: + 0: 12561 + 12,-6: + 0: 8960 + 12,-5: + 0: 8754 + -9,0: + 0: 65535 + 2,7: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + -8,7: + 0: 61182 + -7,7: + 0: 65535 + 0,9: + 0: 48826 + 0,10: + 0: 21621 + 0,11: + 0: 63477 + 1,9: + 0: 1 + 1,11: + 0: 64240 + 3,8: + 0: 20479 + -4,9: + 0: 52390 + -4,11: + 0: 41580 + -4,10: + 0: 34952 + -3,9: + 0: 27503 + -3,10: + 0: 65199 + -3,11: + 0: 65518 + -2,9: + 0: 58361 + -2,10: + 0: 64245 + -2,11: + 0: 65535 + -1,9: + 0: 62712 + -1,10: + 0: 62706 + -1,11: + 0: 65535 + -8,8: + 0: 65327 + -8,9: + 0: 65327 + -8,10: + 0: 11183 + -8,11: + 0: 14 + -7,8: + 0: 65375 + -7,9: + 0: 65311 + -7,10: + 0: 43839 + -7,11: + 0: 15 + -6,8: + 0: 32079 + -6,9: + 0: 21845 + -6,10: + 0: 1863 + -8,-4: + 0: 65535 + -8,-8: + 0: 65525 + -8,-7: + 0: 65525 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -7,-8: + 0: 44962 + -7,-7: + 0: 65530 + -6,-8: + 0: 65529 + -6,-7: + 0: 65535 + -5,-8: + 0: 64186 + -5,-7: + 0: 65535 + -12,-4: + 0: 2794 + -11,-4: + 0: 61439 + -11,-3: + 0: 61166 + -11,-2: + 0: 61182 + -11,-1: + 0: 61423 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-4: + 0: 65535 + 4,5: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 10,6: + 0: 65535 + 8,9: + 0: 2047 + 9,9: + 0: 4095 + 4,8: + 0: 61439 + 4,9: + 0: 3823 + 5,9: + 0: 3583 + 6,9: + 0: 2047 + 7,9: + 0: 3327 + -4,-12: + 0: 12031 + -4,-11: + 0: 44722 + -4,-10: + 0: 43770 + -4,-9: + 0: 58610 + -3,-12: + 0: 3007 + -12,0: + 0: 34824 + -12,1: + 0: 2184 + -12,2: + 0: 34816 + -12,3: + 0: 2184 + -11,0: + 0: 65518 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 61439 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -11,4: + 0: 61182 + -11,5: + 0: 61167 + -11,6: + 0: 36527 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 61167 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 65535 + -9,7: + 0: 35002 + -12,-6: + 0: 43054 + -12,-5: + 0: 43754 + -11,-7: + 0: 65439 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -10,-7: + 0: 64393 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -10,-8: + 0: 34952 + -9,-8: + 0: 61410 + -9,-7: + 0: 65508 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -10,-10: + 0: 32768 + -10,-9: + 0: 34952 + -9,-10: + 0: 45792 + -9,-9: + 0: 65258 + -8,-10: + 0: 63984 + -8,-9: + 0: 65523 + -7,-10: + 0: 12288 + -7,-9: + 0: 58146 + -6,-12: + 0: 3754 + -6,-11: + 0: 34944 + -6,-10: + 0: 34952 + -6,-9: + 0: 63624 + -5,-12: + 0: 60335 + -5,-11: + 0: 60330 + -5,-10: + 0: 60090 + -5,-9: + 0: 64186 + -9,8: + 0: 17484 + -9,9: + 0: 17484 + -9,10: + 0: 3140 + 0,12: + 0: 65535 + 0,13: + 0: 65535 + 0,14: + 0: 62207 + 0,15: + 0: 48757 + 1,12: + 0: 65471 + 1,13: + 0: 49147 + 1,14: + 0: 63935 + -4,12: + 0: 43694 + -4,13: + 0: 60142 + -4,14: + 0: 28330 + -4,15: + 0: 12 + -3,12: + 0: 65535 + -3,13: + 0: 65535 + -3,14: + 0: 16383 + -3,15: + 0: 15 + -2,12: + 0: 65535 + -2,13: + 0: 65535 + -2,14: + 0: 40959 + -2,15: + 0: 34831 + -1,12: + 0: 65535 + -1,13: + 0: 65535 + -1,14: + 0: 61439 + -1,15: + 0: 53151 + -6,-14: + 0: 34952 + -6,-13: + 0: 60138 + -5,-14: + 0: 65519 + -5,-13: + 0: 65535 + -5,-16: + 0: 11852 + -5,-15: + 0: 44714 + -4,-16: + 0: 32543 + -4,-15: + 0: 12287 + -4,-14: + 0: 65535 + -4,-13: + 0: 65535 + -3,-16: + 0: 8977 + -3,-15: + 0: 8754 + -3,-14: + 0: 49075 + -3,-13: + 0: 48123 + 10,7: + 0: 65535 + 11,5: + 0: 65535 + 11,6: + 0: 65535 + 11,7: + 0: 65535 + 10,8: + 0: 65535 + 10,9: + 0: 239 + 11,8: + 0: 65535 + 11,9: + 0: 255 + 12,5: + 0: 13107 + 12,6: + 0: 13107 + 12,7: + 0: 13107 + 12,8: + 0: 13107 + 12,9: + 0: 49 + 1,-9: + 0: 4369 + -12,-2: + 0: 34952 + -12,-1: + 0: 34952 + -3,-10: + 0: 49152 + -2,-10: + 0: 7936 + -1,-10: + 0: 9984 + -12,-7: + 0: 17484 + 2,8: + 0: 4095 + 3,9: + 0: 14 + -5,9: + 0: 15 + -12,4: + 0: 34952 + -12,5: + 0: 34952 + -12,6: + 0: 136 + -11,7: + 0: 136 + -10,7: + 0: 242 + -2,16: + 0: 34952 + -2,17: + 0: 8 + -1,16: + 0: 52847 + 3: 128 + -1,17: + 0: 245 + 0,16: + 0: 39931 + 0,17: + 0: 124 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Cluster + type: BecomesStation + - type: SpreaderGrid + - type: GridPathfinding + - uid: 12281 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: GridTree + - type: MovedGrids +- proto: AcousticGuitarInstrument + entities: + - uid: 5973 + components: + - pos: 3.5402613,7.6028175 + parent: 1 + type: Transform +- proto: AdvancedCapacitorStockPart + entities: + - uid: 9498 + components: + - pos: -2.8552828,-31.280602 + parent: 1 + type: Transform + - uid: 9500 + components: + - pos: -3.7302828,-31.280602 + parent: 1 + type: Transform +- proto: AdvancedMatterBinStockPart + entities: + - uid: 9499 + components: + - pos: -3.3396578,-31.327477 + parent: 1 + type: Transform +- proto: AirAlarm + entities: + - uid: 8049 + components: + - pos: 29.5,11.5 + parent: 1 + type: Transform + - devices: + - 3203 + - 3204 + - 3205 + - 3219 + - 3327 + - 3217 + - 3213 + - 3214 + - 3215 + - 11609 + - 11608 + - 10602 + - 10601 + - 10599 + - 10600 + - 10548 + - 10550 + type: DeviceList + - uid: 11592 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,27.5 + parent: 1 + type: Transform + - devices: + - 3197 + - 3194 + - 3198 + - 10762 + - 10763 + type: DeviceList + - uid: 11593 + components: + - rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - devices: + - 3193 + - 3192 + - 3196 + - 3194 + - 3195 + - 10748 + - 10751 + - 10749 + - 10750 + - 10724 + - 10727 + - 10725 + - 10726 + type: DeviceList + - uid: 11594 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 1 + type: Transform + - devices: + - 3185 + - 3191 + - 3193 + - 3192 + - 3186 + - 10696 + - 10697 + - 10812 + - 10706 + - 10707 + - 10813 + type: DeviceList + - uid: 11598 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 1 + type: Transform + - devices: + - 5009 + - 5010 + - 5011 + - 3190 + - 3199 + - 3191 + - 3134 + - 3133 + - 46 + - 5004 + - 5003 + - 5002 + - 5000 + - 5001 + - 10665 + - 10664 + - 10821 + - 10814 + type: DeviceList + - uid: 11601 + components: + - pos: 17.5,11.5 + parent: 1 + type: Transform + - devices: + - 3200 + - 3201 + - 3202 + - 1766 + - 1765 + - 3209 + - 3208 + - 3206 + - 3207 + - 3203 + - 3204 + - 3205 + - 10552 + - 10551 + - 10547 + - 10549 + - 10514 + - 10511 + - 10513 + - 10510 + - 10512 + - 10509 + - 11605 + - 11604 + type: DeviceList + - uid: 11611 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,25.5 + parent: 1 + type: Transform + - devices: + - 3224 + - 3225 + - 3226 + - 3227 + - 3228 + - 3220 + - 3221 + - 3222 + - 3223 + - 10658 + - 10663 + - 10662 + - 10660 + - 10661 + - 10659 + type: DeviceList + - uid: 11612 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - devices: + - 3134 + - 3133 + - 46 + - 3135 + - 3136 + - 3138 + - 3137 + - 11622 + - 11621 + - 11620 + - 11619 + - 11618 + - 11617 + - 11616 + - 11615 + - 11614 + - 10778 + - 10786 + - 10785 + - 10772 + type: DeviceList + - uid: 11623 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform + - devices: + - 3143 + - 3141 + - 3142 + - 3139 + - 3140 + - 10247 + - 11176 + - 10773 + - 10246 + type: DeviceList + - uid: 11625 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - devices: + - 3145 + - 3146 + - 3143 + - 3142 + - 11337 + - 10248 + type: DeviceList + - uid: 11630 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - devices: + - 3120 + - 3119 + - 3118 + - 3149 + - 3150 + - 3151 + - 5508 + - 5498 + - 5495 + - 5008 + - 5003 + - 5002 + - 5004 + - 3135 + - 3136 + - 10994 + - 10995 + type: DeviceList + - uid: 11632 + components: + - pos: -17.5,12.5 + parent: 1 + type: Transform + - devices: + - 3183 + - 3184 + - 3171 + - 3170 + - 3169 + - 3168 + - 3167 + - 3166 + - 3165 + - 3189 + - 3164 + - 3173 + - 3172 + - 10879 + - 10880 + - 10902 + - 10900 + - 11646 + - 11645 + - 10903 + - 10901 + - 10924 + - 10921 + type: DeviceList + - uid: 11634 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 11636 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 1 + type: Transform + - devices: + - 10923 + - 10922 + - 3164 + - 3188 + type: DeviceList + - uid: 11638 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 1 + type: Transform + - devices: + - 3187 + - 11637 + - 11643 + - 10967 + - 10972 + - 10971 + - 10969 + - 10968 + - 10970 + type: DeviceList + - uid: 11642 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - devices: + - 3178 + - 3179 + - 3180 + - 3181 + - 10899 + - 10944 + type: DeviceList + - uid: 11647 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform + - devices: + - 3151 + - 3150 + - 3149 + - 3155 + - 3156 + - 3157 + - 11054 + - 11057 + type: DeviceList + - uid: 11649 + components: + - pos: -27.5,4.5 + parent: 1 + type: Transform + - devices: + - 3151 + - 3150 + - 3149 + - 3155 + - 3156 + - 3157 + - 11054 + - 11057 + - 2284 + - 2094 + - 3160 + - 3272 + - 3273 + - 3158 + - 3159 + - 3161 + - 11058 + - 11055 + - 11059 + - 11042 + type: DeviceList + - uid: 11651 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 1 + type: Transform + - devices: + - 11085 + - 11083 + - 11084 + - 11082 + - 3158 + - 3159 + - 3161 + - 11653 + type: DeviceList + - uid: 11655 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,6.5 + parent: 1 + type: Transform + - devices: + - 2284 + - 2094 + - 3160 + - 3162 + - 3163 + - 11149 + - 11147 + - 11151 + - 11150 + type: DeviceList + - uid: 11657 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 1 + type: Transform + - devices: + - 11162 + - 11174 + - 11163 + - 11175 + - 3272 + - 3273 + type: DeviceList + - uid: 11658 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - devices: + - 11195 + - 11332 + - 3115 + - 3116 + - 3117 + - 3104 + - 3103 + - 3102 + - 3096 + - 3097 + - 3100 + - 3101 + - 3118 + - 3119 + - 3120 + type: DeviceList + - uid: 11660 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 1 + type: Transform + - devices: + - 11234 + - 11233 + - 3094 + - 3095 + - 3102 + - 3103 + - 3104 + - 3105 + type: DeviceList + - uid: 11661 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 1 + type: Transform + - devices: + - 11667 + type: DeviceList + - uid: 11662 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 1 + type: Transform + - devices: + - 11666 + type: DeviceList + - uid: 11664 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 1 + type: Transform + - devices: + - 11286 + - 11284 + - 11283 + - 11285 + - 3111 + - 3112 + - 3113 + - 3106 + - 3107 + - 3108 + - 3109 + type: DeviceList + - uid: 11670 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - devices: + - 1979 + - 2283 + - 996 + - 11321 + - 11322 + - 11320 + - 11323 + type: DeviceList + - uid: 11672 + components: + - pos: -17.5,0.5 + parent: 1 + type: Transform + - devices: + - 3091 + - 3090 + - 3109 + - 3093 + - 3092 + - 11260 + - 11261 + - 11331 + - 11330 + type: DeviceList + - uid: 11674 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - devices: + - 3117 + - 3116 + - 3115 + - 3145 + - 3121 + - 3122 + - 3123 + - 3266 + - 3265 + - 3264 + - 11366 + - 11367 + type: DeviceList + - uid: 11676 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - devices: + - 3123 + - 3122 + - 3121 + - 11629 + - 11628 + - 11627 + - 3125 + - 3124 + - 3126 + - 3243 + - 10197 + - 10204 + - 3828 + - 7182 + - 10219 + - 10220 + - 1832 + - 3055 + type: DeviceList + - uid: 11678 + components: + - pos: 21.5,-2.5 + parent: 1 + type: Transform + - devices: + - 3229 + - 3230 + - 3233 + - 3232 + - 10160 + - 10161 + - 10112 + - 10113 + - 11687 + - 11688 + type: DeviceList + - uid: 11680 + components: + - pos: 14.5,-9.5 + parent: 1 + type: Transform + - devices: + - 3231 + - 3232 + - 3233 + - 3241 + - 3242 + - 10145 + - 10144 + - 10143 + - 10142 + type: DeviceList + - uid: 11682 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - devices: + - 3235 + - 3234 + - 3232 + - 3233 + - 3240 + - 10114 + - 10115 + - 11687 + - 11688 + - 11689 + type: DeviceList + - uid: 11684 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 1 + type: Transform + - devices: + - 7152 + - 7151 + - 3236 + - 3237 + - 1222 + - 11686 + type: DeviceList + - uid: 11690 + components: + - pos: 19.5,4.5 + parent: 1 + type: Transform + - devices: + - 3129 + - 3128 + - 3127 + - 3498 + - 3499 + - 10358 + - 10361 + type: DeviceList + - uid: 11692 + components: + - pos: 32.5,4.5 + parent: 1 + type: Transform + - devices: + - 3499 + - 3498 + - 3501 + - 3502 + - 3503 + - 10362 + - 10359 + type: DeviceList + - uid: 11694 + components: + - rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 1 + type: Transform + - devices: + - 3503 + - 3502 + - 3501 + - 3504 + - 3505 + - 3506 + - 10360 + - 10363 + type: DeviceList + - uid: 11697 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,10.5 + parent: 1 + type: Transform + - devices: + - 3506 + - 3505 + - 3504 + - 3507 + - 4898 + - 10388 + - 10390 + - 10389 + - 10391 + type: DeviceList + - uid: 11698 + components: + - rot: 3.141592653589793 rad + pos: 40.5,20.5 + parent: 1 + type: Transform + - devices: + - 10413 + - 10414 + type: DeviceList + - uid: 11699 + components: + - rot: 3.141592653589793 rad + pos: 43.5,24.5 + parent: 1 + type: Transform + - devices: + - 4898 + - 4897 + - 11703 + - 11704 + - 10432 + - 10433 + type: DeviceList + - uid: 11700 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,32.5 + parent: 1 + type: Transform + - devices: + - 11703 + - 11704 + - 10448 + - 10450 + - 10449 + - 10451 + type: DeviceList + - uid: 11705 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + type: Transform + - devices: + - 3262 + - 3261 + - 3263 + - 3264 + - 3265 + - 3266 + - 11410 + - 11408 + type: DeviceList + - uid: 11707 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 1 + type: Transform + - devices: + - 3260 + - 3259 + - 3258 + - 3267 + - 3270 + - 3269 + - 3271 + - 3268 + - 11476 + - 11472 + - 11473 + - 11477 + - 11471 + - 11479 + - 11481 + - 11482 + - 11478 + - 11474 + - 11480 + - 11475 + type: DeviceList + - uid: 11709 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 1 + type: Transform + - devices: + - 3584 + - 3585 + - 3586 + - 3587 + - 3263 + - 3262 + - 3261 + - 3260 + - 3259 + - 3258 + - 7083 + - 7084 + - 7085 + - 11409 + - 11411 + type: DeviceList + - uid: 11711 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1 + type: Transform + - devices: + - 7086 + - 7083 + - 7084 + - 7085 + - 11507 + - 11510 + type: DeviceList + - uid: 11714 + components: + - pos: 10.5,-16.5 + parent: 1 + type: Transform + - devices: + - 3247 + - 3246 + - 3250 + - 3251 + - 3252 + - 3253 + - 2186 + - 11719 + - 11720 + type: DeviceList + - uid: 11718 + components: + - pos: 19.5,-19.5 + parent: 1 + type: Transform + - devices: + - 7250 + - 7249 + - 3595 + - 7301 + - 3257 + - 11589 + - 11587 + - 11588 + - 11590 + type: DeviceList +- proto: AirCanister + entities: + - uid: 6999 + components: + - pos: 37.5,-4.5 + parent: 1 + type: Transform + - uid: 7000 + components: + - pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 7004 + components: + - pos: 37.5,-2.5 + parent: 1 + type: Transform + - uid: 7204 + components: + - pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 8862 + components: + - pos: -15.5,-20.5 + parent: 1 + type: Transform + - uid: 8867 + components: + - pos: -27.5,-10.5 + parent: 1 + type: Transform + - uid: 8868 + components: + - pos: -34.5,-19.5 + parent: 1 + type: Transform + - uid: 9126 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 9180 + components: + - pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 9250 + components: + - pos: 33.5,32.5 + parent: 1 + type: Transform + - uid: 9336 + components: + - pos: 35.5,18.5 + parent: 1 + type: Transform + - uid: 9337 + components: + - pos: 21.5,25.5 + parent: 1 + type: Transform + - uid: 9338 + components: + - pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 9691 + components: + - pos: -17.5,23.5 + parent: 1 + type: Transform + - uid: 9692 + components: + - pos: -7.5,22.5 + parent: 1 + type: Transform + - uid: 12006 + components: + - pos: 11.5,-8.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 3575 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 3576 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-27.5 + parent: 1 + type: Transform + - uid: 3577 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 3600 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-26.5 + parent: 1 + type: Transform + - uid: 3601 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-26.5 + parent: 1 + type: Transform + - uid: 3602 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 1 + type: Transform +- proto: AirlockArmoryLocked + entities: + - uid: 3314 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 3347 + components: + - pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 3348 + components: + - pos: 33.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 3321 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 3322 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 3323 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 3324 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 4899 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,29.5 + parent: 1 + type: Transform + - uid: 4901 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,29.5 + parent: 1 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 3282 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 9651 + components: + - pos: 10.5,26.5 + parent: 1 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 3588 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 3589 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 3590 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 1 + type: Transform + - uid: 3591 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1 + type: Transform + - uid: 3592 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 3593 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 3445 + components: + - pos: -32.5,12.5 + parent: 1 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 3400 + components: + - rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 1 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 3344 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 3399 + components: + - rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 3275 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 3276 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 3277 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 3278 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 3279 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 3609 + components: + - rot: 3.141592653589793 rad + pos: -9.5,44.5 + parent: 1 + type: Transform + - uid: 4906 + components: + - rot: 3.141592653589793 rad + pos: 43.5,22.5 + parent: 1 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 3611 + components: + - rot: 3.141592653589793 rad + pos: -4.5,45.5 + parent: 1 + type: Transform +- proto: AirlockDetectiveLocked + entities: + - uid: 3325 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 3333 + components: + - pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 3334 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 3335 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 3336 + components: + - pos: 24.5,-7.5 + parent: 1 + type: Transform + - uid: 3337 + components: + - pos: 15.5,-5.5 + parent: 1 + type: Transform + - uid: 3338 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 3339 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 3340 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 3341 + components: + - pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 3342 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 3343 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 3345 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - uid: 3346 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 3357 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 3359 + components: + - rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 3360 + components: + - rot: 3.141592653589793 rad + pos: -19.5,25.5 + parent: 1 + type: Transform + - uid: 3361 + components: + - rot: 3.141592653589793 rad + pos: -25.5,28.5 + parent: 1 + type: Transform + - uid: 3362 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 3363 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 3364 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 3557 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,18.5 + parent: 1 + type: Transform + - uid: 4510 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 7082 + components: + - name: Tech Vault + type: MetaData + - pos: -0.5,-32.5 + parent: 1 + type: Transform +- proto: AirlockExternal + entities: + - uid: 3550 + components: + - pos: -39.5,-12.5 + parent: 1 + type: Transform + - uid: 8327 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,22.5 + parent: 1 + type: Transform + - uid: 2862 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-47.5 + parent: 1 + type: Transform + - uid: 3051 + components: + - rot: 3.141592653589793 rad + pos: 23.5,36.5 + parent: 1 + type: Transform + - uid: 3052 + components: + - rot: 3.141592653589793 rad + pos: 25.5,36.5 + parent: 1 + type: Transform + - uid: 3053 + components: + - rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 1 + type: Transform + - uid: 3054 + components: + - rot: 3.141592653589793 rad + pos: 33.5,36.5 + parent: 1 + type: Transform + - uid: 3067 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,13.5 + parent: 1 + type: Transform + - uid: 3068 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 3069 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 1 + type: Transform + - uid: 3070 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,3.5 + parent: 1 + type: Transform + - uid: 5547 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - uid: 12282 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 1 + type: Transform + - uid: 12283 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,5.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1523 + components: + - pos: 23.5,-23.5 + parent: 1 + type: Transform + - uid: 1717 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-28.5 + parent: 1 + type: Transform + - uid: 1720 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 1 + type: Transform + - uid: 1752 + components: + - pos: 25.5,-25.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 3571 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-24.5 + parent: 1 + type: Transform + - uid: 3572 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-22.5 + parent: 1 + type: Transform + - uid: 3573 + components: + - rot: 3.141592653589793 rad + pos: -29.5,31.5 + parent: 1 + type: Transform + - uid: 3574 + components: + - rot: 3.141592653589793 rad + pos: -28.5,30.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassLocked + entities: + - uid: 3284 + components: + - pos: -17.5,29.5 + parent: 1 + type: Transform + - uid: 3285 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform + - uid: 3286 + components: + - pos: -17.5,32.5 + parent: 1 + type: Transform + - uid: 3354 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 3355 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-20.5 + parent: 1 + type: Transform + - uid: 3607 + components: + - rot: 3.141592653589793 rad + pos: -9.5,43.5 + parent: 1 + type: Transform + - uid: 3608 + components: + - rot: 3.141592653589793 rad + pos: -8.5,45.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 1268 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,5.5 + parent: 1 + type: Transform + - uid: 1278 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,12.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 3059 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 3060 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + type: Transform + - uid: 3061 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 3062 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 2998 + components: + - pos: 1.5,-35.5 + parent: 1 + type: Transform + - uid: 4815 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 1 + type: Transform + - uid: 5553 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 1 + type: Transform + - uid: 8326 + components: + - rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1728 + components: + - pos: 11.5,-31.5 + parent: 1 + type: Transform + - uid: 1729 + components: + - pos: 13.5,-31.5 + parent: 1 + type: Transform + - uid: 3047 + components: + - rot: 3.141592653589793 rad + pos: 33.5,38.5 + parent: 1 + type: Transform + - uid: 3048 + components: + - rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 + type: Transform + - uid: 3049 + components: + - rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 1 + type: Transform + - uid: 3050 + components: + - rot: 3.141592653589793 rad + pos: 23.5,38.5 + parent: 1 + type: Transform +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 3367 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 3368 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 1348 + components: + - pos: 26.5,27.5 + parent: 1 + type: Transform + - uid: 3381 + components: + - rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 3382 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 3383 + components: + - rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 3384 + components: + - rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 3385 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 3387 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 3437 + components: + - pos: -35.5,4.5 + parent: 1 + type: Transform + - uid: 3438 + components: + - pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 3439 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 3440 + components: + - pos: -36.5,0.5 + parent: 1 + type: Transform + - uid: 3441 + components: + - pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 3486 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 3487 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 3488 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 3489 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 3490 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 3491 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 3492 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 3493 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 3494 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 3495 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1 + type: Transform + - uid: 3496 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 3497 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1 + type: Transform + - uid: 3542 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - uid: 3543 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 3544 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,3.5 + parent: 1 + type: Transform + - uid: 3579 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 3580 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - uid: 3581 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 3582 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - uid: 3796 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 4909 + components: + - rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 1 + type: Transform + - uid: 6295 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 3287 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 3288 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 3313 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform +- proto: AirlockHydroponicsLocked + entities: + - uid: 3144 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 3366 + components: + - name: Jani Closet + type: MetaData + - rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockMaint + entities: + - uid: 1021 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 3545 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-23.5 + parent: 1 + type: Transform + - uid: 3546 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-23.5 + parent: 1 + type: Transform + - uid: 3547 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 1 + type: Transform + - uid: 3548 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 1 + type: Transform + - uid: 3551 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 3552 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,31.5 + parent: 1 + type: Transform + - uid: 3553 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 1 + type: Transform + - uid: 3554 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,31.5 + parent: 1 + type: Transform + - uid: 3555 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 1 + type: Transform + - uid: 12517 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-27.5 + parent: 1 + type: Transform +- proto: AirlockMaintAtmoLocked + entities: + - uid: 1305 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 6988 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 3598 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 1 + type: Transform + - uid: 3599 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 3444 + components: + - pos: -30.5,15.5 + parent: 1 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 3280 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 1 + type: Transform + - uid: 3281 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1 + type: Transform + - uid: 4907 + components: + - rot: 3.141592653589793 rad + pos: 38.5,22.5 + parent: 1 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 3330 + components: + - pos: 20.5,-2.5 + parent: 1 + type: Transform + - uid: 3331 + components: + - pos: 25.5,-16.5 + parent: 1 + type: Transform + - uid: 3332 + components: + - pos: 13.5,-13.5 + parent: 1 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 3365 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 1 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 1666 + components: + - pos: -10.5,-23.5 + parent: 1 + type: Transform + - uid: 3291 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 3292 + components: + - pos: 30.5,20.5 + parent: 1 + type: Transform + - uid: 3293 + components: + - pos: 30.5,21.5 + parent: 1 + type: Transform + - uid: 3294 + components: + - pos: 35.5,20.5 + parent: 1 + type: Transform + - uid: 3295 + components: + - pos: 35.5,21.5 + parent: 1 + type: Transform + - uid: 3296 + components: + - pos: 43.5,15.5 + parent: 1 + type: Transform + - uid: 3297 + components: + - pos: 31.5,4.5 + parent: 1 + type: Transform + - uid: 3298 + components: + - pos: 19.5,0.5 + parent: 1 + type: Transform + - uid: 3299 + components: + - pos: 44.5,0.5 + parent: 1 + type: Transform + - uid: 3300 + components: + - pos: 31.5,-9.5 + parent: 1 + type: Transform + - uid: 3301 + components: + - pos: 31.5,-12.5 + parent: 1 + type: Transform + - uid: 3302 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 3303 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 3304 + components: + - pos: -19.5,-23.5 + parent: 1 + type: Transform + - uid: 3305 + components: + - pos: -35.5,-6.5 + parent: 1 + type: Transform + - uid: 3306 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 3307 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 3308 + components: + - pos: -38.5,15.5 + parent: 1 + type: Transform + - uid: 3309 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 3840 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 1 + type: Transform + - uid: 4896 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,26.5 + parent: 1 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 3394 + components: + - rot: 3.141592653589793 rad + pos: -27.5,10.5 + parent: 1 + type: Transform + - uid: 3395 + components: + - rot: 3.141592653589793 rad + pos: -23.5,17.5 + parent: 1 + type: Transform + - uid: 3396 + components: + - rot: 3.141592653589793 rad + pos: -13.5,22.5 + parent: 1 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 3428 + components: + - pos: -25.5,-8.5 + parent: 1 + type: Transform + - uid: 3429 + components: + - pos: -13.5,-17.5 + parent: 1 + type: Transform + - uid: 3431 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform +- proto: AirlockMaintSalvageLocked + entities: + - uid: 3597 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 1 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 3328 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - uid: 3329 + components: + - pos: 32.5,7.5 + parent: 1 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 1859 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 1860 + components: + - pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 3388 + components: + - rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 3389 + components: + - rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 3390 + components: + - rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 3391 + components: + - rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 3392 + components: + - rot: 3.141592653589793 rad + pos: -24.5,8.5 + parent: 1 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 734 + components: + - pos: 22.5,4.5 + parent: 1 + type: Transform + - uid: 3393 + components: + - rot: 3.141592653589793 rad + pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 3560 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,21.5 + parent: 1 + type: Transform +- proto: AirlockQuartermasterLocked + entities: + - uid: 3596 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 1 + type: Transform +- proto: AirlockResearchDirectorLocked + entities: + - uid: 3411 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform +- proto: AirlockSalvageGlassLocked + entities: + - uid: 1530 + components: + - pos: 17.5,-22.5 + parent: 1 + type: Transform + - uid: 7248 + components: + - pos: 17.5,-21.5 + parent: 1 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 3412 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - uid: 3413 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 3414 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 3415 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 3416 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 3417 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 3418 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 3419 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 3420 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 3421 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 3422 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 3423 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 3424 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 3425 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 3426 + components: + - pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 3427 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 3310 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 3311 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 3312 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 3315 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 3316 + components: + - pos: 33.5,19.5 + parent: 1 + type: Transform + - uid: 3317 + components: + - pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 3318 + components: + - pos: 33.5,22.5 + parent: 1 + type: Transform + - uid: 3319 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 3320 + components: + - pos: 33.5,24.5 + parent: 1 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 2351 + components: + - pos: 18.5,21.5 + parent: 1 + type: Transform +- proto: AirlockServiceGlassLocked + entities: + - uid: 3369 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 3370 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 3371 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 3373 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 3374 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 3442 + components: + - pos: -37.5,-8.5 + parent: 1 + type: Transform + - uid: 3443 + components: + - pos: -35.5,-10.5 + parent: 1 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 3578 + components: + - name: Theatre Room + type: MetaData + - rot: 3.141592653589793 rad + pos: -11.5,-27.5 + parent: 1 + type: Transform +- proto: AirlockVirologyLocked + entities: + - uid: 3397 + components: + - rot: 3.141592653589793 rad + pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 3398 + components: + - rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 11666 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 11667 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 1 + type: Transform +- proto: AltarSpawner + entities: + - uid: 3467 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 6778 + components: + - pos: 29.5,-6.5 + parent: 1 + type: Transform +- proto: AmePart + entities: + - uid: 6775 + components: + - flags: InContainer + type: MetaData + - parent: 6774 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 6776 + components: + - flags: InContainer + type: MetaData + - parent: 6774 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 6777 + components: + - flags: InContainer + type: MetaData + - parent: 6774 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: AnalysisComputerCircuitboard + entities: + - uid: 9509 + components: + - pos: -4.5700207,-34.400963 + parent: 1 + type: Transform +- proto: AnomalyScanner + entities: + - uid: 6083 + components: + - pos: -28.443977,-5.4184704 + parent: 1 + type: Transform + - uid: 6084 + components: + - pos: -28.568977,-5.2934704 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 1872 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 1886 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 1887 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 1889 + components: + - rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 1929 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 1930 + components: + - rot: 3.141592653589793 rad + pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 1931 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 1932 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 1933 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 1934 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 1935 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 1942 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 1945 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 1946 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 1947 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 1948 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 2442 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 2870 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 3685 + components: + - rot: 3.141592653589793 rad + pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 3686 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 3687 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 6248 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 6278 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 6521 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 6522 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 6523 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 6525 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 6526 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 6527 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 6780 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 7088 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 7089 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 7090 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 7555 + components: + - pos: -39.5,24.5 + parent: 1 + type: Transform + - uid: 7574 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 7575 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 7580 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 7766 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 8020 + components: + - rot: 3.141592653589793 rad + pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 8021 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 8022 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 8023 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 8189 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 8330 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 8383 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 8415 + components: + - rot: 3.141592653589793 rad + pos: 34.5,32.5 + parent: 1 + type: Transform + - uid: 9183 + components: + - rot: 3.141592653589793 rad + pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 9740 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 12568 + components: + - pos: -33.5,-14.5 + parent: 1 + type: Transform +- proto: APCElectronics + entities: + - uid: 9513 + components: + - pos: -1.6168957,-34.369713 + parent: 1 + type: Transform + - uid: 9514 + components: + - pos: -1.6168957,-34.604088 + parent: 1 + type: Transform +- proto: AppleSeeds + entities: + - uid: 5464 + components: + - pos: 29.131155,27.228777 + parent: 1 + type: Transform + - uid: 5465 + components: + - pos: 28.162405,27.582066 + parent: 1 + type: Transform +- proto: AppraisalTool + entities: + - uid: 7423 + components: + - pos: 11.436758,-20.269583 + parent: 1 + type: Transform + - uid: 7424 + components: + - pos: 11.639883,-20.394583 + parent: 1 + type: Transform +- proto: ArtifactAnalyzerMachineCircuitboard + entities: + - uid: 9508 + components: + - pos: -4.4293957,-34.588463 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 1949 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 1 + type: Transform + - uid: 1950 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,5.5 + parent: 1 + type: Transform + - uid: 1954 + components: + - pos: 13.5,-31.5 + parent: 1 + type: Transform + - uid: 1955 + components: + - pos: 11.5,-31.5 + parent: 1 + type: Transform + - uid: 3001 + components: + - pos: 1.5,-34.5 + parent: 1 + type: Transform + - uid: 3063 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 1 + type: Transform + - uid: 3064 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 1 + type: Transform + - uid: 3065 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 1 + type: Transform + - uid: 3066 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 1 + type: Transform + - uid: 3147 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 3148 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 4816 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,22.5 + parent: 1 + type: Transform + - uid: 7073 + components: + - pos: -42.5,-10.5 + parent: 1 + type: Transform + - uid: 8324 + components: + - pos: 10.5,34.5 + parent: 1 + type: Transform + - uid: 12494 + components: + - rot: 3.141592653589793 rad + pos: 23.5,38.5 + parent: 1 + type: Transform + - uid: 12495 + components: + - rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 1 + type: Transform + - uid: 12496 + components: + - rot: 3.141592653589793 rad + pos: 31.5,38.5 + parent: 1 + type: Transform + - uid: 12497 + components: + - rot: 3.141592653589793 rad + pos: 33.5,38.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 7260 + components: + - pos: 43.5,-9.5 + parent: 1 + type: Transform + - uid: 7261 + components: + - pos: 44.5,-9.5 + parent: 1 + type: Transform + - uid: 7262 + components: + - pos: 45.5,-9.5 + parent: 1 + type: Transform + - uid: 7263 + components: + - pos: 43.5,-11.5 + parent: 1 + type: Transform + - uid: 7264 + components: + - pos: 44.5,-11.5 + parent: 1 + type: Transform + - uid: 7265 + components: + - pos: 45.5,-11.5 + parent: 1 + type: Transform + - uid: 7266 + components: + - pos: 43.5,-13.5 + parent: 1 + type: Transform + - uid: 7267 + components: + - pos: 44.5,-13.5 + parent: 1 + type: Transform + - uid: 7268 + components: + - pos: 45.5,-13.5 + parent: 1 + type: Transform + - uid: 7269 + components: + - pos: 43.5,-17.5 + parent: 1 + type: Transform + - uid: 7270 + components: + - pos: 44.5,-17.5 + parent: 1 + type: Transform + - uid: 7271 + components: + - pos: 45.5,-17.5 + parent: 1 + type: Transform + - uid: 7272 + components: + - pos: 34.5,-22.5 + parent: 1 + type: Transform + - uid: 7273 + components: + - pos: 34.5,-23.5 + parent: 1 + type: Transform + - uid: 7274 + components: + - pos: 35.5,-22.5 + parent: 1 + type: Transform + - uid: 7275 + components: + - pos: 35.5,-23.5 + parent: 1 + type: Transform + - uid: 7276 + components: + - pos: 36.5,-22.5 + parent: 1 + type: Transform + - uid: 7277 + components: + - pos: 36.5,-23.5 + parent: 1 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 7251 + components: + - pos: 43.5,-5.5 + parent: 1 + type: Transform + - uid: 7252 + components: + - pos: 44.5,-5.5 + parent: 1 + type: Transform + - uid: 7253 + components: + - pos: 45.5,-5.5 + parent: 1 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 7254 + components: + - pos: 43.5,-7.5 + parent: 1 + type: Transform + - uid: 7255 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform + - uid: 7256 + components: + - pos: 45.5,-7.5 + parent: 1 + type: Transform +- proto: AtmosFixPlasmaMarker + entities: + - uid: 7257 + components: + - pos: 43.5,-15.5 + parent: 1 + type: Transform + - uid: 7258 + components: + - pos: 44.5,-15.5 + parent: 1 + type: Transform + - uid: 7259 + components: + - pos: 45.5,-15.5 + parent: 1 + type: Transform + - uid: 12339 + components: + - pos: -0.5,65.5 + parent: 1 + type: Transform +- proto: Autolathe + entities: + - uid: 1024 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 1878 + components: + - pos: 13.5,-20.5 + parent: 1 + type: Transform + - uid: 3808 + components: + - pos: -8.5,-0.5 + parent: 1 + type: Transform +- proto: BananaPhoneInstrument + entities: + - uid: 12404 + components: + - pos: -9.729915,-30.052383 + parent: 1 + type: Transform +- proto: BananaSeeds + entities: + - uid: 5467 + components: + - pos: 31.256155,27.175816 + parent: 1 + type: Transform +- proto: BannerNanotrasen + entities: + - uid: 4059 + components: + - pos: -9.5,31.5 + parent: 1 + type: Transform +- proto: BannerSecurity + entities: + - uid: 5303 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform +- proto: Barricade + entities: + - uid: 8278 + components: + - pos: -25.5,-20.5 + parent: 1 + type: Transform +- proto: BarSign + entities: + - uid: 60 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: BassGuitarInstrument + entities: + - uid: 12290 + components: + - pos: -27.503199,41.532513 + parent: 1 + type: Transform +- proto: Beaker + entities: + - uid: 6085 + components: + - pos: -27.912727,-5.4184704 + parent: 1 + type: Transform + - uid: 6086 + components: + - pos: -27.662727,-5.1840954 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 1805 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 1806 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 1810 + components: + - pos: 25.5,24.5 + parent: 1 + type: Transform + - uid: 1818 + components: + - pos: 25.5,28.5 + parent: 1 + type: Transform + - uid: 1851 + components: + - pos: -20.5,-3.5 + parent: 1 + type: Transform + - uid: 3482 + components: + - pos: -31.5,13.5 + parent: 1 + type: Transform + - uid: 4098 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 4962 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 5361 + components: + - pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 5438 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 5439 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5440 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 5663 + components: + - pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 7442 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 7714 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 7715 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 8261 + components: + - pos: -17.5,-53.5 + parent: 1 + type: Transform + - uid: 9017 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform + - uid: 9620 + components: + - pos: 15.5,27.5 + parent: 1 + type: Transform + - uid: 12405 + components: + - pos: -10.5,-28.5 + parent: 1 + type: Transform + - uid: 12406 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform + - uid: 12407 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 4099 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform +- proto: BedsheetCE + entities: + - uid: 5662 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1 + type: Transform +- proto: BedsheetClown + entities: + - uid: 12410 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform +- proto: BedsheetCMO + entities: + - uid: 1861 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,16.5 + parent: 1 + type: Transform +- proto: BedsheetCosmos + entities: + - uid: 8262 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-53.5 + parent: 1 + type: Transform + - uid: 12408 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform +- proto: BedsheetCult + entities: + - uid: 3481 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 1 + type: Transform +- proto: BedsheetGreen + entities: + - uid: 5619 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 5620 + components: + - rot: 3.141592653589793 rad + pos: -10.5,21.5 + parent: 1 + type: Transform +- proto: BedsheetHOP + entities: + - uid: 4963 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform +- proto: BedsheetHOS + entities: + - uid: 5373 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 5621 + components: + - rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 5622 + components: + - rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 1 + type: Transform +- proto: BedsheetMime + entities: + - uid: 12409 + components: + - pos: -10.5,-28.5 + parent: 1 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 5441 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5442 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 5443 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform +- proto: BedsheetQM + entities: + - uid: 7441 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + type: Transform +- proto: BedsheetRD + entities: + - uid: 1850 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 1 + type: Transform +- proto: BedsheetRed + entities: + - uid: 1807 + components: + - pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 5362 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 7716 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 7717 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 9018 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 1814 + components: + - rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 1 + type: Transform + - uid: 1817 + components: + - rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 1 + type: Transform + - uid: 9621 + components: + - rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 1 + type: Transform +- proto: Bible + entities: + - uid: 7547 + components: + - pos: -31.507103,14.620898 + parent: 1 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 1921 + components: + - pos: -22.5,14.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 3218 + components: + - pos: 34.5,11.5 + parent: 1 + type: Transform + - links: + - 5388 + - 5389 + type: DeviceLinkSink + - uid: 3434 + components: + - pos: -21.5,-9.5 + parent: 1 + type: Transform + - links: + - 6338 + type: DeviceLinkSink + - uid: 3435 + components: + - pos: -21.5,-13.5 + parent: 1 + type: Transform + - links: + - 6337 + type: DeviceLinkSink + - uid: 3561 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform + - links: + - 1978 + type: DeviceLinkSink + - uid: 3795 + components: + - pos: 35.5,-24.5 + parent: 1 + type: Transform + - uid: 7432 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - links: + - 7436 + type: DeviceLinkSink + - uid: 7433 + components: + - pos: 10.5,-31.5 + parent: 1 + type: Transform + - links: + - 7436 + type: DeviceLinkSink + - uid: 7434 + components: + - pos: 14.5,-31.5 + parent: 1 + type: Transform + - links: + - 7437 + type: DeviceLinkSink + - uid: 7435 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - links: + - 7437 + type: DeviceLinkSink +- proto: BlastDoorOpen + entities: + - uid: 4064 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform + - links: + - 4100 + type: DeviceLinkSink + - uid: 4065 + components: + - pos: 4.5,32.5 + parent: 1 + type: Transform + - links: + - 4100 + type: DeviceLinkSink + - uid: 4066 + components: + - pos: 3.5,32.5 + parent: 1 + type: Transform + - links: + - 4100 + type: DeviceLinkSink +- proto: BlockGameArcade + entities: + - uid: 4945 + components: + - rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 1 + type: Transform +- proto: Bloodpack + entities: + - uid: 9642 + components: + - pos: -26.340826,24.655668 + parent: 1 + type: Transform + - uid: 9643 + components: + - pos: -26.622076,24.452543 + parent: 1 + type: Transform +- proto: BodyBag_Container + entities: + - uid: 8242 + components: + - pos: -23.819975,23.448257 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: BookRandom + entities: + - uid: 5577 + components: + - pos: -37.35744,-3.616012 + parent: 1 + type: Transform + - uid: 5578 + components: + - pos: -37.623066,-3.397262 + parent: 1 + type: Transform + - uid: 5579 + components: + - pos: -37.41994,-3.100387 + parent: 1 + type: Transform +- proto: BooksBag + entities: + - uid: 5580 + components: + - pos: -37.421623,-3.3253686 + parent: 1 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 1262 + components: + - pos: -40.5,-3.5 + parent: 1 + type: Transform + - uid: 1271 + components: + - pos: -40.5,-2.5 + parent: 1 + type: Transform + - uid: 1287 + components: + - pos: -41.5,-3.5 + parent: 1 + type: Transform + - uid: 1952 + components: + - pos: -39.5,-3.5 + parent: 1 + type: Transform + - uid: 1961 + components: + - pos: -41.5,-2.5 + parent: 1 + type: Transform + - uid: 1962 + components: + - pos: -39.5,-2.5 + parent: 1 + type: Transform + - uid: 2785 + components: + - pos: -18.5,-48.5 + parent: 1 + type: Transform + - uid: 2802 + components: + - pos: -17.5,-48.5 + parent: 1 + type: Transform + - uid: 4858 + components: + - pos: -39.5,-0.5 + parent: 1 + type: Transform + - uid: 4862 + components: + - pos: -40.5,-0.5 + parent: 1 + type: Transform + - uid: 4870 + components: + - pos: -41.5,-0.5 + parent: 1 + type: Transform + - uid: 4879 + components: + - pos: -38.5,-0.5 + parent: 1 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 5950 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 8270 + components: + - pos: -14.5,-48.5 + parent: 1 + type: Transform + - uid: 8292 + components: + - pos: -31.5,-12.5 + parent: 1 + type: Transform +- proto: BorgCharger + entities: + - uid: 658 + components: + - pos: -4.5,-12.5 + parent: 1 + type: Transform + - uid: 659 + components: + - pos: -4.5,-11.5 + parent: 1 + type: Transform +- proto: BoxBeaker + entities: + - uid: 5920 + components: + - pos: -10.486181,15.653046 + parent: 1 + type: Transform + - uid: 6050 + components: + - pos: -14.475516,-1.6162148 + parent: 1 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 5430 + components: + - pos: 38.515625,12.538095 + parent: 1 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 5351 + components: + - pos: 23.488127,5.639096 + parent: 1 + type: Transform + - uid: 5699 + components: + - pos: -22.480776,15.689974 + parent: 1 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 5306 + components: + - pos: 21.502325,15.64172 + parent: 1 + type: Transform +- proto: BoxFolderBase + entities: + - uid: 3983 + components: + - rot: 1.5707963267948966 rad + pos: -10.572755,50.565598 + parent: 1 + type: Transform + - uid: 3984 + components: + - rot: 1.5707963267948966 rad + pos: -10.43213,50.690598 + parent: 1 + type: Transform + - uid: 3987 + components: + - rot: 3.141592653589793 rad + pos: -3.5883799,48.565598 + parent: 1 + type: Transform + - uid: 3988 + components: + - pos: -5.510255,56.62389 + parent: 1 + type: Transform + - uid: 3989 + components: + - pos: -5.33838,56.545765 + parent: 1 + type: Transform + - uid: 3992 + components: + - rot: 3.141592653589793 rad + pos: -8.385255,48.646393 + parent: 1 + type: Transform + - uid: 3993 + components: + - rot: 3.141592653589793 rad + pos: -8.510255,48.552643 + parent: 1 + type: Transform + - uid: 6055 + components: + - pos: -16.543133,-2.3470023 + parent: 1 + type: Transform + - uid: 6056 + components: + - pos: -16.746258,-2.5345023 + parent: 1 + type: Transform + - uid: 6057 + components: + - pos: -16.402508,-2.6438773 + parent: 1 + type: Transform +- proto: BoxFolderBlack + entities: + - uid: 5698 + components: + - pos: -22.449526,16.580599 + parent: 1 + type: Transform + - uid: 9636 + components: + - pos: 18.643274,25.583164 + parent: 1 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 4103 + components: + - pos: -9.648237,29.409079 + parent: 1 + type: Transform + - uid: 4975 + components: + - pos: 4.828023,27.549826 + parent: 1 + type: Transform + - uid: 5094 + components: + - pos: -4.4542303,19.564632 + parent: 1 + type: Transform + - uid: 5338 + components: + - pos: 28.444067,8.501565 + parent: 1 + type: Transform + - uid: 9584 + components: + - pos: 44.920597,31.694736 + parent: 1 + type: Transform + - uid: 9585 + components: + - pos: 44.420597,31.569736 + parent: 1 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 1883 + components: + - pos: -21.598257,-1.4382241 + parent: 1 + type: Transform + - uid: 1884 + components: + - pos: -21.473257,-1.3444741 + parent: 1 + type: Transform + - uid: 6069 + components: + - pos: -9.343652,-12.375296 + parent: 1 + type: Transform + - uid: 6075 + components: + - pos: -9.593652,-12.547171 + parent: 1 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 4105 + components: + - pos: -9.335737,27.815329 + parent: 1 + type: Transform + - uid: 5096 + components: + - pos: -4.5636053,19.549007 + parent: 1 + type: Transform + - uid: 5337 + components: + - pos: 28.678442,8.532815 + parent: 1 + type: Transform + - uid: 5390 + components: + - pos: 27.618711,13.570517 + parent: 1 + type: Transform + - uid: 5397 + components: + - pos: 28.399961,16.572828 + parent: 1 + type: Transform + - uid: 9586 + components: + - pos: 41.576847,31.538486 + parent: 1 + type: Transform + - uid: 9587 + components: + - pos: 41.029972,31.710361 + parent: 1 + type: Transform +- proto: BoxFolderWhite + entities: + - uid: 1879 + components: + - pos: -19.351341,14.63665 + parent: 1 + type: Transform + - uid: 1880 + components: + - pos: -19.445091,14.558525 + parent: 1 + type: Transform + - uid: 5880 + components: + - pos: -14.371586,5.6317506 + parent: 1 + type: Transform + - uid: 5881 + components: + - pos: -17.378174,5.612771 + parent: 1 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 5095 + components: + - pos: -4.5011053,19.564632 + parent: 1 + type: Transform + - uid: 5677 + components: + - pos: 18.605122,-14.452038 + parent: 1 + type: Transform + - uid: 6787 + components: + - pos: 12.643603,-12.352579 + parent: 1 + type: Transform + - uid: 6788 + components: + - pos: 12.565478,-12.461954 + parent: 1 + type: Transform + - uid: 7304 + components: + - pos: 13.624326,-23.294518 + parent: 1 + type: Transform + - uid: 7305 + components: + - pos: 13.389951,-23.325768 + parent: 1 + type: Transform + - uid: 7401 + components: + - pos: 5.547744,-21.14656 + parent: 1 + type: Transform + - uid: 7402 + components: + - pos: 5.438369,-21.39656 + parent: 1 + type: Transform + - uid: 7403 + components: + - pos: 11.688369,-18.30281 + parent: 1 + type: Transform + - uid: 7404 + components: + - pos: 11.422744,-18.443436 + parent: 1 + type: Transform + - uid: 7448 + components: + - pos: 5.6525464,-15.315514 + parent: 1 + type: Transform + - uid: 7449 + components: + - pos: 5.4181714,-15.456139 + parent: 1 + type: Transform + - uid: 9600 + components: + - rot: 3.141592653589793 rad + pos: 42.779972,33.663486 + parent: 1 + type: Transform + - uid: 9601 + components: + - rot: 3.141592653589793 rad + pos: 42.358097,33.58536 + parent: 1 + type: Transform +- proto: BoxForensicPad + entities: + - uid: 9318 + components: + - pos: 13.474606,21.591854 + parent: 1 + type: Transform +- proto: BoxHandcuff + entities: + - uid: 5308 + components: + - pos: 21.022184,15.646895 + parent: 1 + type: Transform +- proto: BoxLatexGloves + entities: + - uid: 5903 + components: + - pos: -22.54765,11.635829 + parent: 1 + type: Transform + - uid: 5907 + components: + - pos: -12.516884,19.876278 + parent: 1 + type: Transform +- proto: BoxLethalshot + entities: + - uid: 5428 + components: + - pos: 38.48653,12.471226 + parent: 1 + type: Transform + - uid: 5429 + components: + - pos: 38.502155,12.596226 + parent: 1 + type: Transform +- proto: BoxLightbulb + entities: + - uid: 7667 + components: + - pos: 12.361424,-0.38664222 + parent: 1 + type: Transform +- proto: BoxLightMixed + entities: + - uid: 8911 + components: + - pos: -24.485905,-14.450869 + parent: 1 + type: Transform +- proto: BoxLighttube + entities: + - uid: 7669 + components: + - pos: 12.611424,-0.37101722 + parent: 1 + type: Transform +- proto: BoxMagazinePistol + entities: + - uid: 5423 + components: + - pos: 37.484375,13.569345 + parent: 1 + type: Transform +- proto: BoxMagazinePistolSubMachineGun + entities: + - uid: 5421 + components: + - pos: 36.5625,13.600595 + parent: 1 + type: Transform +- proto: BoxMouthSwab + entities: + - uid: 5906 + components: + - pos: -12.390701,20.206486 + parent: 1 + type: Transform + - uid: 5908 + components: + - pos: -12.415903,19.683134 + parent: 1 + type: Transform + - uid: 12456 + components: + - pos: -1.403451,-0.3365245 + parent: 1 + type: Transform +- proto: BoxPillCanister + entities: + - uid: 5918 + components: + - pos: -10.658056,15.653046 + parent: 1 + type: Transform +- proto: BoxSterileMask + entities: + - uid: 5905 + components: + - pos: -12.531326,20.581486 + parent: 1 + type: Transform + - uid: 6054 + components: + - pos: -14.459891,-1.7880898 + parent: 1 + type: Transform + - uid: 7183 + components: + - pos: -22.431108,11.63326 + parent: 1 + type: Transform +- proto: BoxSyringe + entities: + - uid: 5919 + components: + - pos: -10.345556,15.653046 + parent: 1 + type: Transform + - uid: 6049 + components: + - pos: -14.459891,-1.9287148 + parent: 1 + type: Transform +- proto: BoxZiptie + entities: + - uid: 5309 + components: + - pos: 20.533396,15.646895 + parent: 1 + type: Transform +- proto: BrbSign + entities: + - uid: 12484 + components: + - pos: 0.4449376,21.546635 + parent: 1 + type: Transform +- proto: BriefcaseBrownFilled + entities: + - uid: 5336 + components: + - pos: 28.490942,8.501565 + parent: 1 + type: Transform +- proto: BrigTimer + entities: + - uid: 12485 + components: + - rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5535: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 12486 + components: + - rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5536: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 12487 + components: + - rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5537: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: Brutepack + entities: + - uid: 9629 + components: + - pos: 18.279701,27.765732 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 12549 + components: + - pos: -0.29377937,-4.689143 + parent: 1 + type: Transform + - uid: 12550 + components: + - pos: -0.6531544,-4.407893 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 27 + components: + - pos: -12.5,-46.5 + parent: 1 + type: Transform + - uid: 1943 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 2792 + components: + - pos: -18.5,-49.5 + parent: 1 + type: Transform + - uid: 2797 + components: + - pos: -17.5,-49.5 + parent: 1 + type: Transform + - uid: 2863 + components: + - pos: -11.5,-46.5 + parent: 1 + type: Transform + - uid: 2876 + components: + - pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 2877 + components: + - pos: -11.5,-49.5 + parent: 1 + type: Transform + - uid: 2878 + components: + - pos: -12.5,-49.5 + parent: 1 + type: Transform + - uid: 2879 + components: + - pos: -13.5,-49.5 + parent: 1 + type: Transform + - uid: 2880 + components: + - pos: -14.5,-49.5 + parent: 1 + type: Transform + - uid: 2881 + components: + - pos: -15.5,-49.5 + parent: 1 + type: Transform + - uid: 2882 + components: + - pos: -16.5,-49.5 + parent: 1 + type: Transform + - uid: 2883 + components: + - pos: -16.5,-50.5 + parent: 1 + type: Transform + - uid: 2884 + components: + - pos: -16.5,-51.5 + parent: 1 + type: Transform + - uid: 2885 + components: + - pos: -16.5,-52.5 + parent: 1 + type: Transform + - uid: 2886 + components: + - pos: -13.5,-50.5 + parent: 1 + type: Transform + - uid: 2887 + components: + - pos: -13.5,-51.5 + parent: 1 + type: Transform + - uid: 2888 + components: + - pos: -13.5,-52.5 + parent: 1 + type: Transform + - uid: 2889 + components: + - pos: -11.5,-48.5 + parent: 1 + type: Transform + - uid: 2890 + components: + - pos: -11.5,-47.5 + parent: 1 + type: Transform + - uid: 3386 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 3718 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 3719 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 3720 + components: + - pos: -2.5,45.5 + parent: 1 + type: Transform + - uid: 3721 + components: + - pos: -1.5,45.5 + parent: 1 + type: Transform + - uid: 3722 + components: + - pos: -4.5,45.5 + parent: 1 + type: Transform + - uid: 3723 + components: + - pos: -3.5,45.5 + parent: 1 + type: Transform + - uid: 3724 + components: + - pos: -5.5,45.5 + parent: 1 + type: Transform + - uid: 3725 + components: + - pos: -6.5,45.5 + parent: 1 + type: Transform + - uid: 3726 + components: + - pos: -7.5,45.5 + parent: 1 + type: Transform + - uid: 3727 + components: + - pos: -8.5,45.5 + parent: 1 + type: Transform + - uid: 3728 + components: + - pos: -9.5,45.5 + parent: 1 + type: Transform + - uid: 3729 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 3730 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - uid: 3731 + components: + - pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 3732 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 3733 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - uid: 3734 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 3735 + components: + - pos: -4.5,53.5 + parent: 1 + type: Transform + - uid: 3736 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - uid: 3737 + components: + - pos: -4.5,51.5 + parent: 1 + type: Transform + - uid: 3738 + components: + - pos: -4.5,50.5 + parent: 1 + type: Transform + - uid: 3739 + components: + - pos: -4.5,49.5 + parent: 1 + type: Transform + - uid: 3740 + components: + - pos: -5.5,49.5 + parent: 1 + type: Transform + - uid: 3741 + components: + - pos: -6.5,49.5 + parent: 1 + type: Transform + - uid: 3742 + components: + - pos: -7.5,49.5 + parent: 1 + type: Transform + - uid: 3743 + components: + - pos: -8.5,49.5 + parent: 1 + type: Transform + - uid: 3744 + components: + - pos: -8.5,50.5 + parent: 1 + type: Transform + - uid: 3745 + components: + - pos: -8.5,51.5 + parent: 1 + type: Transform + - uid: 3746 + components: + - pos: -8.5,52.5 + parent: 1 + type: Transform + - uid: 3747 + components: + - pos: -8.5,53.5 + parent: 1 + type: Transform + - uid: 3748 + components: + - pos: -8.5,54.5 + parent: 1 + type: Transform + - uid: 3749 + components: + - pos: -8.5,55.5 + parent: 1 + type: Transform + - uid: 3750 + components: + - pos: -7.5,55.5 + parent: 1 + type: Transform + - uid: 3751 + components: + - pos: -9.5,52.5 + parent: 1 + type: Transform + - uid: 3752 + components: + - pos: -3.5,52.5 + parent: 1 + type: Transform + - uid: 3753 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - uid: 3754 + components: + - pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 3755 + components: + - pos: 3.5,52.5 + parent: 1 + type: Transform + - uid: 3756 + components: + - pos: 2.5,52.5 + parent: 1 + type: Transform + - uid: 3757 + components: + - pos: 1.5,52.5 + parent: 1 + type: Transform + - uid: 3758 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 3759 + components: + - pos: -0.5,52.5 + parent: 1 + type: Transform + - uid: 3760 + components: + - pos: -1.5,52.5 + parent: 1 + type: Transform + - uid: 3761 + components: + - pos: 1.5,53.5 + parent: 1 + type: Transform + - uid: 3762 + components: + - pos: 1.5,54.5 + parent: 1 + type: Transform + - uid: 3763 + components: + - pos: 1.5,55.5 + parent: 1 + type: Transform + - uid: 3764 + components: + - pos: 1.5,51.5 + parent: 1 + type: Transform + - uid: 3765 + components: + - pos: 1.5,50.5 + parent: 1 + type: Transform + - uid: 3766 + components: + - pos: 1.5,49.5 + parent: 1 + type: Transform + - uid: 4168 + components: + - pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 4169 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 4170 + components: + - pos: -13.5,30.5 + parent: 1 + type: Transform + - uid: 4171 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 4172 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 4173 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform + - uid: 4174 + components: + - pos: -17.5,30.5 + parent: 1 + type: Transform + - uid: 4175 + components: + - pos: -17.5,31.5 + parent: 1 + type: Transform + - uid: 4176 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform + - uid: 4177 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 4178 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4179 + components: + - pos: -9.5,29.5 + parent: 1 + type: Transform + - uid: 4180 + components: + - pos: -9.5,28.5 + parent: 1 + type: Transform + - uid: 4181 + components: + - pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 4182 + components: + - pos: -9.5,26.5 + parent: 1 + type: Transform + - uid: 4183 + components: + - pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 4184 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 4185 + components: + - pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 4186 + components: + - pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 4187 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 4188 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 4189 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 4190 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 4191 + components: + - pos: -3.5,28.5 + parent: 1 + type: Transform + - uid: 4192 + components: + - pos: -3.5,27.5 + parent: 1 + type: Transform + - uid: 4193 + components: + - pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 4194 + components: + - pos: -3.5,25.5 + parent: 1 + type: Transform + - uid: 4195 + components: + - pos: -3.5,24.5 + parent: 1 + type: Transform + - uid: 4196 + components: + - pos: -2.5,24.5 + parent: 1 + type: Transform + - uid: 4197 + components: + - pos: -1.5,30.5 + parent: 1 + type: Transform + - uid: 4198 + components: + - pos: -1.5,31.5 + parent: 1 + type: Transform + - uid: 4199 + components: + - pos: -4.5,30.5 + parent: 1 + type: Transform + - uid: 4200 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 4201 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 4202 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4203 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 4204 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 4205 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 4206 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 4207 + components: + - pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 4208 + components: + - pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 4209 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 4210 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 4211 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 4212 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 4213 + components: + - pos: 1.5,21.5 + parent: 1 + type: Transform + - uid: 4214 + components: + - pos: 1.5,20.5 + parent: 1 + type: Transform + - uid: 4215 + components: + - pos: 0.5,20.5 + parent: 1 + type: Transform + - uid: 4216 + components: + - pos: -0.5,20.5 + parent: 1 + type: Transform + - uid: 4217 + components: + - pos: -1.5,20.5 + parent: 1 + type: Transform + - uid: 4218 + components: + - pos: -2.5,20.5 + parent: 1 + type: Transform + - uid: 4219 + components: + - pos: -3.5,20.5 + parent: 1 + type: Transform + - uid: 4220 + components: + - pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 4221 + components: + - pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 4222 + components: + - pos: 2.5,21.5 + parent: 1 + type: Transform + - uid: 4223 + components: + - pos: 3.5,21.5 + parent: 1 + type: Transform + - uid: 4224 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 4225 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 4226 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 4227 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 4228 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 4229 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 4230 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 4231 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - uid: 4232 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 4233 + components: + - pos: -9.5,31.5 + parent: 1 + type: Transform + - uid: 4234 + components: + - pos: -4.5,31.5 + parent: 1 + type: Transform + - uid: 4235 + components: + - pos: -1.5,32.5 + parent: 1 + type: Transform + - uid: 4236 + components: + - pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 4801 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 4802 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 4803 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 4804 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 4805 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 4806 + components: + - pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 5156 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 5157 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 5158 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 5159 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 5160 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 5161 + components: + - pos: 11.5,10.5 + parent: 1 + type: Transform + - uid: 5162 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 5163 + components: + - pos: 11.5,12.5 + parent: 1 + type: Transform + - uid: 5164 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 5165 + components: + - pos: 11.5,14.5 + parent: 1 + type: Transform + - uid: 5166 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 5167 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 5168 + components: + - pos: 15.5,10.5 + parent: 1 + type: Transform + - uid: 5169 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 5170 + components: + - pos: 15.5,12.5 + parent: 1 + type: Transform + - uid: 5171 + components: + - pos: 15.5,13.5 + parent: 1 + type: Transform + - uid: 5172 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform + - uid: 5173 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 5174 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 5175 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 5176 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 5177 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 5178 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 5179 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 5180 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 5181 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 5182 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 5183 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 5184 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 5185 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5186 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 5187 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 5188 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 5189 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 5190 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 5191 + components: + - pos: 19.5,9.5 + parent: 1 + type: Transform + - uid: 5192 + components: + - pos: 17.5,8.5 + parent: 1 + type: Transform + - uid: 5193 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 5194 + components: + - pos: 17.5,6.5 + parent: 1 + type: Transform + - uid: 5195 + components: + - pos: 17.5,5.5 + parent: 1 + type: Transform + - uid: 5196 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 5197 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 5198 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 5199 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 5200 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 5201 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 5202 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 5203 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 5204 + components: + - pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 5205 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - uid: 5206 + components: + - pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 5207 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 5208 + components: + - pos: 20.5,12.5 + parent: 1 + type: Transform + - uid: 5209 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - uid: 5210 + components: + - pos: 20.5,14.5 + parent: 1 + type: Transform + - uid: 5211 + components: + - pos: 20.5,10.5 + parent: 1 + type: Transform + - uid: 5212 + components: + - pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 5213 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 5214 + components: + - pos: 22.5,14.5 + parent: 1 + type: Transform + - uid: 5215 + components: + - pos: 22.5,13.5 + parent: 1 + type: Transform + - uid: 5216 + components: + - pos: 22.5,15.5 + parent: 1 + type: Transform + - uid: 5217 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 5218 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - uid: 5219 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform + - uid: 5220 + components: + - pos: 25.5,9.5 + parent: 1 + type: Transform + - uid: 5221 + components: + - pos: 24.5,9.5 + parent: 1 + type: Transform + - uid: 5222 + components: + - pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 5223 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - uid: 5224 + components: + - pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 5225 + components: + - pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 5226 + components: + - pos: 22.5,6.5 + parent: 1 + type: Transform + - uid: 5227 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 5228 + components: + - pos: 23.5,10.5 + parent: 1 + type: Transform + - uid: 5229 + components: + - pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 5230 + components: + - pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 5231 + components: + - pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 5232 + components: + - pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 5233 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 5234 + components: + - pos: 30.5,9.5 + parent: 1 + type: Transform + - uid: 5235 + components: + - pos: 31.5,9.5 + parent: 1 + type: Transform + - uid: 5236 + components: + - pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 5237 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - uid: 5238 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - uid: 5239 + components: + - pos: 26.5,6.5 + parent: 1 + type: Transform + - uid: 5240 + components: + - pos: 27.5,6.5 + parent: 1 + type: Transform + - uid: 5241 + components: + - pos: 32.5,8.5 + parent: 1 + type: Transform + - uid: 5242 + components: + - pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 5243 + components: + - pos: 33.5,17.5 + parent: 1 + type: Transform + - uid: 5244 + components: + - pos: 32.5,17.5 + parent: 1 + type: Transform + - uid: 5245 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 5246 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 5247 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 5248 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform + - uid: 5249 + components: + - pos: 32.5,12.5 + parent: 1 + type: Transform + - uid: 5250 + components: + - pos: 32.5,11.5 + parent: 1 + type: Transform + - uid: 5251 + components: + - pos: 33.5,11.5 + parent: 1 + type: Transform + - uid: 5252 + components: + - pos: 34.5,11.5 + parent: 1 + type: Transform + - uid: 5253 + components: + - pos: 35.5,11.5 + parent: 1 + type: Transform + - uid: 5254 + components: + - pos: 36.5,11.5 + parent: 1 + type: Transform + - uid: 5255 + components: + - pos: 37.5,11.5 + parent: 1 + type: Transform + - uid: 5256 + components: + - pos: 37.5,12.5 + parent: 1 + type: Transform + - uid: 5257 + components: + - pos: 31.5,13.5 + parent: 1 + type: Transform + - uid: 5258 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform + - uid: 5259 + components: + - pos: 29.5,13.5 + parent: 1 + type: Transform + - uid: 5260 + components: + - pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 5261 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 5262 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 5263 + components: + - pos: 31.5,17.5 + parent: 1 + type: Transform + - uid: 5264 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 5265 + components: + - pos: 29.5,17.5 + parent: 1 + type: Transform + - uid: 5266 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 5267 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 5268 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 5269 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 5270 + components: + - pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 5271 + components: + - pos: 33.5,27.5 + parent: 1 + type: Transform + - uid: 5272 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 5273 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 5274 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - uid: 5275 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 5276 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 5277 + components: + - pos: 31.5,27.5 + parent: 1 + type: Transform + - uid: 5278 + components: + - pos: 30.5,27.5 + parent: 1 + type: Transform + - uid: 5279 + components: + - pos: 29.5,27.5 + parent: 1 + type: Transform + - uid: 5280 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - uid: 5281 + components: + - pos: 27.5,27.5 + parent: 1 + type: Transform + - uid: 5282 + components: + - pos: 26.5,27.5 + parent: 1 + type: Transform + - uid: 5283 + components: + - pos: 25.5,27.5 + parent: 1 + type: Transform + - uid: 5284 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - uid: 5285 + components: + - pos: 28.5,25.5 + parent: 1 + type: Transform + - uid: 5286 + components: + - pos: 27.5,25.5 + parent: 1 + type: Transform + - uid: 5287 + components: + - pos: 26.5,25.5 + parent: 1 + type: Transform + - uid: 5288 + components: + - pos: 25.5,25.5 + parent: 1 + type: Transform + - uid: 5289 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - uid: 5290 + components: + - pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 5291 + components: + - pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 5292 + components: + - pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 5293 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 5294 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 5295 + components: + - pos: 33.5,20.5 + parent: 1 + type: Transform + - uid: 5296 + components: + - pos: 33.5,23.5 + parent: 1 + type: Transform + - uid: 5323 + components: + - pos: -33.5,-15.5 + parent: 1 + type: Transform + - uid: 5744 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 5745 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 5746 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 5747 + components: + - pos: -24.5,9.5 + parent: 1 + type: Transform + - uid: 5748 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 5749 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - uid: 5750 + components: + - pos: -24.5,6.5 + parent: 1 + type: Transform + - uid: 5751 + components: + - pos: -25.5,6.5 + parent: 1 + type: Transform + - uid: 5761 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 5762 + components: + - pos: -24.5,14.5 + parent: 1 + type: Transform + - uid: 5763 + components: + - pos: -24.5,15.5 + parent: 1 + type: Transform + - uid: 5764 + components: + - pos: -25.5,15.5 + parent: 1 + type: Transform + - uid: 5765 + components: + - pos: -23.5,15.5 + parent: 1 + type: Transform + - uid: 5766 + components: + - pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 5767 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 5768 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 5769 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 5770 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 5771 + components: + - pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 5772 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 5773 + components: + - pos: -18.5,9.5 + parent: 1 + type: Transform + - uid: 5774 + components: + - pos: -18.5,9.5 + parent: 1 + type: Transform + - uid: 5775 + components: + - pos: -18.5,8.5 + parent: 1 + type: Transform + - uid: 5776 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 5777 + components: + - pos: -18.5,6.5 + parent: 1 + type: Transform + - uid: 5778 + components: + - pos: -21.5,9.5 + parent: 1 + type: Transform + - uid: 5779 + components: + - pos: -21.5,8.5 + parent: 1 + type: Transform + - uid: 5780 + components: + - pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 5781 + components: + - pos: -21.5,6.5 + parent: 1 + type: Transform + - uid: 5782 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 5783 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 5784 + components: + - pos: -11.5,8.5 + parent: 1 + type: Transform + - uid: 5785 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 5786 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 5787 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - uid: 5788 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 5789 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 5790 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 5791 + components: + - pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 5792 + components: + - pos: -15.5,8.5 + parent: 1 + type: Transform + - uid: 5793 + components: + - pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 5794 + components: + - pos: -15.5,6.5 + parent: 1 + type: Transform + - uid: 5795 + components: + - pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 5796 + components: + - pos: -9.5,10.5 + parent: 1 + type: Transform + - uid: 5797 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 5798 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 5799 + components: + - pos: -11.5,5.5 + parent: 1 + type: Transform + - uid: 5800 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 5801 + components: + - pos: -9.5,5.5 + parent: 1 + type: Transform + - uid: 5802 + components: + - pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 5803 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 5804 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform + - uid: 5805 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 5806 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 5807 + components: + - pos: -10.5,13.5 + parent: 1 + type: Transform + - uid: 5808 + components: + - pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 5809 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform + - uid: 5810 + components: + - pos: -12.5,14.5 + parent: 1 + type: Transform + - uid: 5811 + components: + - pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 5812 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 5813 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 5814 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 5815 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 5816 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 5817 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 5818 + components: + - pos: -17.5,15.5 + parent: 1 + type: Transform + - uid: 5819 + components: + - pos: -18.5,15.5 + parent: 1 + type: Transform + - uid: 5820 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 5821 + components: + - pos: -19.5,14.5 + parent: 1 + type: Transform + - uid: 5822 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 5823 + components: + - pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 5824 + components: + - pos: -14.5,19.5 + parent: 1 + type: Transform + - uid: 5825 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - uid: 5826 + components: + - pos: -16.5,19.5 + parent: 1 + type: Transform + - uid: 5827 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - uid: 5828 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 5829 + components: + - pos: -13.5,21.5 + parent: 1 + type: Transform + - uid: 5830 + components: + - pos: -12.5,21.5 + parent: 1 + type: Transform + - uid: 5831 + components: + - pos: -11.5,21.5 + parent: 1 + type: Transform + - uid: 5832 + components: + - pos: -13.5,18.5 + parent: 1 + type: Transform + - uid: 5833 + components: + - pos: -12.5,18.5 + parent: 1 + type: Transform + - uid: 5834 + components: + - pos: -11.5,18.5 + parent: 1 + type: Transform + - uid: 5835 + components: + - pos: -15.5,5.5 + parent: 1 + type: Transform + - uid: 5836 + components: + - pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 5837 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform + - uid: 5838 + components: + - pos: -24.5,5.5 + parent: 1 + type: Transform + - uid: 5839 + components: + - pos: -26.5,6.5 + parent: 1 + type: Transform + - uid: 5840 + components: + - pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 5842 + components: + - pos: -17.5,19.5 + parent: 1 + type: Transform + - uid: 6200 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 6201 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 6202 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 6203 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 6204 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 6206 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 6207 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 6208 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 6227 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 6228 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 6229 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 6230 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 6231 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 6232 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 6233 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 6234 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 6235 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 6236 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 6237 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 6238 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 6239 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 6240 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 6241 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 6242 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 6243 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 6244 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 6245 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 6246 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 6247 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 6249 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 6250 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 6251 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 6252 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 6253 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 6254 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 6255 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 6256 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 6257 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 6258 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 6259 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 6260 + components: + - pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 6261 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 6262 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 6263 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 6264 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 6265 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 6266 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 6267 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 6268 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 6269 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 6270 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 6271 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 6272 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 6273 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 6274 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 6275 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 6276 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 6277 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 6279 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 6280 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 6281 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 6282 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 6283 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 6284 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 6285 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 6292 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 6293 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 6294 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 6296 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 6297 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 6298 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 6299 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 6300 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 6301 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 6302 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 6303 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 6304 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 6305 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 6306 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 6307 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 6308 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 6309 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - uid: 6310 + components: + - pos: 22.5,17.5 + parent: 1 + type: Transform + - uid: 6311 + components: + - pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 6312 + components: + - pos: -13.5,22.5 + parent: 1 + type: Transform + - uid: 6313 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - uid: 6314 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - uid: 6315 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 6316 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 6317 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 6318 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 6319 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 6415 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 6416 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 6417 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 6418 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 6419 + components: + - pos: -22.5,-6.5 + parent: 1 + type: Transform + - uid: 6420 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 6421 + components: + - pos: -24.5,-6.5 + parent: 1 + type: Transform + - uid: 6422 + components: + - pos: -25.5,-6.5 + parent: 1 + type: Transform + - uid: 6423 + components: + - pos: -26.5,-6.5 + parent: 1 + type: Transform + - uid: 6424 + components: + - pos: -27.5,-6.5 + parent: 1 + type: Transform + - uid: 6425 + components: + - pos: -28.5,-6.5 + parent: 1 + type: Transform + - uid: 6426 + components: + - pos: -29.5,-6.5 + parent: 1 + type: Transform + - uid: 6427 + components: + - pos: -30.5,-6.5 + parent: 1 + type: Transform + - uid: 6428 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - uid: 6429 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - uid: 6430 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - uid: 6431 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - uid: 6432 + components: + - pos: -26.5,-1.5 + parent: 1 + type: Transform + - uid: 6433 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 6434 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 6435 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 6436 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 6437 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 6438 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 6439 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 6440 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 6441 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 6442 + components: + - pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 6443 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 6444 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 6445 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 6446 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 6447 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 6448 + components: + - pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 6449 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 6450 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 6451 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 6452 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 6453 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 6454 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 6455 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 6456 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 6457 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 6458 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 6459 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - uid: 6460 + components: + - pos: -19.5,-2.5 + parent: 1 + type: Transform + - uid: 6461 + components: + - pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 6462 + components: + - pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 6463 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 6464 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 6465 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 6466 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 6467 + components: + - pos: -17.5,-5.5 + parent: 1 + type: Transform + - uid: 6468 + components: + - pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 6469 + components: + - pos: -16.5,-18.5 + parent: 1 + type: Transform + - uid: 6470 + components: + - pos: -16.5,-17.5 + parent: 1 + type: Transform + - uid: 6471 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 6472 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 6473 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 6474 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 6475 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 6476 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 6477 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 6478 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 6479 + components: + - pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 6480 + components: + - pos: -18.5,-9.5 + parent: 1 + type: Transform + - uid: 6481 + components: + - pos: -19.5,-9.5 + parent: 1 + type: Transform + - uid: 6482 + components: + - pos: -17.5,-13.5 + parent: 1 + type: Transform + - uid: 6483 + components: + - pos: -18.5,-13.5 + parent: 1 + type: Transform + - uid: 6484 + components: + - pos: -19.5,-13.5 + parent: 1 + type: Transform + - uid: 6485 + components: + - pos: -17.5,-17.5 + parent: 1 + type: Transform + - uid: 6486 + components: + - pos: -18.5,-17.5 + parent: 1 + type: Transform + - uid: 6487 + components: + - pos: -19.5,-17.5 + parent: 1 + type: Transform + - uid: 6488 + components: + - pos: -15.5,-17.5 + parent: 1 + type: Transform + - uid: 6489 + components: + - pos: -14.5,-17.5 + parent: 1 + type: Transform + - uid: 6490 + components: + - pos: -15.5,-13.5 + parent: 1 + type: Transform + - uid: 6491 + components: + - pos: -15.5,-9.5 + parent: 1 + type: Transform + - uid: 6492 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 6493 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 6494 + components: + - pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 6495 + components: + - pos: -7.5,-14.5 + parent: 1 + type: Transform + - uid: 6496 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 6497 + components: + - pos: -5.5,-14.5 + parent: 1 + type: Transform + - uid: 6498 + components: + - pos: -5.5,-13.5 + parent: 1 + type: Transform + - uid: 6499 + components: + - pos: -5.5,-12.5 + parent: 1 + type: Transform + - uid: 6500 + components: + - pos: -5.5,-11.5 + parent: 1 + type: Transform + - uid: 6501 + components: + - pos: -7.5,-13.5 + parent: 1 + type: Transform + - uid: 6502 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform + - uid: 6503 + components: + - pos: -7.5,-11.5 + parent: 1 + type: Transform + - uid: 6504 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 6505 + components: + - pos: -7.5,-9.5 + parent: 1 + type: Transform + - uid: 6506 + components: + - pos: -7.5,-8.5 + parent: 1 + type: Transform + - uid: 6507 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 6508 + components: + - pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 6509 + components: + - pos: -10.5,-14.5 + parent: 1 + type: Transform + - uid: 6510 + components: + - pos: -11.5,-14.5 + parent: 1 + type: Transform + - uid: 6511 + components: + - pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 6512 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 6513 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 6514 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 6515 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 6516 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 6517 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 6518 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 6519 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 6520 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 6578 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 6579 + components: + - pos: 24.5,-11.5 + parent: 1 + type: Transform + - uid: 6580 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 6581 + components: + - pos: 23.5,-10.5 + parent: 1 + type: Transform + - uid: 6582 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 6583 + components: + - pos: 21.5,-10.5 + parent: 1 + type: Transform + - uid: 6584 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 6585 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform + - uid: 6586 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - uid: 6587 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 6588 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - uid: 6589 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 6590 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 6591 + components: + - pos: 13.5,-10.5 + parent: 1 + type: Transform + - uid: 6592 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 6593 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 6594 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 6595 + components: + - pos: 13.5,-11.5 + parent: 1 + type: Transform + - uid: 6596 + components: + - pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 6597 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - uid: 6598 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - uid: 6599 + components: + - pos: 16.5,-13.5 + parent: 1 + type: Transform + - uid: 6600 + components: + - pos: 16.5,-14.5 + parent: 1 + type: Transform + - uid: 6601 + components: + - pos: 17.5,-14.5 + parent: 1 + type: Transform + - uid: 6602 + components: + - pos: 18.5,-14.5 + parent: 1 + type: Transform + - uid: 6603 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform + - uid: 6604 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 6605 + components: + - pos: 26.5,-12.5 + parent: 1 + type: Transform + - uid: 6608 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 6609 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 6610 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 6611 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 6612 + components: + - pos: 27.5,-8.5 + parent: 1 + type: Transform + - uid: 6613 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - uid: 6614 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 6615 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - uid: 6618 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 6619 + components: + - pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 6620 + components: + - pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 6621 + components: + - pos: 16.5,-7.5 + parent: 1 + type: Transform + - uid: 6622 + components: + - pos: 15.5,-6.5 + parent: 1 + type: Transform + - uid: 6623 + components: + - pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 6624 + components: + - pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 6625 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 6626 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 6627 + components: + - pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 6628 + components: + - pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 6629 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform + - uid: 6630 + components: + - pos: 20.5,-4.5 + parent: 1 + type: Transform + - uid: 6631 + components: + - pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 6632 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - uid: 6633 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - uid: 6634 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform + - uid: 6635 + components: + - pos: 22.5,-7.5 + parent: 1 + type: Transform + - uid: 6636 + components: + - pos: 19.5,-6.5 + parent: 1 + type: Transform + - uid: 6637 + components: + - pos: 19.5,-5.5 + parent: 1 + type: Transform + - uid: 6638 + components: + - pos: 19.5,-7.5 + parent: 1 + type: Transform + - uid: 6639 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 6640 + components: + - pos: 34.5,-5.5 + parent: 1 + type: Transform + - uid: 6641 + components: + - pos: 34.5,-4.5 + parent: 1 + type: Transform + - uid: 6642 + components: + - pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 6643 + components: + - pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 6644 + components: + - pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 6645 + components: + - pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 6646 + components: + - pos: 38.5,-3.5 + parent: 1 + type: Transform + - uid: 6647 + components: + - pos: 39.5,-3.5 + parent: 1 + type: Transform + - uid: 6648 + components: + - pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 6649 + components: + - pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 6650 + components: + - pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 6651 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 6652 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 6653 + components: + - pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 6654 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 6655 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 6656 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 6657 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 6658 + components: + - pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 6659 + components: + - pos: 40.5,-14.5 + parent: 1 + type: Transform + - uid: 6660 + components: + - pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 6661 + components: + - pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 6662 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 6663 + components: + - pos: 40.5,-18.5 + parent: 1 + type: Transform + - uid: 6664 + components: + - pos: 40.5,-19.5 + parent: 1 + type: Transform + - uid: 6665 + components: + - pos: 39.5,-19.5 + parent: 1 + type: Transform + - uid: 6666 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 6667 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 6668 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 6669 + components: + - pos: 35.5,-19.5 + parent: 1 + type: Transform + - uid: 6670 + components: + - pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 6671 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 6672 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 6673 + components: + - pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 6674 + components: + - pos: 34.5,-16.5 + parent: 1 + type: Transform + - uid: 6675 + components: + - pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 6676 + components: + - pos: 32.5,-16.5 + parent: 1 + type: Transform + - uid: 6677 + components: + - pos: 31.5,-16.5 + parent: 1 + type: Transform + - uid: 6678 + components: + - pos: 31.5,-17.5 + parent: 1 + type: Transform + - uid: 6679 + components: + - pos: 31.5,-18.5 + parent: 1 + type: Transform + - uid: 6680 + components: + - pos: 31.5,-19.5 + parent: 1 + type: Transform + - uid: 6681 + components: + - pos: 32.5,-19.5 + parent: 1 + type: Transform + - uid: 6682 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 6683 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 6684 + components: + - pos: 41.5,-18.5 + parent: 1 + type: Transform + - uid: 6685 + components: + - pos: 33.5,-22.5 + parent: 1 + type: Transform + - uid: 6686 + components: + - pos: 33.5,-23.5 + parent: 1 + type: Transform + - uid: 6687 + components: + - pos: 33.5,-21.5 + parent: 1 + type: Transform + - uid: 6688 + components: + - pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 6689 + components: + - pos: 35.5,-21.5 + parent: 1 + type: Transform + - uid: 6690 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 6691 + components: + - pos: 37.5,-21.5 + parent: 1 + type: Transform + - uid: 6692 + components: + - pos: 37.5,-22.5 + parent: 1 + type: Transform + - uid: 6693 + components: + - pos: 37.5,-23.5 + parent: 1 + type: Transform + - uid: 6694 + components: + - pos: 42.5,-18.5 + parent: 1 + type: Transform + - uid: 6695 + components: + - pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 6696 + components: + - pos: 42.5,-16.5 + parent: 1 + type: Transform + - uid: 6697 + components: + - pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 6698 + components: + - pos: 42.5,-14.5 + parent: 1 + type: Transform + - uid: 6699 + components: + - pos: 42.5,-13.5 + parent: 1 + type: Transform + - uid: 6700 + components: + - pos: 42.5,-12.5 + parent: 1 + type: Transform + - uid: 6701 + components: + - pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 6702 + components: + - pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 6703 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 6704 + components: + - pos: 42.5,-8.5 + parent: 1 + type: Transform + - uid: 6705 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 6706 + components: + - pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 6707 + components: + - pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 6708 + components: + - pos: 42.5,-4.5 + parent: 1 + type: Transform + - uid: 6709 + components: + - pos: 41.5,-4.5 + parent: 1 + type: Transform + - uid: 6710 + components: + - pos: 35.5,-16.5 + parent: 1 + type: Transform + - uid: 6711 + components: + - pos: 36.5,-16.5 + parent: 1 + type: Transform + - uid: 6712 + components: + - pos: 37.5,-16.5 + parent: 1 + type: Transform + - uid: 6713 + components: + - pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 6714 + components: + - pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 6715 + components: + - pos: 34.5,-12.5 + parent: 1 + type: Transform + - uid: 6716 + components: + - pos: 35.5,-12.5 + parent: 1 + type: Transform + - uid: 6717 + components: + - pos: 36.5,-12.5 + parent: 1 + type: Transform + - uid: 6718 + components: + - pos: 37.5,-12.5 + parent: 1 + type: Transform + - uid: 6719 + components: + - pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 6720 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform + - uid: 6721 + components: + - pos: 34.5,-7.5 + parent: 1 + type: Transform + - uid: 6722 + components: + - pos: 34.5,-8.5 + parent: 1 + type: Transform + - uid: 6723 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - uid: 6724 + components: + - pos: 34.5,-10.5 + parent: 1 + type: Transform + - uid: 6725 + components: + - pos: 34.5,-10.5 + parent: 1 + type: Transform + - uid: 6726 + components: + - pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 6727 + components: + - pos: 32.5,-10.5 + parent: 1 + type: Transform + - uid: 6728 + components: + - pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 6729 + components: + - pos: 35.5,-10.5 + parent: 1 + type: Transform + - uid: 6730 + components: + - pos: 36.5,-10.5 + parent: 1 + type: Transform + - uid: 6731 + components: + - pos: 37.5,-10.5 + parent: 1 + type: Transform + - uid: 6732 + components: + - pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 6733 + components: + - pos: 35.5,-6.5 + parent: 1 + type: Transform + - uid: 6734 + components: + - pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 6735 + components: + - pos: 37.5,-6.5 + parent: 1 + type: Transform + - uid: 6736 + components: + - pos: 38.5,-6.5 + parent: 1 + type: Transform + - uid: 6737 + components: + - pos: 30.5,-17.5 + parent: 1 + type: Transform + - uid: 6738 + components: + - pos: 29.5,-17.5 + parent: 1 + type: Transform + - uid: 6739 + components: + - pos: 29.5,-18.5 + parent: 1 + type: Transform + - uid: 6740 + components: + - pos: 29.5,-19.5 + parent: 1 + type: Transform + - uid: 6741 + components: + - pos: 29.5,-20.5 + parent: 1 + type: Transform + - uid: 6783 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 6784 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 7056 + components: + - pos: 43.5,-18.5 + parent: 1 + type: Transform + - uid: 7057 + components: + - pos: 44.5,-18.5 + parent: 1 + type: Transform + - uid: 7058 + components: + - pos: 45.5,-18.5 + parent: 1 + type: Transform + - uid: 7059 + components: + - pos: 46.5,-18.5 + parent: 1 + type: Transform + - uid: 7060 + components: + - pos: 46.5,-17.5 + parent: 1 + type: Transform + - uid: 7061 + components: + - pos: 46.5,-16.5 + parent: 1 + type: Transform + - uid: 7062 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 7063 + components: + - pos: 46.5,-14.5 + parent: 1 + type: Transform + - uid: 7064 + components: + - pos: 46.5,-13.5 + parent: 1 + type: Transform + - uid: 7106 + components: + - pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 7107 + components: + - pos: 6.5,-20.5 + parent: 1 + type: Transform + - uid: 7108 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 7205 + components: + - pos: 1.5,-33.5 + parent: 1 + type: Transform + - uid: 7225 + components: + - pos: 46.5,-12.5 + parent: 1 + type: Transform + - uid: 7226 + components: + - pos: 46.5,-11.5 + parent: 1 + type: Transform + - uid: 7227 + components: + - pos: 46.5,-10.5 + parent: 1 + type: Transform + - uid: 7228 + components: + - pos: 46.5,-9.5 + parent: 1 + type: Transform + - uid: 7229 + components: + - pos: 46.5,-8.5 + parent: 1 + type: Transform + - uid: 7230 + components: + - pos: 46.5,-7.5 + parent: 1 + type: Transform + - uid: 7231 + components: + - pos: 46.5,-6.5 + parent: 1 + type: Transform + - uid: 7232 + components: + - pos: 46.5,-5.5 + parent: 1 + type: Transform + - uid: 7233 + components: + - pos: 46.5,-4.5 + parent: 1 + type: Transform + - uid: 7234 + components: + - pos: 45.5,-4.5 + parent: 1 + type: Transform + - uid: 7235 + components: + - pos: 44.5,-4.5 + parent: 1 + type: Transform + - uid: 7236 + components: + - pos: 43.5,-4.5 + parent: 1 + type: Transform + - uid: 7308 + components: + - pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 7309 + components: + - pos: 15.5,-27.5 + parent: 1 + type: Transform + - uid: 7310 + components: + - pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 7311 + components: + - pos: 15.5,-25.5 + parent: 1 + type: Transform + - uid: 7312 + components: + - pos: 15.5,-24.5 + parent: 1 + type: Transform + - uid: 7313 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 7314 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 7315 + components: + - pos: 14.5,-26.5 + parent: 1 + type: Transform + - uid: 7316 + components: + - pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 7317 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 7318 + components: + - pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 7319 + components: + - pos: 10.5,-26.5 + parent: 1 + type: Transform + - uid: 7320 + components: + - pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 7321 + components: + - pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 7322 + components: + - pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 7323 + components: + - pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 7324 + components: + - pos: 5.5,-26.5 + parent: 1 + type: Transform + - uid: 7325 + components: + - pos: 11.5,-27.5 + parent: 1 + type: Transform + - uid: 7326 + components: + - pos: 11.5,-28.5 + parent: 1 + type: Transform + - uid: 7327 + components: + - pos: 11.5,-29.5 + parent: 1 + type: Transform + - uid: 7328 + components: + - pos: 11.5,-30.5 + parent: 1 + type: Transform + - uid: 7329 + components: + - pos: 13.5,-27.5 + parent: 1 + type: Transform + - uid: 7330 + components: + - pos: 13.5,-28.5 + parent: 1 + type: Transform + - uid: 7331 + components: + - pos: 13.5,-29.5 + parent: 1 + type: Transform + - uid: 7332 + components: + - pos: 13.5,-30.5 + parent: 1 + type: Transform + - uid: 7333 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 7334 + components: + - pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 7335 + components: + - pos: 10.5,-19.5 + parent: 1 + type: Transform + - uid: 7336 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 7337 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 7338 + components: + - pos: 9.5,-21.5 + parent: 1 + type: Transform + - uid: 7339 + components: + - pos: 9.5,-22.5 + parent: 1 + type: Transform + - uid: 7340 + components: + - pos: 9.5,-23.5 + parent: 1 + type: Transform + - uid: 7341 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 7342 + components: + - pos: 11.5,-21.5 + parent: 1 + type: Transform + - uid: 7343 + components: + - pos: 11.5,-22.5 + parent: 1 + type: Transform + - uid: 7344 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 7345 + components: + - pos: 15.5,-20.5 + parent: 1 + type: Transform + - uid: 7346 + components: + - pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 7347 + components: + - pos: 22.5,-21.5 + parent: 1 + type: Transform + - uid: 7348 + components: + - pos: 21.5,-21.5 + parent: 1 + type: Transform + - uid: 7349 + components: + - pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 7350 + components: + - pos: 19.5,-21.5 + parent: 1 + type: Transform + - uid: 7351 + components: + - pos: 18.5,-21.5 + parent: 1 + type: Transform + - uid: 7352 + components: + - pos: 21.5,-22.5 + parent: 1 + type: Transform + - uid: 7353 + components: + - pos: 21.5,-23.5 + parent: 1 + type: Transform + - uid: 7354 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 7355 + components: + - pos: 21.5,-25.5 + parent: 1 + type: Transform + - uid: 7356 + components: + - pos: 21.5,-26.5 + parent: 1 + type: Transform + - uid: 7357 + components: + - pos: 20.5,-26.5 + parent: 1 + type: Transform + - uid: 7358 + components: + - pos: 19.5,-26.5 + parent: 1 + type: Transform + - uid: 7359 + components: + - pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 7360 + components: + - pos: 22.5,-23.5 + parent: 1 + type: Transform + - uid: 7361 + components: + - pos: 23.5,-23.5 + parent: 1 + type: Transform + - uid: 7362 + components: + - pos: 24.5,-23.5 + parent: 1 + type: Transform + - uid: 7363 + components: + - pos: 25.5,-23.5 + parent: 1 + type: Transform + - uid: 7364 + components: + - pos: 25.5,-24.5 + parent: 1 + type: Transform + - uid: 7365 + components: + - pos: 25.5,-25.5 + parent: 1 + type: Transform + - uid: 7366 + components: + - pos: 25.5,-26.5 + parent: 1 + type: Transform + - uid: 7367 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 7368 + components: + - pos: 21.5,-18.5 + parent: 1 + type: Transform + - uid: 7369 + components: + - pos: 21.5,-19.5 + parent: 1 + type: Transform + - uid: 7370 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 7371 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - uid: 7372 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 7373 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 7374 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 7375 + components: + - pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 7376 + components: + - pos: 5.5,-22.5 + parent: 1 + type: Transform + - uid: 7377 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - uid: 7378 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 7379 + components: + - pos: 8.5,-17.5 + parent: 1 + type: Transform + - uid: 7380 + components: + - pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 7381 + components: + - pos: 6.5,-17.5 + parent: 1 + type: Transform + - uid: 7382 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - uid: 7383 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 7384 + components: + - pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 7385 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 7386 + components: + - pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 7387 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 7388 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform + - uid: 7563 + components: + - pos: -40.5,22.5 + parent: 1 + type: Transform + - uid: 7564 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - uid: 7565 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - uid: 7566 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 7567 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 7568 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 7569 + components: + - pos: -39.5,22.5 + parent: 1 + type: Transform + - uid: 7570 + components: + - pos: -38.5,22.5 + parent: 1 + type: Transform + - uid: 7571 + components: + - pos: -37.5,22.5 + parent: 1 + type: Transform + - uid: 7720 + components: + - pos: -8.5,-17.5 + parent: 1 + type: Transform + - uid: 7721 + components: + - pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 7722 + components: + - pos: -7.5,-18.5 + parent: 1 + type: Transform + - uid: 7810 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 7811 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 7812 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 7813 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 7814 + components: + - pos: -6.5,-25.5 + parent: 1 + type: Transform + - uid: 7815 + components: + - pos: -6.5,-26.5 + parent: 1 + type: Transform + - uid: 7816 + components: + - pos: -6.5,-27.5 + parent: 1 + type: Transform + - uid: 7817 + components: + - pos: -6.5,-28.5 + parent: 1 + type: Transform + - uid: 7818 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 7819 + components: + - pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 7820 + components: + - pos: -2.5,-26.5 + parent: 1 + type: Transform + - uid: 7821 + components: + - pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 7822 + components: + - pos: -2.5,-28.5 + parent: 1 + type: Transform + - uid: 7823 + components: + - pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 7824 + components: + - pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 7825 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 7826 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 7827 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 7828 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - uid: 7829 + components: + - pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 7830 + components: + - pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 7831 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 7832 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 7833 + components: + - pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 7834 + components: + - pos: -4.5,-33.5 + parent: 1 + type: Transform + - uid: 7835 + components: + - pos: -3.5,-33.5 + parent: 1 + type: Transform + - uid: 7836 + components: + - pos: -2.5,-33.5 + parent: 1 + type: Transform + - uid: 7837 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 7838 + components: + - pos: -1.5,-32.5 + parent: 1 + type: Transform + - uid: 7839 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 7840 + components: + - pos: 0.5,-32.5 + parent: 1 + type: Transform + - uid: 7841 + components: + - pos: 1.5,-32.5 + parent: 1 + type: Transform + - uid: 7842 + components: + - pos: 1.5,-31.5 + parent: 1 + type: Transform + - uid: 7843 + components: + - pos: 1.5,-30.5 + parent: 1 + type: Transform + - uid: 7844 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 7845 + components: + - pos: 1.5,-26.5 + parent: 1 + type: Transform + - uid: 7846 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform + - uid: 7847 + components: + - pos: -6.5,-32.5 + parent: 1 + type: Transform + - uid: 7848 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 7849 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 7850 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 7851 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 7852 + components: + - pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 7853 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 7854 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 7855 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 7856 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 7857 + components: + - pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 7858 + components: + - pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 7859 + components: + - pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 7860 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 7861 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 7862 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 7863 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 7864 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 7865 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 7866 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 7867 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 7868 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 7869 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 7870 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 7871 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 7872 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 7873 + components: + - pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 7874 + components: + - pos: -19.5,-25.5 + parent: 1 + type: Transform + - uid: 7875 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - uid: 7876 + components: + - pos: -17.5,-25.5 + parent: 1 + type: Transform + - uid: 7877 + components: + - pos: -16.5,-25.5 + parent: 1 + type: Transform + - uid: 7878 + components: + - pos: -15.5,-25.5 + parent: 1 + type: Transform + - uid: 7879 + components: + - pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 7880 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - uid: 7881 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 7882 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform + - uid: 7883 + components: + - pos: -11.5,-26.5 + parent: 1 + type: Transform + - uid: 7884 + components: + - pos: -11.5,-27.5 + parent: 1 + type: Transform + - uid: 7885 + components: + - pos: -11.5,-28.5 + parent: 1 + type: Transform + - uid: 7886 + components: + - pos: -11.5,-29.5 + parent: 1 + type: Transform + - uid: 7887 + components: + - pos: -11.5,-30.5 + parent: 1 + type: Transform + - uid: 7894 + components: + - pos: -17.5,-1.5 + parent: 1 + type: Transform + - uid: 7895 + components: + - pos: -17.5,-0.5 + parent: 1 + type: Transform + - uid: 7905 + components: + - pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 7906 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 7907 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 7908 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 7909 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 7910 + components: + - pos: -36.5,-6.5 + parent: 1 + type: Transform + - uid: 7911 + components: + - pos: -37.5,-7.5 + parent: 1 + type: Transform + - uid: 7912 + components: + - pos: -37.5,-8.5 + parent: 1 + type: Transform + - uid: 7913 + components: + - pos: -37.5,-9.5 + parent: 1 + type: Transform + - uid: 7914 + components: + - pos: -37.5,-10.5 + parent: 1 + type: Transform + - uid: 7915 + components: + - pos: -36.5,-10.5 + parent: 1 + type: Transform + - uid: 7916 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 7917 + components: + - pos: -41.5,-6.5 + parent: 1 + type: Transform + - uid: 7918 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 7919 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 7920 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 7921 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 7922 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 7923 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform + - uid: 7924 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 7925 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - uid: 7926 + components: + - pos: -39.5,-3.5 + parent: 1 + type: Transform + - uid: 7927 + components: + - pos: -39.5,-2.5 + parent: 1 + type: Transform + - uid: 7928 + components: + - pos: -39.5,-1.5 + parent: 1 + type: Transform + - uid: 7929 + components: + - pos: -39.5,-0.5 + parent: 1 + type: Transform + - uid: 7930 + components: + - pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 7931 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 7932 + components: + - pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 7933 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 7934 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 7935 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 7936 + components: + - pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 7937 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 7938 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 7939 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 7940 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 7941 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 7942 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 7943 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 7944 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 7945 + components: + - pos: -41.5,3.5 + parent: 1 + type: Transform + - uid: 7946 + components: + - pos: -42.5,3.5 + parent: 1 + type: Transform + - uid: 7947 + components: + - pos: -43.5,3.5 + parent: 1 + type: Transform + - uid: 7948 + components: + - pos: -41.5,5.5 + parent: 1 + type: Transform + - uid: 7949 + components: + - pos: -42.5,5.5 + parent: 1 + type: Transform + - uid: 7950 + components: + - pos: -43.5,5.5 + parent: 1 + type: Transform + - uid: 7951 + components: + - pos: -41.5,11.5 + parent: 1 + type: Transform + - uid: 7952 + components: + - pos: -42.5,11.5 + parent: 1 + type: Transform + - uid: 7953 + components: + - pos: -43.5,11.5 + parent: 1 + type: Transform + - uid: 7954 + components: + - pos: -41.5,13.5 + parent: 1 + type: Transform + - uid: 7955 + components: + - pos: -42.5,13.5 + parent: 1 + type: Transform + - uid: 7956 + components: + - pos: -43.5,13.5 + parent: 1 + type: Transform + - uid: 7957 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 7958 + components: + - pos: -31.5,9.5 + parent: 1 + type: Transform + - uid: 7959 + components: + - pos: -32.5,9.5 + parent: 1 + type: Transform + - uid: 7960 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 7961 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 7962 + components: + - pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 7963 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 7964 + components: + - pos: -34.5,6.5 + parent: 1 + type: Transform + - uid: 7965 + components: + - pos: -34.5,5.5 + parent: 1 + type: Transform + - uid: 7966 + components: + - pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 7967 + components: + - pos: -34.5,3.5 + parent: 1 + type: Transform + - uid: 7968 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 7969 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 7970 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 7971 + components: + - pos: -33.5,2.5 + parent: 1 + type: Transform + - uid: 7972 + components: + - pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 7973 + components: + - pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 7974 + components: + - pos: -30.5,2.5 + parent: 1 + type: Transform + - uid: 7975 + components: + - pos: -29.5,2.5 + parent: 1 + type: Transform + - uid: 7976 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 7977 + components: + - pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 7978 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 7979 + components: + - pos: -32.5,1.5 + parent: 1 + type: Transform + - uid: 7980 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 7981 + components: + - pos: -36.5,9.5 + parent: 1 + type: Transform + - uid: 7982 + components: + - pos: -37.5,9.5 + parent: 1 + type: Transform + - uid: 7983 + components: + - pos: -35.5,6.5 + parent: 1 + type: Transform + - uid: 7984 + components: + - pos: -36.5,6.5 + parent: 1 + type: Transform + - uid: 7985 + components: + - pos: -37.5,6.5 + parent: 1 + type: Transform + - uid: 7986 + components: + - pos: -33.5,6.5 + parent: 1 + type: Transform + - uid: 7987 + components: + - pos: -32.5,6.5 + parent: 1 + type: Transform + - uid: 7988 + components: + - pos: -31.5,6.5 + parent: 1 + type: Transform + - uid: 7989 + components: + - pos: -32.5,10.5 + parent: 1 + type: Transform + - uid: 7990 + components: + - pos: -32.5,11.5 + parent: 1 + type: Transform + - uid: 7991 + components: + - pos: -32.5,12.5 + parent: 1 + type: Transform + - uid: 7992 + components: + - pos: -32.5,13.5 + parent: 1 + type: Transform + - uid: 7993 + components: + - pos: -32.5,14.5 + parent: 1 + type: Transform + - uid: 7994 + components: + - pos: -32.5,15.5 + parent: 1 + type: Transform + - uid: 7995 + components: + - pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 7996 + components: + - pos: -37.5,11.5 + parent: 1 + type: Transform + - uid: 7997 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform + - uid: 7998 + components: + - pos: -37.5,13.5 + parent: 1 + type: Transform + - uid: 7999 + components: + - pos: -33.5,13.5 + parent: 1 + type: Transform + - uid: 8000 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform + - uid: 8095 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 8096 + components: + - pos: 28.5,1.5 + parent: 1 + type: Transform + - uid: 8097 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 8098 + components: + - pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 8099 + components: + - pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 8100 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 8101 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 8102 + components: + - pos: 23.5,2.5 + parent: 1 + type: Transform + - uid: 8103 + components: + - pos: 22.5,2.5 + parent: 1 + type: Transform + - uid: 8104 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 8105 + components: + - pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 8106 + components: + - pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 8107 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 8108 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 8109 + components: + - pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 8110 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 8111 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 8112 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 8113 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 8114 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 8115 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 8116 + components: + - pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 8117 + components: + - pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 8118 + components: + - pos: 33.5,2.5 + parent: 1 + type: Transform + - uid: 8119 + components: + - pos: 34.5,2.5 + parent: 1 + type: Transform + - uid: 8120 + components: + - pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 8121 + components: + - pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 8122 + components: + - pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 8123 + components: + - pos: 38.5,2.5 + parent: 1 + type: Transform + - uid: 8124 + components: + - pos: 39.5,2.5 + parent: 1 + type: Transform + - uid: 8125 + components: + - pos: 40.5,2.5 + parent: 1 + type: Transform + - uid: 8126 + components: + - pos: 41.5,2.5 + parent: 1 + type: Transform + - uid: 8127 + components: + - pos: 42.5,2.5 + parent: 1 + type: Transform + - uid: 8128 + components: + - pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 8129 + components: + - pos: 44.5,2.5 + parent: 1 + type: Transform + - uid: 8130 + components: + - pos: 45.5,2.5 + parent: 1 + type: Transform + - uid: 8131 + components: + - pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 8132 + components: + - pos: 44.5,14.5 + parent: 1 + type: Transform + - uid: 8133 + components: + - pos: 45.5,14.5 + parent: 1 + type: Transform + - uid: 8134 + components: + - pos: 45.5,13.5 + parent: 1 + type: Transform + - uid: 8135 + components: + - pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 8136 + components: + - pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 8137 + components: + - pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 8138 + components: + - pos: 45.5,9.5 + parent: 1 + type: Transform + - uid: 8139 + components: + - pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 8140 + components: + - pos: 45.5,7.5 + parent: 1 + type: Transform + - uid: 8141 + components: + - pos: 45.5,6.5 + parent: 1 + type: Transform + - uid: 8142 + components: + - pos: 45.5,5.5 + parent: 1 + type: Transform + - uid: 8143 + components: + - pos: 45.5,4.5 + parent: 1 + type: Transform + - uid: 8144 + components: + - pos: 46.5,5.5 + parent: 1 + type: Transform + - uid: 8145 + components: + - pos: 45.5,15.5 + parent: 1 + type: Transform + - uid: 8146 + components: + - pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 8147 + components: + - pos: 45.5,17.5 + parent: 1 + type: Transform + - uid: 8148 + components: + - pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 8149 + components: + - pos: 45.5,19.5 + parent: 1 + type: Transform + - uid: 8150 + components: + - pos: 46.5,12.5 + parent: 1 + type: Transform + - uid: 8151 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 8152 + components: + - pos: 41.5,23.5 + parent: 1 + type: Transform + - uid: 8153 + components: + - pos: 41.5,22.5 + parent: 1 + type: Transform + - uid: 8154 + components: + - pos: 40.5,22.5 + parent: 1 + type: Transform + - uid: 8155 + components: + - pos: 42.5,22.5 + parent: 1 + type: Transform + - uid: 8156 + components: + - pos: 43.5,22.5 + parent: 1 + type: Transform + - uid: 8157 + components: + - pos: 44.5,22.5 + parent: 1 + type: Transform + - uid: 8158 + components: + - pos: 45.5,22.5 + parent: 1 + type: Transform + - uid: 8159 + components: + - pos: 45.5,21.5 + parent: 1 + type: Transform + - uid: 8160 + components: + - pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 8161 + components: + - pos: 39.5,28.5 + parent: 1 + type: Transform + - uid: 8162 + components: + - pos: 40.5,28.5 + parent: 1 + type: Transform + - uid: 8163 + components: + - pos: 41.5,28.5 + parent: 1 + type: Transform + - uid: 8164 + components: + - pos: 42.5,28.5 + parent: 1 + type: Transform + - uid: 8165 + components: + - pos: 43.5,28.5 + parent: 1 + type: Transform + - uid: 8166 + components: + - pos: 44.5,28.5 + parent: 1 + type: Transform + - uid: 8167 + components: + - pos: 45.5,28.5 + parent: 1 + type: Transform + - uid: 8168 + components: + - pos: 45.5,27.5 + parent: 1 + type: Transform + - uid: 8169 + components: + - pos: 45.5,26.5 + parent: 1 + type: Transform + - uid: 8170 + components: + - pos: 41.5,27.5 + parent: 1 + type: Transform + - uid: 8171 + components: + - pos: 41.5,26.5 + parent: 1 + type: Transform + - uid: 8172 + components: + - pos: 43.5,29.5 + parent: 1 + type: Transform + - uid: 8173 + components: + - pos: 43.5,30.5 + parent: 1 + type: Transform + - uid: 8174 + components: + - pos: 43.5,31.5 + parent: 1 + type: Transform + - uid: 8175 + components: + - pos: 43.5,32.5 + parent: 1 + type: Transform + - uid: 8176 + components: + - pos: 43.5,33.5 + parent: 1 + type: Transform + - uid: 8177 + components: + - pos: 42.5,32.5 + parent: 1 + type: Transform + - uid: 8178 + components: + - pos: 41.5,32.5 + parent: 1 + type: Transform + - uid: 8179 + components: + - pos: 40.5,32.5 + parent: 1 + type: Transform + - uid: 8180 + components: + - pos: 44.5,32.5 + parent: 1 + type: Transform + - uid: 8181 + components: + - pos: 45.5,32.5 + parent: 1 + type: Transform + - uid: 8190 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 8193 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 8194 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 8195 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 8196 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 8197 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 8198 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 8199 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 8200 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 8201 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 8202 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 8203 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 8204 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 8205 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 8206 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 8207 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 8208 + components: + - pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 8209 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform + - uid: 8210 + components: + - pos: 43.5,15.5 + parent: 1 + type: Transform + - uid: 8211 + components: + - pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 8212 + components: + - pos: 42.5,16.5 + parent: 1 + type: Transform + - uid: 8213 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 8214 + components: + - pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 8215 + components: + - pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 8216 + components: + - pos: 39.5,17.5 + parent: 1 + type: Transform + - uid: 8217 + components: + - pos: 37.5,28.5 + parent: 1 + type: Transform + - uid: 8218 + components: + - pos: 37.5,29.5 + parent: 1 + type: Transform + - uid: 8219 + components: + - pos: 37.5,30.5 + parent: 1 + type: Transform + - uid: 8248 + components: + - pos: -10.5,-25.5 + parent: 1 + type: Transform + - uid: 8249 + components: + - pos: -10.5,-24.5 + parent: 1 + type: Transform + - uid: 8250 + components: + - pos: -10.5,-23.5 + parent: 1 + type: Transform + - uid: 8251 + components: + - pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 8252 + components: + - pos: -9.5,-22.5 + parent: 1 + type: Transform + - uid: 8363 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 8364 + components: + - pos: -31.5,-22.5 + parent: 1 + type: Transform + - uid: 8365 + components: + - pos: -31.5,-23.5 + parent: 1 + type: Transform + - uid: 8366 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - uid: 8367 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 8368 + components: + - pos: -33.5,-22.5 + parent: 1 + type: Transform + - uid: 8369 + components: + - pos: -34.5,-22.5 + parent: 1 + type: Transform + - uid: 8370 + components: + - pos: -35.5,-22.5 + parent: 1 + type: Transform + - uid: 8371 + components: + - pos: -35.5,-23.5 + parent: 1 + type: Transform + - uid: 8374 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 8375 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - uid: 8376 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - uid: 8377 + components: + - pos: -29.5,-16.5 + parent: 1 + type: Transform + - uid: 8378 + components: + - pos: -29.5,-15.5 + parent: 1 + type: Transform + - uid: 8379 + components: + - pos: -29.5,-14.5 + parent: 1 + type: Transform + - uid: 8380 + components: + - pos: -29.5,-13.5 + parent: 1 + type: Transform + - uid: 8381 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 8382 + components: + - pos: -34.5,-16.5 + parent: 1 + type: Transform + - uid: 8385 + components: + - pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 8386 + components: + - pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 8387 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 8388 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 8389 + components: + - pos: -40.5,-18.5 + parent: 1 + type: Transform + - uid: 8390 + components: + - pos: -41.5,-18.5 + parent: 1 + type: Transform + - uid: 8391 + components: + - pos: -42.5,-18.5 + parent: 1 + type: Transform + - uid: 8392 + components: + - pos: -41.5,-17.5 + parent: 1 + type: Transform + - uid: 8393 + components: + - pos: -41.5,-16.5 + parent: 1 + type: Transform + - uid: 8394 + components: + - pos: -41.5,-15.5 + parent: 1 + type: Transform + - uid: 8395 + components: + - pos: -41.5,-19.5 + parent: 1 + type: Transform + - uid: 8396 + components: + - pos: -41.5,-20.5 + parent: 1 + type: Transform + - uid: 8397 + components: + - pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 8398 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 8399 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 8400 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 8401 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 8402 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 8403 + components: + - pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 8404 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - uid: 8405 + components: + - pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 8406 + components: + - pos: -27.5,-20.5 + parent: 1 + type: Transform + - uid: 8407 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 8408 + components: + - pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 8409 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 8410 + components: + - pos: -26.5,-22.5 + parent: 1 + type: Transform + - uid: 8411 + components: + - pos: -25.5,-22.5 + parent: 1 + type: Transform + - uid: 8412 + components: + - pos: -24.5,-22.5 + parent: 1 + type: Transform + - uid: 8413 + components: + - pos: -23.5,-22.5 + parent: 1 + type: Transform + - uid: 8414 + components: + - pos: -22.5,-22.5 + parent: 1 + type: Transform + - uid: 8437 + components: + - pos: 34.5,32.5 + parent: 1 + type: Transform + - uid: 8438 + components: + - pos: 34.5,33.5 + parent: 1 + type: Transform + - uid: 8439 + components: + - pos: 34.5,34.5 + parent: 1 + type: Transform + - uid: 8440 + components: + - pos: 35.5,34.5 + parent: 1 + type: Transform + - uid: 8441 + components: + - pos: 36.5,34.5 + parent: 1 + type: Transform + - uid: 8442 + components: + - pos: 33.5,34.5 + parent: 1 + type: Transform + - uid: 8443 + components: + - pos: 32.5,34.5 + parent: 1 + type: Transform + - uid: 8444 + components: + - pos: 31.5,34.5 + parent: 1 + type: Transform + - uid: 8445 + components: + - pos: 30.5,34.5 + parent: 1 + type: Transform + - uid: 8446 + components: + - pos: 29.5,34.5 + parent: 1 + type: Transform + - uid: 8447 + components: + - pos: 28.5,34.5 + parent: 1 + type: Transform + - uid: 8448 + components: + - pos: 27.5,34.5 + parent: 1 + type: Transform + - uid: 8449 + components: + - pos: 26.5,34.5 + parent: 1 + type: Transform + - uid: 8450 + components: + - pos: 25.5,34.5 + parent: 1 + type: Transform + - uid: 8451 + components: + - pos: 24.5,34.5 + parent: 1 + type: Transform + - uid: 8452 + components: + - pos: 23.5,34.5 + parent: 1 + type: Transform + - uid: 8453 + components: + - pos: 22.5,34.5 + parent: 1 + type: Transform + - uid: 8454 + components: + - pos: 21.5,34.5 + parent: 1 + type: Transform + - uid: 8455 + components: + - pos: 20.5,34.5 + parent: 1 + type: Transform + - uid: 8456 + components: + - pos: 20.5,33.5 + parent: 1 + type: Transform + - uid: 8457 + components: + - pos: 24.5,35.5 + parent: 1 + type: Transform + - uid: 8458 + components: + - pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 8459 + components: + - pos: 24.5,37.5 + parent: 1 + type: Transform + - uid: 8460 + components: + - pos: 32.5,35.5 + parent: 1 + type: Transform + - uid: 8461 + components: + - pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 8462 + components: + - pos: 32.5,37.5 + parent: 1 + type: Transform + - uid: 8463 + components: + - pos: 25.5,33.5 + parent: 1 + type: Transform + - uid: 8464 + components: + - pos: 31.5,33.5 + parent: 1 + type: Transform + - uid: 8465 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 8466 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 8467 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 8468 + components: + - pos: 8.5,23.5 + parent: 1 + type: Transform + - uid: 8469 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 8470 + components: + - pos: 8.5,25.5 + parent: 1 + type: Transform + - uid: 8471 + components: + - pos: 8.5,26.5 + parent: 1 + type: Transform + - uid: 8472 + components: + - pos: 8.5,27.5 + parent: 1 + type: Transform + - uid: 8473 + components: + - pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 8474 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 8475 + components: + - pos: 8.5,30.5 + parent: 1 + type: Transform + - uid: 8476 + components: + - pos: 9.5,30.5 + parent: 1 + type: Transform + - uid: 8477 + components: + - pos: 10.5,30.5 + parent: 1 + type: Transform + - uid: 8478 + components: + - pos: 10.5,31.5 + parent: 1 + type: Transform + - uid: 8479 + components: + - pos: 10.5,32.5 + parent: 1 + type: Transform + - uid: 8480 + components: + - pos: 10.5,33.5 + parent: 1 + type: Transform + - uid: 8481 + components: + - pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 8482 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 8483 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 8935 + components: + - pos: -28.5,-13.5 + parent: 1 + type: Transform + - uid: 8936 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - uid: 9067 + components: + - pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 9068 + components: + - pos: -40.5,-11.5 + parent: 1 + type: Transform + - uid: 9069 + components: + - pos: -41.5,-11.5 + parent: 1 + type: Transform + - uid: 9070 + components: + - pos: -41.5,-10.5 + parent: 1 + type: Transform + - uid: 9197 + components: + - pos: -32.5,24.5 + parent: 1 + type: Transform + - uid: 9200 + components: + - pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 9202 + components: + - pos: -33.5,23.5 + parent: 1 + type: Transform + - uid: 9203 + components: + - pos: -33.5,24.5 + parent: 1 + type: Transform + - uid: 9204 + components: + - pos: -33.5,25.5 + parent: 1 + type: Transform + - uid: 9205 + components: + - pos: -34.5,25.5 + parent: 1 + type: Transform + - uid: 9206 + components: + - pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 9207 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform + - uid: 9208 + components: + - pos: -26.5,30.5 + parent: 1 + type: Transform + - uid: 9209 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 9210 + components: + - pos: -28.5,30.5 + parent: 1 + type: Transform + - uid: 9211 + components: + - pos: -29.5,23.5 + parent: 1 + type: Transform + - uid: 9212 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 9213 + components: + - pos: -29.5,21.5 + parent: 1 + type: Transform + - uid: 9214 + components: + - pos: -29.5,20.5 + parent: 1 + type: Transform + - uid: 9215 + components: + - pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 9216 + components: + - pos: -29.5,18.5 + parent: 1 + type: Transform + - uid: 9217 + components: + - pos: -29.5,17.5 + parent: 1 + type: Transform + - uid: 9218 + components: + - pos: -26.5,27.5 + parent: 1 + type: Transform + - uid: 9219 + components: + - pos: -25.5,27.5 + parent: 1 + type: Transform + - uid: 9220 + components: + - pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 9221 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - uid: 9222 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 9223 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 9224 + components: + - pos: -31.5,19.5 + parent: 1 + type: Transform + - uid: 9225 + components: + - pos: -32.5,19.5 + parent: 1 + type: Transform + - uid: 9226 + components: + - pos: -33.5,19.5 + parent: 1 + type: Transform + - uid: 9227 + components: + - pos: -34.5,19.5 + parent: 1 + type: Transform + - uid: 9228 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - uid: 9229 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 9230 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform + - uid: 9231 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 9233 + components: + - pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 9310 + components: + - pos: 20.5,32.5 + parent: 1 + type: Transform + - uid: 9735 + components: + - pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 9738 + components: + - pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 9739 + components: + - pos: -31.5,24.5 + parent: 1 + type: Transform + - uid: 12124 + components: + - pos: -39.5,23.5 + parent: 1 + type: Transform + - uid: 12125 + components: + - pos: -39.5,24.5 + parent: 1 + type: Transform + - uid: 12358 + components: + - pos: 26.5,-13.5 + parent: 1 + type: Transform + - uid: 12359 + components: + - pos: 26.5,-14.5 + parent: 1 + type: Transform + - uid: 12360 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 12361 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 12472 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 12473 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 12474 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 12475 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 12477 + components: + - pos: 46.5,22.5 + parent: 1 + type: Transform + - uid: 12479 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 12480 + components: + - pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 12564 + components: + - pos: -33.5,-14.5 + parent: 1 + type: Transform +- proto: CableApcStack + entities: + - uid: 3981 + components: + - pos: -2.3223429,44.45334 + parent: 1 + type: Transform + - uid: 7643 + components: + - pos: -41.491985,19.092318 + parent: 1 + type: Transform + - uid: 8229 + components: + - pos: -5.0632915,-20.463463 + parent: 1 + type: Transform + - uid: 11798 + components: + - pos: 12.5046625,23.439209 + parent: 1 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 6071 + components: + - pos: -5.883921,-15.463461 + parent: 1 + type: Transform + - count: 5 + type: Stack +- proto: CableHV + entities: + - uid: 1137 + components: + - pos: 27.5,-4.5 + parent: 1 + type: Transform + - uid: 1138 + components: + - pos: 27.5,-5.5 + parent: 1 + type: Transform + - uid: 1139 + components: + - pos: 27.5,-6.5 + parent: 1 + type: Transform + - uid: 1140 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - uid: 1141 + components: + - pos: 27.5,-8.5 + parent: 1 + type: Transform + - uid: 1142 + components: + - pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 1143 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 1144 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 1145 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 1146 + components: + - pos: 25.5,-11.5 + parent: 1 + type: Transform + - uid: 1147 + components: + - pos: 25.5,-12.5 + parent: 1 + type: Transform + - uid: 1148 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 1149 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 1150 + components: + - pos: 23.5,-13.5 + parent: 1 + type: Transform + - uid: 1151 + components: + - pos: 25.5,-14.5 + parent: 1 + type: Transform + - uid: 1152 + components: + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 1153 + components: + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - uid: 1154 + components: + - pos: 23.5,-15.5 + parent: 1 + type: Transform + - uid: 1155 + components: + - pos: 22.5,-15.5 + parent: 1 + type: Transform + - uid: 1156 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - uid: 1157 + components: + - pos: 20.5,-15.5 + parent: 1 + type: Transform + - uid: 1158 + components: + - pos: 19.5,-15.5 + parent: 1 + type: Transform + - uid: 1159 + components: + - pos: 18.5,-15.5 + parent: 1 + type: Transform + - uid: 1160 + components: + - pos: 17.5,-15.5 + parent: 1 + type: Transform + - uid: 1161 + components: + - pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 1162 + components: + - pos: 16.5,-14.5 + parent: 1 + type: Transform + - uid: 1163 + components: + - pos: 16.5,-13.5 + parent: 1 + type: Transform + - uid: 1164 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - uid: 1165 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - uid: 1166 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - uid: 1167 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 1168 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 1169 + components: + - pos: 13.5,-10.5 + parent: 1 + type: Transform + - uid: 1170 + components: + - pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 1171 + components: + - pos: 11.5,-10.5 + parent: 1 + type: Transform + - uid: 1172 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 1173 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 1174 + components: + - pos: 25.5,-16.5 + parent: 1 + type: Transform + - uid: 1175 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 1195 + components: + - pos: 22.5,-13.5 + parent: 1 + type: Transform + - uid: 1196 + components: + - pos: 21.5,-13.5 + parent: 1 + type: Transform + - uid: 1197 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform + - uid: 1454 + components: + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 1825 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 2496 + components: + - pos: -34.5,-28.5 + parent: 1 + type: Transform + - uid: 2497 + components: + - pos: -33.5,-28.5 + parent: 1 + type: Transform + - uid: 2498 + components: + - pos: -32.5,-28.5 + parent: 1 + type: Transform + - uid: 2499 + components: + - pos: -30.5,-28.5 + parent: 1 + type: Transform + - uid: 2500 + components: + - pos: -29.5,-28.5 + parent: 1 + type: Transform + - uid: 2501 + components: + - pos: -28.5,-28.5 + parent: 1 + type: Transform + - uid: 2502 + components: + - pos: -28.5,-30.5 + parent: 1 + type: Transform + - uid: 2503 + components: + - pos: -29.5,-30.5 + parent: 1 + type: Transform + - uid: 2504 + components: + - pos: -30.5,-30.5 + parent: 1 + type: Transform + - uid: 2505 + components: + - pos: -32.5,-30.5 + parent: 1 + type: Transform + - uid: 2506 + components: + - pos: -33.5,-30.5 + parent: 1 + type: Transform + - uid: 2507 + components: + - pos: -34.5,-30.5 + parent: 1 + type: Transform + - uid: 2508 + components: + - pos: -34.5,-32.5 + parent: 1 + type: Transform + - uid: 2509 + components: + - pos: -33.5,-32.5 + parent: 1 + type: Transform + - uid: 2510 + components: + - pos: -32.5,-32.5 + parent: 1 + type: Transform + - uid: 2511 + components: + - pos: -34.5,-34.5 + parent: 1 + type: Transform + - uid: 2512 + components: + - pos: -33.5,-34.5 + parent: 1 + type: Transform + - uid: 2513 + components: + - pos: -32.5,-34.5 + parent: 1 + type: Transform + - uid: 2514 + components: + - pos: -30.5,-32.5 + parent: 1 + type: Transform + - uid: 2515 + components: + - pos: -29.5,-32.5 + parent: 1 + type: Transform + - uid: 2516 + components: + - pos: -28.5,-32.5 + parent: 1 + type: Transform + - uid: 2517 + components: + - pos: -28.5,-34.5 + parent: 1 + type: Transform + - uid: 2518 + components: + - pos: -29.5,-34.5 + parent: 1 + type: Transform + - uid: 2519 + components: + - pos: -30.5,-34.5 + parent: 1 + type: Transform + - uid: 2520 + components: + - pos: -31.5,-35.5 + parent: 1 + type: Transform + - uid: 2522 + components: + - pos: -31.5,-36.5 + parent: 1 + type: Transform + - uid: 2525 + components: + - pos: -32.5,-23.5 + parent: 1 + type: Transform + - uid: 2526 + components: + - pos: -31.5,-23.5 + parent: 1 + type: Transform + - uid: 2527 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - uid: 2528 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 2529 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 2530 + components: + - pos: -33.5,-22.5 + parent: 1 + type: Transform + - uid: 2531 + components: + - pos: -34.5,-22.5 + parent: 1 + type: Transform + - uid: 2532 + components: + - pos: -35.5,-22.5 + parent: 1 + type: Transform + - uid: 2533 + components: + - pos: -35.5,-23.5 + parent: 1 + type: Transform + - uid: 2534 + components: + - pos: -35.5,-24.5 + parent: 1 + type: Transform + - uid: 2535 + components: + - pos: -35.5,-25.5 + parent: 1 + type: Transform + - uid: 2536 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 2538 + components: + - pos: -31.5,-25.5 + parent: 1 + type: Transform + - uid: 2539 + components: + - pos: -31.5,-26.5 + parent: 1 + type: Transform + - uid: 2540 + components: + - pos: -30.5,-22.5 + parent: 1 + type: Transform + - uid: 2541 + components: + - pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 2542 + components: + - pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 2543 + components: + - pos: -27.5,29.5 + parent: 1 + type: Transform + - uid: 2544 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform + - uid: 2545 + components: + - pos: -25.5,29.5 + parent: 1 + type: Transform + - uid: 2546 + components: + - pos: -25.5,28.5 + parent: 1 + type: Transform + - uid: 2547 + components: + - pos: -25.5,27.5 + parent: 1 + type: Transform + - uid: 2548 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 2549 + components: + - pos: -28.5,30.5 + parent: 1 + type: Transform + - uid: 2550 + components: + - pos: -29.5,30.5 + parent: 1 + type: Transform + - uid: 2551 + components: + - pos: -29.5,31.5 + parent: 1 + type: Transform + - uid: 2554 + components: + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 2590 + components: + - pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 2619 + components: + - pos: -28.5,34.5 + parent: 1 + type: Transform + - uid: 2620 + components: + - pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 2621 + components: + - pos: -30.5,34.5 + parent: 1 + type: Transform + - uid: 2622 + components: + - pos: -31.5,34.5 + parent: 1 + type: Transform + - uid: 2623 + components: + - pos: -31.5,36.5 + parent: 1 + type: Transform + - uid: 2624 + components: + - pos: -30.5,36.5 + parent: 1 + type: Transform + - uid: 2625 + components: + - pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 2626 + components: + - pos: -28.5,36.5 + parent: 1 + type: Transform + - uid: 2627 + components: + - pos: -26.5,36.5 + parent: 1 + type: Transform + - uid: 2628 + components: + - pos: -25.5,36.5 + parent: 1 + type: Transform + - uid: 2629 + components: + - pos: -24.5,36.5 + parent: 1 + type: Transform + - uid: 2630 + components: + - pos: -23.5,36.5 + parent: 1 + type: Transform + - uid: 2631 + components: + - pos: -23.5,34.5 + parent: 1 + type: Transform + - uid: 2632 + components: + - pos: -24.5,34.5 + parent: 1 + type: Transform + - uid: 2633 + components: + - pos: -25.5,34.5 + parent: 1 + type: Transform + - uid: 2634 + components: + - pos: -26.5,34.5 + parent: 1 + type: Transform + - uid: 2635 + components: + - pos: -26.5,38.5 + parent: 1 + type: Transform + - uid: 2636 + components: + - pos: -25.5,38.5 + parent: 1 + type: Transform + - uid: 2637 + components: + - pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 2638 + components: + - pos: -23.5,38.5 + parent: 1 + type: Transform + - uid: 2639 + components: + - pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 2640 + components: + - pos: -24.5,40.5 + parent: 1 + type: Transform + - uid: 2641 + components: + - pos: -25.5,40.5 + parent: 1 + type: Transform + - uid: 2642 + components: + - pos: -26.5,40.5 + parent: 1 + type: Transform + - uid: 2643 + components: + - pos: -28.5,40.5 + parent: 1 + type: Transform + - uid: 2644 + components: + - pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 2645 + components: + - pos: -30.5,40.5 + parent: 1 + type: Transform + - uid: 2646 + components: + - pos: -31.5,40.5 + parent: 1 + type: Transform + - uid: 2647 + components: + - pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 2648 + components: + - pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 2649 + components: + - pos: -29.5,38.5 + parent: 1 + type: Transform + - uid: 2650 + components: + - pos: -28.5,38.5 + parent: 1 + type: Transform + - uid: 2651 + components: + - pos: -27.5,41.5 + parent: 1 + type: Transform + - uid: 2652 + components: + - pos: -27.5,42.5 + parent: 1 + type: Transform + - uid: 2793 + components: + - pos: -14.5,-57.5 + parent: 1 + type: Transform + - uid: 2809 + components: + - pos: -14.5,-60.5 + parent: 1 + type: Transform + - uid: 2810 + components: + - pos: -12.5,-59.5 + parent: 1 + type: Transform + - uid: 2811 + components: + - pos: -16.5,-59.5 + parent: 1 + type: Transform + - uid: 2812 + components: + - pos: -13.5,-55.5 + parent: 1 + type: Transform + - uid: 2813 + components: + - pos: -12.5,-55.5 + parent: 1 + type: Transform + - uid: 2814 + components: + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - uid: 2822 + components: + - pos: -14.5,-56.5 + parent: 1 + type: Transform + - uid: 2824 + components: + - pos: -12.5,-57.5 + parent: 1 + type: Transform + - uid: 2825 + components: + - pos: -13.5,-59.5 + parent: 1 + type: Transform + - uid: 2826 + components: + - pos: -13.5,-57.5 + parent: 1 + type: Transform + - uid: 2827 + components: + - pos: -11.5,-53.5 + parent: 1 + type: Transform + - uid: 2828 + components: + - pos: -11.5,-52.5 + parent: 1 + type: Transform + - uid: 2829 + components: + - pos: -15.5,-59.5 + parent: 1 + type: Transform + - uid: 2830 + components: + - pos: -14.5,-59.5 + parent: 1 + type: Transform + - uid: 2831 + components: + - pos: -14.5,-55.5 + parent: 1 + type: Transform + - uid: 2832 + components: + - pos: -11.5,-55.5 + parent: 1 + type: Transform + - uid: 2833 + components: + - pos: -11.5,-54.5 + parent: 1 + type: Transform + - uid: 2834 + components: + - pos: -15.5,-57.5 + parent: 1 + type: Transform + - uid: 2835 + components: + - pos: -14.5,-58.5 + parent: 1 + type: Transform + - uid: 2839 + components: + - pos: -16.5,-57.5 + parent: 1 + type: Transform + - uid: 3675 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - uid: 3676 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform + - uid: 3677 + components: + - pos: -0.5,46.5 + parent: 1 + type: Transform + - uid: 3679 + components: + - pos: -0.5,45.5 + parent: 1 + type: Transform + - uid: 3680 + components: + - pos: -0.5,44.5 + parent: 1 + type: Transform + - uid: 4047 + components: + - pos: 8.5,20.5 + parent: 1 + type: Transform + - uid: 4052 + components: + - pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 4237 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 4238 + components: + - pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 4239 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - uid: 4240 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 4241 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 4242 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 4243 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 4244 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 4245 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 4246 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 4247 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 4248 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 4249 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 4250 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 4251 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 4252 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 4253 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 4254 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 4255 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 4256 + components: + - pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 4257 + components: + - pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 4258 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 4259 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 4260 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 4261 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 4262 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 4263 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 4264 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 4265 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 4266 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 4267 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 4268 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 4269 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 4270 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 4271 + components: + - pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 4272 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 4273 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 4274 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 4275 + components: + - pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 4276 + components: + - pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 4277 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 4278 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 4279 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 4280 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 4281 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 4282 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 4283 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 4284 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 4285 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 4286 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 4287 + components: + - pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 4288 + components: + - pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 4289 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 4290 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 4291 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 4292 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 4293 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4294 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 4295 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 4296 + components: + - pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 4297 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 4298 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 4299 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 4300 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 4301 + components: + - pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 4302 + components: + - pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 4303 + components: + - pos: -7.5,29.5 + parent: 1 + type: Transform + - uid: 4306 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 4307 + components: + - pos: -7.5,30.5 + parent: 1 + type: Transform + - uid: 4308 + components: + - pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 4309 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4310 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 4311 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform + - uid: 4312 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 4313 + components: + - pos: -13.5,30.5 + parent: 1 + type: Transform + - uid: 4314 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 4315 + components: + - pos: -14.5,31.5 + parent: 1 + type: Transform + - uid: 4316 + components: + - pos: 8.5,23.5 + parent: 1 + type: Transform + - uid: 4317 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 4318 + components: + - pos: 7.5,24.5 + parent: 1 + type: Transform + - uid: 4319 + components: + - pos: 6.5,24.5 + parent: 1 + type: Transform + - uid: 4320 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - uid: 4321 + components: + - pos: -15.5,30.5 + parent: 1 + type: Transform + - uid: 4322 + components: + - pos: -16.5,30.5 + parent: 1 + type: Transform + - uid: 4323 + components: + - pos: -17.5,30.5 + parent: 1 + type: Transform + - uid: 4324 + components: + - pos: -17.5,29.5 + parent: 1 + type: Transform + - uid: 4325 + components: + - pos: -17.5,28.5 + parent: 1 + type: Transform + - uid: 4326 + components: + - pos: -17.5,27.5 + parent: 1 + type: Transform + - uid: 4327 + components: + - pos: -17.5,26.5 + parent: 1 + type: Transform + - uid: 4328 + components: + - pos: -17.5,25.5 + parent: 1 + type: Transform + - uid: 4329 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 4330 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 4331 + components: + - pos: -19.5,24.5 + parent: 1 + type: Transform + - uid: 4332 + components: + - pos: -19.5,25.5 + parent: 1 + type: Transform + - uid: 4333 + components: + - pos: -19.5,26.5 + parent: 1 + type: Transform + - uid: 4334 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 4335 + components: + - pos: -18.5,28.5 + parent: 1 + type: Transform + - uid: 4336 + components: + - pos: -19.5,28.5 + parent: 1 + type: Transform + - uid: 4337 + components: + - pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 4338 + components: + - pos: -21.5,28.5 + parent: 1 + type: Transform + - uid: 4339 + components: + - pos: -22.5,28.5 + parent: 1 + type: Transform + - uid: 4340 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 4341 + components: + - pos: -23.5,27.5 + parent: 1 + type: Transform + - uid: 4342 + components: + - pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 4343 + components: + - pos: -26.5,27.5 + parent: 1 + type: Transform + - uid: 4344 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 4345 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform + - uid: 4346 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 4347 + components: + - pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 4348 + components: + - pos: -28.5,24.5 + parent: 1 + type: Transform + - uid: 4349 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - uid: 4350 + components: + - pos: -28.5,22.5 + parent: 1 + type: Transform + - uid: 4351 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 4352 + components: + - pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 4353 + components: + - pos: -28.5,19.5 + parent: 1 + type: Transform + - uid: 4354 + components: + - pos: -28.5,18.5 + parent: 1 + type: Transform + - uid: 4355 + components: + - pos: -28.5,17.5 + parent: 1 + type: Transform + - uid: 4356 + components: + - pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 4357 + components: + - pos: -28.5,15.5 + parent: 1 + type: Transform + - uid: 4358 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform + - uid: 4359 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - uid: 4360 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 4361 + components: + - pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 4362 + components: + - pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 4363 + components: + - pos: -28.5,9.5 + parent: 1 + type: Transform + - uid: 4364 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 4365 + components: + - pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 4366 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 4367 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 4368 + components: + - pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 4369 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 4370 + components: + - pos: -28.5,2.5 + parent: 1 + type: Transform + - uid: 4371 + components: + - pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 4372 + components: + - pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 4373 + components: + - pos: -31.5,19.5 + parent: 1 + type: Transform + - uid: 4374 + components: + - pos: -32.5,19.5 + parent: 1 + type: Transform + - uid: 4375 + components: + - pos: -33.5,19.5 + parent: 1 + type: Transform + - uid: 4376 + components: + - pos: -34.5,19.5 + parent: 1 + type: Transform + - uid: 4377 + components: + - pos: -35.5,19.5 + parent: 1 + type: Transform + - uid: 4378 + components: + - pos: -36.5,19.5 + parent: 1 + type: Transform + - uid: 4379 + components: + - pos: -37.5,19.5 + parent: 1 + type: Transform + - uid: 4380 + components: + - pos: -37.5,18.5 + parent: 1 + type: Transform + - uid: 4381 + components: + - pos: -37.5,17.5 + parent: 1 + type: Transform + - uid: 4382 + components: + - pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 4383 + components: + - pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 4384 + components: + - pos: -38.5,15.5 + parent: 1 + type: Transform + - uid: 4385 + components: + - pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 4386 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 4387 + components: + - pos: -40.5,16.5 + parent: 1 + type: Transform + - uid: 4388 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 4389 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 4390 + components: + - pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 4391 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 4392 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 4393 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 4394 + components: + - pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 4395 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 4396 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 4397 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 4398 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 4399 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 4400 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 4401 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 4402 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 4403 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 4404 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 4405 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 4406 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 4407 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 4408 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 4409 + components: + - pos: -33.5,2.5 + parent: 1 + type: Transform + - uid: 4410 + components: + - pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 4411 + components: + - pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 4412 + components: + - pos: -30.5,2.5 + parent: 1 + type: Transform + - uid: 4413 + components: + - pos: -29.5,2.5 + parent: 1 + type: Transform + - uid: 4414 + components: + - pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 4415 + components: + - pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 4416 + components: + - pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 4417 + components: + - pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 4418 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 4419 + components: + - pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 4420 + components: + - pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 4421 + components: + - pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 4422 + components: + - pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 4423 + components: + - pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 4424 + components: + - pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 4425 + components: + - pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 4426 + components: + - pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 4427 + components: + - pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 4428 + components: + - pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 4429 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 4430 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 4431 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 4432 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 4433 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 4434 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 4435 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 4436 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 4437 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 4438 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 4439 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 4440 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 4441 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 4442 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 4443 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 4444 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 4445 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 4446 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 4447 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 4448 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 4449 + components: + - pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 4450 + components: + - pos: -5.5,16.5 + parent: 1 + type: Transform + - uid: 4451 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 4452 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 4453 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 4454 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 4455 + components: + - pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 4456 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 4457 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 4458 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 4459 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 4460 + components: + - pos: -6.5,16.5 + parent: 1 + type: Transform + - uid: 4461 + components: + - pos: -7.5,16.5 + parent: 1 + type: Transform + - uid: 4462 + components: + - pos: -8.5,16.5 + parent: 1 + type: Transform + - uid: 4463 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform + - uid: 4464 + components: + - pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 4465 + components: + - pos: -8.5,19.5 + parent: 1 + type: Transform + - uid: 4466 + components: + - pos: -8.5,20.5 + parent: 1 + type: Transform + - uid: 4467 + components: + - pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 4468 + components: + - pos: -8.5,22.5 + parent: 1 + type: Transform + - uid: 4469 + components: + - pos: -8.5,23.5 + parent: 1 + type: Transform + - uid: 4470 + components: + - pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 4471 + components: + - pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 4472 + components: + - pos: -11.5,23.5 + parent: 1 + type: Transform + - uid: 4473 + components: + - pos: -12.5,23.5 + parent: 1 + type: Transform + - uid: 4474 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - uid: 4475 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - uid: 4476 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 4477 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 4478 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 4479 + components: + - pos: -19.5,23.5 + parent: 1 + type: Transform + - uid: 4480 + components: + - pos: -19.5,22.5 + parent: 1 + type: Transform + - uid: 4481 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 4482 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 4483 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform + - uid: 4484 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - uid: 4485 + components: + - pos: -20.5,18.5 + parent: 1 + type: Transform + - uid: 4486 + components: + - pos: -21.5,18.5 + parent: 1 + type: Transform + - uid: 4487 + components: + - pos: -22.5,18.5 + parent: 1 + type: Transform + - uid: 4488 + components: + - pos: -23.5,18.5 + parent: 1 + type: Transform + - uid: 4489 + components: + - pos: -24.5,18.5 + parent: 1 + type: Transform + - uid: 4490 + components: + - pos: -25.5,18.5 + parent: 1 + type: Transform + - uid: 4491 + components: + - pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 4492 + components: + - pos: -27.5,18.5 + parent: 1 + type: Transform + - uid: 4493 + components: + - pos: 10.5,18.5 + parent: 1 + type: Transform + - uid: 4494 + components: + - pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 4495 + components: + - pos: 12.5,18.5 + parent: 1 + type: Transform + - uid: 4496 + components: + - pos: 13.5,18.5 + parent: 1 + type: Transform + - uid: 4497 + components: + - pos: 14.5,18.5 + parent: 1 + type: Transform + - uid: 4498 + components: + - pos: 15.5,18.5 + parent: 1 + type: Transform + - uid: 4499 + components: + - pos: 16.5,18.5 + parent: 1 + type: Transform + - uid: 4500 + components: + - pos: 17.5,18.5 + parent: 1 + type: Transform + - uid: 4501 + components: + - pos: 18.5,18.5 + parent: 1 + type: Transform + - uid: 4502 + components: + - pos: 19.5,18.5 + parent: 1 + type: Transform + - uid: 4503 + components: + - pos: 20.5,18.5 + parent: 1 + type: Transform + - uid: 4504 + components: + - pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 4505 + components: + - pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 4506 + components: + - pos: 23.5,18.5 + parent: 1 + type: Transform + - uid: 4507 + components: + - pos: 24.5,18.5 + parent: 1 + type: Transform + - uid: 4508 + components: + - pos: 25.5,18.5 + parent: 1 + type: Transform + - uid: 4512 + components: + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 4513 + components: + - pos: 25.5,19.5 + parent: 1 + type: Transform + - uid: 4514 + components: + - pos: 25.5,20.5 + parent: 1 + type: Transform + - uid: 4515 + components: + - pos: 26.5,20.5 + parent: 1 + type: Transform + - uid: 4516 + components: + - pos: 27.5,20.5 + parent: 1 + type: Transform + - uid: 4517 + components: + - pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 4518 + components: + - pos: 29.5,20.5 + parent: 1 + type: Transform + - uid: 4519 + components: + - pos: 30.5,20.5 + parent: 1 + type: Transform + - uid: 4520 + components: + - pos: 31.5,20.5 + parent: 1 + type: Transform + - uid: 4521 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 4522 + components: + - pos: 33.5,20.5 + parent: 1 + type: Transform + - uid: 4523 + components: + - pos: 34.5,20.5 + parent: 1 + type: Transform + - uid: 4524 + components: + - pos: 35.5,20.5 + parent: 1 + type: Transform + - uid: 4525 + components: + - pos: 36.5,20.5 + parent: 1 + type: Transform + - uid: 4526 + components: + - pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 4527 + components: + - pos: 36.5,18.5 + parent: 1 + type: Transform + - uid: 4528 + components: + - pos: 36.5,17.5 + parent: 1 + type: Transform + - uid: 4529 + components: + - pos: 36.5,16.5 + parent: 1 + type: Transform + - uid: 4530 + components: + - pos: 37.5,16.5 + parent: 1 + type: Transform + - uid: 4531 + components: + - pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 4532 + components: + - pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 4533 + components: + - pos: 39.5,17.5 + parent: 1 + type: Transform + - uid: 4534 + components: + - pos: 39.5,18.5 + parent: 1 + type: Transform + - uid: 4535 + components: + - pos: 39.5,19.5 + parent: 1 + type: Transform + - uid: 4536 + components: + - pos: 40.5,19.5 + parent: 1 + type: Transform + - uid: 4537 + components: + - pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 4538 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 4539 + components: + - pos: 41.5,15.5 + parent: 1 + type: Transform + - uid: 4540 + components: + - pos: 41.5,14.5 + parent: 1 + type: Transform + - uid: 4541 + components: + - pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 4542 + components: + - pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 4543 + components: + - pos: 41.5,11.5 + parent: 1 + type: Transform + - uid: 4544 + components: + - pos: 41.5,10.5 + parent: 1 + type: Transform + - uid: 4545 + components: + - pos: 41.5,9.5 + parent: 1 + type: Transform + - uid: 4546 + components: + - pos: 41.5,8.5 + parent: 1 + type: Transform + - uid: 4547 + components: + - pos: 41.5,7.5 + parent: 1 + type: Transform + - uid: 4548 + components: + - pos: 40.5,7.5 + parent: 1 + type: Transform + - uid: 4549 + components: + - pos: 39.5,7.5 + parent: 1 + type: Transform + - uid: 4550 + components: + - pos: 38.5,7.5 + parent: 1 + type: Transform + - uid: 4551 + components: + - pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 4552 + components: + - pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 4553 + components: + - pos: 35.5,7.5 + parent: 1 + type: Transform + - uid: 4554 + components: + - pos: 35.5,6.5 + parent: 1 + type: Transform + - uid: 4555 + components: + - pos: 31.5,6.5 + parent: 1 + type: Transform + - uid: 4556 + components: + - pos: 32.5,6.5 + parent: 1 + type: Transform + - uid: 4557 + components: + - pos: 33.5,6.5 + parent: 1 + type: Transform + - uid: 4558 + components: + - pos: 34.5,6.5 + parent: 1 + type: Transform + - uid: 4559 + components: + - pos: 31.5,5.5 + parent: 1 + type: Transform + - uid: 4560 + components: + - pos: 31.5,4.5 + parent: 1 + type: Transform + - uid: 4561 + components: + - pos: 31.5,3.5 + parent: 1 + type: Transform + - uid: 4562 + components: + - pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 4563 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 4564 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 4565 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 4566 + components: + - pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 4567 + components: + - pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 4568 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 4569 + components: + - pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 4570 + components: + - pos: 23.5,2.5 + parent: 1 + type: Transform + - uid: 4571 + components: + - pos: 22.5,2.5 + parent: 1 + type: Transform + - uid: 4572 + components: + - pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 4573 + components: + - pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 4574 + components: + - pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 4575 + components: + - pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 4576 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 4577 + components: + - pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 4578 + components: + - pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 4579 + components: + - pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 4580 + components: + - pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 4581 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 4582 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 4583 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 4584 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 4585 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - uid: 4586 + components: + - pos: 30.5,0.5 + parent: 1 + type: Transform + - uid: 4587 + components: + - pos: 30.5,-0.5 + parent: 1 + type: Transform + - uid: 4588 + components: + - pos: 30.5,-1.5 + parent: 1 + type: Transform + - uid: 4589 + components: + - pos: 31.5,-1.5 + parent: 1 + type: Transform + - uid: 4590 + components: + - pos: 31.5,-2.5 + parent: 1 + type: Transform + - uid: 4591 + components: + - pos: 31.5,-3.5 + parent: 1 + type: Transform + - uid: 4592 + components: + - pos: 31.5,-4.5 + parent: 1 + type: Transform + - uid: 4593 + components: + - pos: 31.5,-5.5 + parent: 1 + type: Transform + - uid: 4594 + components: + - pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 4595 + components: + - pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 4596 + components: + - pos: 31.5,-8.5 + parent: 1 + type: Transform + - uid: 4597 + components: + - pos: 31.5,-9.5 + parent: 1 + type: Transform + - uid: 4598 + components: + - pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 4599 + components: + - pos: 31.5,-11.5 + parent: 1 + type: Transform + - uid: 4600 + components: + - pos: 31.5,-12.5 + parent: 1 + type: Transform + - uid: 4601 + components: + - pos: 31.5,-13.5 + parent: 1 + type: Transform + - uid: 4602 + components: + - pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 4603 + components: + - pos: 29.5,-13.5 + parent: 1 + type: Transform + - uid: 4604 + components: + - pos: 28.5,-13.5 + parent: 1 + type: Transform + - uid: 4605 + components: + - pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 4606 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 4607 + components: + - pos: 28.5,-16.5 + parent: 1 + type: Transform + - uid: 4608 + components: + - pos: 28.5,-17.5 + parent: 1 + type: Transform + - uid: 4609 + components: + - pos: 27.5,-17.5 + parent: 1 + type: Transform + - uid: 4610 + components: + - pos: 26.5,-17.5 + parent: 1 + type: Transform + - uid: 4611 + components: + - pos: 25.5,-17.5 + parent: 1 + type: Transform + - uid: 4612 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 4613 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 4614 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 4615 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 4616 + components: + - pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 4617 + components: + - pos: 23.5,-17.5 + parent: 1 + type: Transform + - uid: 4618 + components: + - pos: 22.5,-17.5 + parent: 1 + type: Transform + - uid: 4619 + components: + - pos: 21.5,-17.5 + parent: 1 + type: Transform + - uid: 4620 + components: + - pos: 20.5,-17.5 + parent: 1 + type: Transform + - uid: 4621 + components: + - pos: 19.5,-17.5 + parent: 1 + type: Transform + - uid: 4622 + components: + - pos: 18.5,-17.5 + parent: 1 + type: Transform + - uid: 4623 + components: + - pos: 17.5,-17.5 + parent: 1 + type: Transform + - uid: 4624 + components: + - pos: 16.5,-17.5 + parent: 1 + type: Transform + - uid: 4625 + components: + - pos: 15.5,-17.5 + parent: 1 + type: Transform + - uid: 4626 + components: + - pos: 14.5,-17.5 + parent: 1 + type: Transform + - uid: 4627 + components: + - pos: 14.5,-16.5 + parent: 1 + type: Transform + - uid: 4628 + components: + - pos: 14.5,-15.5 + parent: 1 + type: Transform + - uid: 4629 + components: + - pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 4630 + components: + - pos: 13.5,-14.5 + parent: 1 + type: Transform + - uid: 4631 + components: + - pos: 12.5,-14.5 + parent: 1 + type: Transform + - uid: 4632 + components: + - pos: 11.5,-14.5 + parent: 1 + type: Transform + - uid: 4633 + components: + - pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 4634 + components: + - pos: 9.5,-14.5 + parent: 1 + type: Transform + - uid: 4635 + components: + - pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 4636 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 4637 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 4638 + components: + - pos: 8.5,-11.5 + parent: 1 + type: Transform + - uid: 4639 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 4640 + components: + - pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 4641 + components: + - pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 4642 + components: + - pos: 4.5,-11.5 + parent: 1 + type: Transform + - uid: 4643 + components: + - pos: 3.5,-11.5 + parent: 1 + type: Transform + - uid: 4644 + components: + - pos: 2.5,-11.5 + parent: 1 + type: Transform + - uid: 4645 + components: + - pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 4646 + components: + - pos: 0.5,-11.5 + parent: 1 + type: Transform + - uid: 4647 + components: + - pos: -0.5,-11.5 + parent: 1 + type: Transform + - uid: 4648 + components: + - pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 4649 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 4650 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 4651 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 4652 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 4653 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 4654 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 4655 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 4656 + components: + - pos: -3.5,-17.5 + parent: 1 + type: Transform + - uid: 4657 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 4658 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 4659 + components: + - pos: -6.5,-17.5 + parent: 1 + type: Transform + - uid: 4660 + components: + - pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 4661 + components: + - pos: -7.5,-18.5 + parent: 1 + type: Transform + - uid: 4662 + components: + - pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 4663 + components: + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 4664 + components: + - pos: -8.5,-18.5 + parent: 1 + type: Transform + - uid: 4665 + components: + - pos: -9.5,-18.5 + parent: 1 + type: Transform + - uid: 4666 + components: + - pos: -10.5,-18.5 + parent: 1 + type: Transform + - uid: 4667 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 4668 + components: + - pos: -11.5,-19.5 + parent: 1 + type: Transform + - uid: 4669 + components: + - pos: -11.5,-20.5 + parent: 1 + type: Transform + - uid: 4670 + components: + - pos: -11.5,-21.5 + parent: 1 + type: Transform + - uid: 4671 + components: + - pos: -12.5,-21.5 + parent: 1 + type: Transform + - uid: 4672 + components: + - pos: -13.5,-21.5 + parent: 1 + type: Transform + - uid: 4673 + components: + - pos: -14.5,-21.5 + parent: 1 + type: Transform + - uid: 4674 + components: + - pos: -15.5,-21.5 + parent: 1 + type: Transform + - uid: 4675 + components: + - pos: -16.5,-21.5 + parent: 1 + type: Transform + - uid: 4676 + components: + - pos: -17.5,-21.5 + parent: 1 + type: Transform + - uid: 4677 + components: + - pos: -18.5,-21.5 + parent: 1 + type: Transform + - uid: 4678 + components: + - pos: -19.5,-21.5 + parent: 1 + type: Transform + - uid: 4679 + components: + - pos: -20.5,-21.5 + parent: 1 + type: Transform + - uid: 4680 + components: + - pos: -21.5,-21.5 + parent: 1 + type: Transform + - uid: 4681 + components: + - pos: -22.5,-21.5 + parent: 1 + type: Transform + - uid: 4682 + components: + - pos: -22.5,-22.5 + parent: 1 + type: Transform + - uid: 4683 + components: + - pos: -23.5,-22.5 + parent: 1 + type: Transform + - uid: 4684 + components: + - pos: -24.5,-22.5 + parent: 1 + type: Transform + - uid: 4685 + components: + - pos: -25.5,-22.5 + parent: 1 + type: Transform + - uid: 4686 + components: + - pos: -26.5,-22.5 + parent: 1 + type: Transform + - uid: 4687 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 4688 + components: + - pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 4689 + components: + - pos: -27.5,-20.5 + parent: 1 + type: Transform + - uid: 4690 + components: + - pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 4691 + components: + - pos: -29.5,-20.5 + parent: 1 + type: Transform + - uid: 4692 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform + - uid: 4693 + components: + - pos: -30.5,0.5 + parent: 1 + type: Transform + - uid: 4694 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 4695 + components: + - pos: -30.5,-1.5 + parent: 1 + type: Transform + - uid: 4696 + components: + - pos: -31.5,-1.5 + parent: 1 + type: Transform + - uid: 4697 + components: + - pos: -32.5,-1.5 + parent: 1 + type: Transform + - uid: 4698 + components: + - pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 4699 + components: + - pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 4700 + components: + - pos: -34.5,-2.5 + parent: 1 + type: Transform + - uid: 4701 + components: + - pos: -34.5,-3.5 + parent: 1 + type: Transform + - uid: 4702 + components: + - pos: -34.5,-4.5 + parent: 1 + type: Transform + - uid: 4703 + components: + - pos: -34.5,-5.5 + parent: 1 + type: Transform + - uid: 4704 + components: + - pos: -34.5,-6.5 + parent: 1 + type: Transform + - uid: 4705 + components: + - pos: -34.5,-7.5 + parent: 1 + type: Transform + - uid: 4706 + components: + - pos: -34.5,-8.5 + parent: 1 + type: Transform + - uid: 4707 + components: + - pos: -34.5,-9.5 + parent: 1 + type: Transform + - uid: 4708 + components: + - pos: -34.5,-10.5 + parent: 1 + type: Transform + - uid: 4709 + components: + - pos: -34.5,-11.5 + parent: 1 + type: Transform + - uid: 4710 + components: + - pos: -34.5,-12.5 + parent: 1 + type: Transform + - uid: 4711 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - uid: 4712 + components: + - pos: -36.5,-12.5 + parent: 1 + type: Transform + - uid: 4713 + components: + - pos: -37.5,-12.5 + parent: 1 + type: Transform + - uid: 4714 + components: + - pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 4715 + components: + - pos: -38.5,-13.5 + parent: 1 + type: Transform + - uid: 4716 + components: + - pos: -38.5,-14.5 + parent: 1 + type: Transform + - uid: 4717 + components: + - pos: -38.5,-15.5 + parent: 1 + type: Transform + - uid: 4718 + components: + - pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 4719 + components: + - pos: -38.5,-17.5 + parent: 1 + type: Transform + - uid: 4720 + components: + - pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 4721 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 4722 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 4723 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 4724 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 4725 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 4726 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 4727 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 4728 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 4729 + components: + - pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 4731 + components: + - pos: -38.5,19.5 + parent: 1 + type: Transform + - uid: 4732 + components: + - pos: -39.5,19.5 + parent: 1 + type: Transform + - uid: 4733 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 4734 + components: + - pos: -11.5,-22.5 + parent: 1 + type: Transform + - uid: 4735 + components: + - pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 4736 + components: + - pos: -9.5,-22.5 + parent: 1 + type: Transform + - uid: 4737 + components: + - pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 4738 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 4739 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 4740 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 4741 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 4742 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 4743 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 4744 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 4745 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 4746 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 4747 + components: + - pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 4748 + components: + - pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 4749 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 4750 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 4751 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 4752 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 4753 + components: + - pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 4754 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 4755 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 4756 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 4757 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 4758 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 4759 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 4760 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 4761 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 4762 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 4763 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 4764 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 4765 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 4766 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 4767 + components: + - pos: -13.5,31.5 + parent: 1 + type: Transform + - uid: 4768 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 4769 + components: + - pos: -11.5,31.5 + parent: 1 + type: Transform + - uid: 4770 + components: + - pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 4771 + components: + - pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 4772 + components: + - pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 4773 + components: + - pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 4774 + components: + - pos: -7.5,32.5 + parent: 1 + type: Transform + - uid: 4775 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - uid: 4776 + components: + - pos: -5.5,30.5 + parent: 1 + type: Transform + - uid: 4777 + components: + - pos: -5.5,31.5 + parent: 1 + type: Transform + - uid: 4778 + components: + - pos: -5.5,32.5 + parent: 1 + type: Transform + - uid: 4779 + components: + - pos: -6.5,32.5 + parent: 1 + type: Transform + - uid: 4780 + components: + - pos: -4.5,32.5 + parent: 1 + type: Transform + - uid: 4781 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 4782 + components: + - pos: -3.5,33.5 + parent: 1 + type: Transform + - uid: 4783 + components: + - pos: -2.5,33.5 + parent: 1 + type: Transform + - uid: 4784 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - uid: 4785 + components: + - pos: -0.5,33.5 + parent: 1 + type: Transform + - uid: 4786 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 4787 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 4788 + components: + - pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 4789 + components: + - pos: 1.5,31.5 + parent: 1 + type: Transform + - uid: 4790 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 4791 + components: + - pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 4792 + components: + - pos: 3.5,28.5 + parent: 1 + type: Transform + - uid: 4793 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 4794 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - uid: 4795 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 4796 + components: + - pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 4797 + components: + - pos: 4.5,32.5 + parent: 1 + type: Transform + - uid: 4798 + components: + - pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 4799 + components: + - pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 4800 + components: + - pos: 2.5,32.5 + parent: 1 + type: Transform + - uid: 4925 + components: + - pos: 19.5,-13.5 + parent: 1 + type: Transform + - uid: 5105 + components: + - pos: 22.5,20.5 + parent: 1 + type: Transform + - uid: 5106 + components: + - pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 7549 + components: + - pos: -41.5,19.5 + parent: 1 + type: Transform + - uid: 7550 + components: + - pos: -41.5,20.5 + parent: 1 + type: Transform + - uid: 7551 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - uid: 7552 + components: + - pos: -41.5,22.5 + parent: 1 + type: Transform + - uid: 7553 + components: + - pos: -41.5,23.5 + parent: 1 + type: Transform + - uid: 7554 + components: + - pos: -40.5,23.5 + parent: 1 + type: Transform +- proto: CableHVStack + entities: + - uid: 3980 + components: + - pos: -2.6973429,44.73459 + parent: 1 + type: Transform + - uid: 7641 + components: + - pos: -41.50761,19.420443 + parent: 1 + type: Transform + - uid: 8227 + components: + - pos: -5.5320415,-20.244713 + parent: 1 + type: Transform + - uid: 9656 + components: + - pos: 12.8484125,23.642334 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 1944 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 2849 + components: + - pos: -11.5,-50.5 + parent: 1 + type: Transform + - uid: 2850 + components: + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - uid: 2874 + components: + - pos: -11.5,-49.5 + parent: 1 + type: Transform + - uid: 2875 + components: + - pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 3358 + components: + - pos: 22.5,15.5 + parent: 1 + type: Transform + - uid: 3681 + components: + - pos: -0.5,44.5 + parent: 1 + type: Transform + - uid: 3682 + components: + - pos: -1.5,44.5 + parent: 1 + type: Transform + - uid: 3683 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 3684 + components: + - pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 3688 + components: + - pos: -2.5,45.5 + parent: 1 + type: Transform + - uid: 3689 + components: + - pos: -3.5,45.5 + parent: 1 + type: Transform + - uid: 3690 + components: + - pos: -4.5,45.5 + parent: 1 + type: Transform + - uid: 3691 + components: + - pos: -5.5,45.5 + parent: 1 + type: Transform + - uid: 3692 + components: + - pos: -6.5,45.5 + parent: 1 + type: Transform + - uid: 3693 + components: + - pos: -6.5,46.5 + parent: 1 + type: Transform + - uid: 3694 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - uid: 3695 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - uid: 3696 + components: + - pos: -6.5,49.5 + parent: 1 + type: Transform + - uid: 3697 + components: + - pos: -5.5,49.5 + parent: 1 + type: Transform + - uid: 3698 + components: + - pos: -4.5,49.5 + parent: 1 + type: Transform + - uid: 3699 + components: + - pos: -4.5,50.5 + parent: 1 + type: Transform + - uid: 3700 + components: + - pos: -4.5,51.5 + parent: 1 + type: Transform + - uid: 3701 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - uid: 3702 + components: + - pos: -4.5,53.5 + parent: 1 + type: Transform + - uid: 3703 + components: + - pos: -4.5,54.5 + parent: 1 + type: Transform + - uid: 3704 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - uid: 3705 + components: + - pos: -5.5,55.5 + parent: 1 + type: Transform + - uid: 3706 + components: + - pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 3707 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - uid: 3708 + components: + - pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 3709 + components: + - pos: -3.5,52.5 + parent: 1 + type: Transform + - uid: 3710 + components: + - pos: -2.5,52.5 + parent: 1 + type: Transform + - uid: 3711 + components: + - pos: -1.5,52.5 + parent: 1 + type: Transform + - uid: 3712 + components: + - pos: -0.5,52.5 + parent: 1 + type: Transform + - uid: 3713 + components: + - pos: 0.5,52.5 + parent: 1 + type: Transform + - uid: 3714 + components: + - pos: 1.5,52.5 + parent: 1 + type: Transform + - uid: 3715 + components: + - pos: 2.5,52.5 + parent: 1 + type: Transform + - uid: 3716 + components: + - pos: 3.5,52.5 + parent: 1 + type: Transform + - uid: 3717 + components: + - pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 3767 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 3768 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 4138 + components: + - pos: -14.5,31.5 + parent: 1 + type: Transform + - uid: 4139 + components: + - pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 4140 + components: + - pos: -13.5,30.5 + parent: 1 + type: Transform + - uid: 4141 + components: + - pos: -12.5,30.5 + parent: 1 + type: Transform + - uid: 4142 + components: + - pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 4143 + components: + - pos: -11.5,30.5 + parent: 1 + type: Transform + - uid: 4144 + components: + - pos: -10.5,30.5 + parent: 1 + type: Transform + - uid: 4145 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4146 + components: + - pos: -8.5,30.5 + parent: 1 + type: Transform + - uid: 4147 + components: + - pos: -7.5,30.5 + parent: 1 + type: Transform + - uid: 4148 + components: + - pos: -7.5,29.5 + parent: 1 + type: Transform + - uid: 4149 + components: + - pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 4150 + components: + - pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 4151 + components: + - pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 4152 + components: + - pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 4153 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 4154 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 4155 + components: + - pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 4156 + components: + - pos: -0.5,28.5 + parent: 1 + type: Transform + - uid: 4157 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 4158 + components: + - pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 4159 + components: + - pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 4160 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 4161 + components: + - pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4162 + components: + - pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 4163 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 4164 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 4165 + components: + - pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 4166 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 4167 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 4509 + components: + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 4511 + components: + - pos: 22.5,19.5 + parent: 1 + type: Transform + - uid: 5101 + components: + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 5102 + components: + - pos: 22.5,18.5 + parent: 1 + type: Transform + - uid: 5103 + components: + - pos: 22.5,20.5 + parent: 1 + type: Transform + - uid: 5104 + components: + - pos: 22.5,16.5 + parent: 1 + type: Transform + - uid: 5107 + components: + - pos: 22.5,17.5 + parent: 1 + type: Transform + - uid: 5108 + components: + - pos: 21.5,15.5 + parent: 1 + type: Transform + - uid: 5109 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 5110 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - uid: 5111 + components: + - pos: 21.5,12.5 + parent: 1 + type: Transform + - uid: 5112 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 5113 + components: + - pos: 21.5,10.5 + parent: 1 + type: Transform + - uid: 5114 + components: + - pos: 24.5,9.5 + parent: 1 + type: Transform + - uid: 5115 + components: + - pos: 25.5,9.5 + parent: 1 + type: Transform + - uid: 5116 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform + - uid: 5117 + components: + - pos: 27.5,9.5 + parent: 1 + type: Transform + - uid: 5118 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - uid: 5119 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 5120 + components: + - pos: 23.5,9.5 + parent: 1 + type: Transform + - uid: 5121 + components: + - pos: 22.5,9.5 + parent: 1 + type: Transform + - uid: 5122 + components: + - pos: 21.5,9.5 + parent: 1 + type: Transform + - uid: 5123 + components: + - pos: 20.5,9.5 + parent: 1 + type: Transform + - uid: 5124 + components: + - pos: 19.5,9.5 + parent: 1 + type: Transform + - uid: 5125 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - uid: 5126 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 5127 + components: + - pos: 13.5,10.5 + parent: 1 + type: Transform + - uid: 5128 + components: + - pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 5129 + components: + - pos: 28.5,9.5 + parent: 1 + type: Transform + - uid: 5130 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 5131 + components: + - pos: 32.5,10.5 + parent: 1 + type: Transform + - uid: 5132 + components: + - pos: 30.5,9.5 + parent: 1 + type: Transform + - uid: 5133 + components: + - pos: 31.5,9.5 + parent: 1 + type: Transform + - uid: 5134 + components: + - pos: 32.5,9.5 + parent: 1 + type: Transform + - uid: 5135 + components: + - pos: 32.5,11.5 + parent: 1 + type: Transform + - uid: 5136 + components: + - pos: 32.5,12.5 + parent: 1 + type: Transform + - uid: 5137 + components: + - pos: 32.5,13.5 + parent: 1 + type: Transform + - uid: 5138 + components: + - pos: 32.5,14.5 + parent: 1 + type: Transform + - uid: 5139 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 5140 + components: + - pos: 32.5,16.5 + parent: 1 + type: Transform + - uid: 5141 + components: + - pos: 32.5,17.5 + parent: 1 + type: Transform + - uid: 5142 + components: + - pos: 32.5,18.5 + parent: 1 + type: Transform + - uid: 5143 + components: + - pos: 32.5,19.5 + parent: 1 + type: Transform + - uid: 5144 + components: + - pos: 32.5,20.5 + parent: 1 + type: Transform + - uid: 5145 + components: + - pos: 32.5,21.5 + parent: 1 + type: Transform + - uid: 5146 + components: + - pos: 32.5,22.5 + parent: 1 + type: Transform + - uid: 5147 + components: + - pos: 32.5,23.5 + parent: 1 + type: Transform + - uid: 5148 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 5149 + components: + - pos: 32.5,25.5 + parent: 1 + type: Transform + - uid: 5150 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 5151 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - uid: 5152 + components: + - pos: 33.5,27.5 + parent: 1 + type: Transform + - uid: 5153 + components: + - pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 5154 + components: + - pos: 33.5,17.5 + parent: 1 + type: Transform + - uid: 5155 + components: + - pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 5297 + components: + - pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 5298 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 5299 + components: + - pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 5300 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 5703 + components: + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 5704 + components: + - pos: -19.5,26.5 + parent: 1 + type: Transform + - uid: 5705 + components: + - pos: -19.5,25.5 + parent: 1 + type: Transform + - uid: 5706 + components: + - pos: -19.5,24.5 + parent: 1 + type: Transform + - uid: 5707 + components: + - pos: -18.5,24.5 + parent: 1 + type: Transform + - uid: 5708 + components: + - pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 5709 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 5710 + components: + - pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 5711 + components: + - pos: -14.5,24.5 + parent: 1 + type: Transform + - uid: 5712 + components: + - pos: -13.5,24.5 + parent: 1 + type: Transform + - uid: 5713 + components: + - pos: -13.5,23.5 + parent: 1 + type: Transform + - uid: 5714 + components: + - pos: -13.5,22.5 + parent: 1 + type: Transform + - uid: 5715 + components: + - pos: -13.5,21.5 + parent: 1 + type: Transform + - uid: 5716 + components: + - pos: -13.5,20.5 + parent: 1 + type: Transform + - uid: 5717 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - uid: 5718 + components: + - pos: -14.5,19.5 + parent: 1 + type: Transform + - uid: 5719 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - uid: 5720 + components: + - pos: -16.5,19.5 + parent: 1 + type: Transform + - uid: 5721 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - uid: 5722 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 5723 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - uid: 5724 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 5725 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 5726 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 5727 + components: + - pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 5728 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 5729 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 5730 + components: + - pos: -16.5,11.5 + parent: 1 + type: Transform + - uid: 5731 + components: + - pos: -15.5,13.5 + parent: 1 + type: Transform + - uid: 5732 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 5733 + components: + - pos: -16.5,10.5 + parent: 1 + type: Transform + - uid: 5734 + components: + - pos: -17.5,10.5 + parent: 1 + type: Transform + - uid: 5735 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 5736 + components: + - pos: -19.5,10.5 + parent: 1 + type: Transform + - uid: 5737 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform + - uid: 5738 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - uid: 5739 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform + - uid: 5740 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - uid: 5741 + components: + - pos: -24.5,10.5 + parent: 1 + type: Transform + - uid: 5742 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 5743 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 5752 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - uid: 5753 + components: + - pos: -14.5,10.5 + parent: 1 + type: Transform + - uid: 5754 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 5755 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - uid: 5756 + components: + - pos: -11.5,10.5 + parent: 1 + type: Transform + - uid: 5757 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 5758 + components: + - pos: -11.5,8.5 + parent: 1 + type: Transform + - uid: 5759 + components: + - pos: -11.5,7.5 + parent: 1 + type: Transform + - uid: 5760 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 6180 + components: + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 6181 + components: + - pos: 10.5,20.5 + parent: 1 + type: Transform + - uid: 6182 + components: + - pos: 10.5,19.5 + parent: 1 + type: Transform + - uid: 6183 + components: + - pos: 9.5,19.5 + parent: 1 + type: Transform + - uid: 6184 + components: + - pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 6185 + components: + - pos: 8.5,18.5 + parent: 1 + type: Transform + - uid: 6186 + components: + - pos: 8.5,17.5 + parent: 1 + type: Transform + - uid: 6187 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 6188 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 6189 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 6190 + components: + - pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 6191 + components: + - pos: 8.5,12.5 + parent: 1 + type: Transform + - uid: 6192 + components: + - pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 6193 + components: + - pos: 8.5,10.5 + parent: 1 + type: Transform + - uid: 6194 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 6195 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 6196 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 6197 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 6198 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 6199 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 6205 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 6209 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 6210 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 6211 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 6212 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 6213 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 6214 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 6215 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 6216 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 6217 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 6218 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 6219 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 6220 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 6221 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 6222 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 6223 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 6224 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 6225 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 6226 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 6286 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 6287 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 6288 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 6289 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 6290 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 6291 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 6340 + components: + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 6341 + components: + - pos: -7.5,-19.5 + parent: 1 + type: Transform + - uid: 6342 + components: + - pos: -7.5,-18.5 + parent: 1 + type: Transform + - uid: 6343 + components: + - pos: -8.5,-18.5 + parent: 1 + type: Transform + - uid: 6344 + components: + - pos: -9.5,-18.5 + parent: 1 + type: Transform + - uid: 6345 + components: + - pos: -10.5,-18.5 + parent: 1 + type: Transform + - uid: 6346 + components: + - pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 6347 + components: + - pos: -11.5,-17.5 + parent: 1 + type: Transform + - uid: 6348 + components: + - pos: -11.5,-16.5 + parent: 1 + type: Transform + - uid: 6349 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 6350 + components: + - pos: -11.5,-14.5 + parent: 1 + type: Transform + - uid: 6351 + components: + - pos: -11.5,-13.5 + parent: 1 + type: Transform + - uid: 6352 + components: + - pos: -11.5,-12.5 + parent: 1 + type: Transform + - uid: 6353 + components: + - pos: -11.5,-11.5 + parent: 1 + type: Transform + - uid: 6354 + components: + - pos: -11.5,-10.5 + parent: 1 + type: Transform + - uid: 6355 + components: + - pos: -11.5,-9.5 + parent: 1 + type: Transform + - uid: 6356 + components: + - pos: -11.5,-8.5 + parent: 1 + type: Transform + - uid: 6357 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 6358 + components: + - pos: -11.5,-6.5 + parent: 1 + type: Transform + - uid: 6359 + components: + - pos: -10.5,-15.5 + parent: 1 + type: Transform + - uid: 6360 + components: + - pos: -9.5,-15.5 + parent: 1 + type: Transform + - uid: 6361 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - uid: 6362 + components: + - pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 6363 + components: + - pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 6364 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 6365 + components: + - pos: -14.5,-6.5 + parent: 1 + type: Transform + - uid: 6366 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - uid: 6367 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - uid: 6368 + components: + - pos: -17.5,-6.5 + parent: 1 + type: Transform + - uid: 6369 + components: + - pos: -18.5,-6.5 + parent: 1 + type: Transform + - uid: 6370 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 6371 + components: + - pos: -20.5,-6.5 + parent: 1 + type: Transform + - uid: 6372 + components: + - pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 6373 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform + - uid: 6374 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 6375 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 6376 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 6377 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - uid: 6378 + components: + - pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 6379 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 6380 + components: + - pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 6381 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 6382 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 6383 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 6384 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 6385 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 6386 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 6387 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 6388 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 6389 + components: + - pos: -16.5,-17.5 + parent: 1 + type: Transform + - uid: 6390 + components: + - pos: -16.5,-18.5 + parent: 1 + type: Transform + - uid: 6391 + components: + - pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 6392 + components: + - pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 6393 + components: + - pos: -21.5,-6.5 + parent: 1 + type: Transform + - uid: 6528 + components: + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 6529 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 6530 + components: + - pos: 14.5,-10.5 + parent: 1 + type: Transform + - uid: 6531 + components: + - pos: 15.5,-10.5 + parent: 1 + type: Transform + - uid: 6532 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - uid: 6533 + components: + - pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 6534 + components: + - pos: 18.5,-10.5 + parent: 1 + type: Transform + - uid: 6535 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform + - uid: 6536 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 6537 + components: + - pos: 21.5,-10.5 + parent: 1 + type: Transform + - uid: 6538 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 6539 + components: + - pos: 23.5,-10.5 + parent: 1 + type: Transform + - uid: 6540 + components: + - pos: 24.5,-10.5 + parent: 1 + type: Transform + - uid: 6541 + components: + - pos: 24.5,-11.5 + parent: 1 + type: Transform + - uid: 6542 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 6543 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 6544 + components: + - pos: 22.5,-8.5 + parent: 1 + type: Transform + - uid: 6545 + components: + - pos: 22.5,-7.5 + parent: 1 + type: Transform + - uid: 6546 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform + - uid: 6547 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - uid: 6548 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - uid: 6549 + components: + - pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 6550 + components: + - pos: 20.5,-4.5 + parent: 1 + type: Transform + - uid: 6551 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform + - uid: 6552 + components: + - pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 6553 + components: + - pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 6554 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 6557 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - uid: 6558 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - uid: 6559 + components: + - pos: 27.5,-10.5 + parent: 1 + type: Transform + - uid: 6560 + components: + - pos: 28.5,-10.5 + parent: 1 + type: Transform + - uid: 6561 + components: + - pos: 29.5,-10.5 + parent: 1 + type: Transform + - uid: 6562 + components: + - pos: 30.5,-10.5 + parent: 1 + type: Transform + - uid: 6563 + components: + - pos: 31.5,-10.5 + parent: 1 + type: Transform + - uid: 6564 + components: + - pos: 32.5,-10.5 + parent: 1 + type: Transform + - uid: 6565 + components: + - pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 6566 + components: + - pos: 34.5,-10.5 + parent: 1 + type: Transform + - uid: 6567 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - uid: 6568 + components: + - pos: 34.5,-8.5 + parent: 1 + type: Transform + - uid: 6569 + components: + - pos: 34.5,-7.5 + parent: 1 + type: Transform + - uid: 6570 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform + - uid: 6571 + components: + - pos: 34.5,-5.5 + parent: 1 + type: Transform + - uid: 6572 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 6573 + components: + - pos: 34.5,-11.5 + parent: 1 + type: Transform + - uid: 6574 + components: + - pos: 34.5,-12.5 + parent: 1 + type: Transform + - uid: 6575 + components: + - pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 6576 + components: + - pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 6577 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 6781 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 6782 + components: + - pos: 17.5,-3.5 + parent: 1 + type: Transform + - uid: 7091 + components: + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 7092 + components: + - pos: 21.5,-19.5 + parent: 1 + type: Transform + - uid: 7094 + components: + - pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 7095 + components: + - pos: 25.5,-19.5 + parent: 1 + type: Transform + - uid: 7096 + components: + - pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 7097 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 7098 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - uid: 7099 + components: + - pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 7100 + components: + - pos: 21.5,-18.5 + parent: 1 + type: Transform + - uid: 7101 + components: + - pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 7102 + components: + - pos: 19.5,-21.5 + parent: 1 + type: Transform + - uid: 7103 + components: + - pos: 18.5,-21.5 + parent: 1 + type: Transform + - uid: 7104 + components: + - pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 7105 + components: + - pos: 16.5,-21.5 + parent: 1 + type: Transform + - uid: 7109 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 7110 + components: + - pos: 14.5,-21.5 + parent: 1 + type: Transform + - uid: 7111 + components: + - pos: 13.5,-21.5 + parent: 1 + type: Transform + - uid: 7112 + components: + - pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 7113 + components: + - pos: 11.5,-21.5 + parent: 1 + type: Transform + - uid: 7114 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 7115 + components: + - pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 7116 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 7117 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 7118 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 7119 + components: + - pos: 15.5,-24.5 + parent: 1 + type: Transform + - uid: 7120 + components: + - pos: 15.5,-25.5 + parent: 1 + type: Transform + - uid: 7121 + components: + - pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 7122 + components: + - pos: 15.5,-27.5 + parent: 1 + type: Transform + - uid: 7123 + components: + - pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 7124 + components: + - pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 7125 + components: + - pos: 21.5,-21.5 + parent: 1 + type: Transform + - uid: 7126 + components: + - pos: 22.5,-21.5 + parent: 1 + type: Transform + - uid: 7127 + components: + - pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 7389 + components: + - pos: 18.5,-11.5 + parent: 1 + type: Transform + - uid: 7390 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 7391 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 7392 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 7393 + components: + - pos: 20.5,-11.5 + parent: 1 + type: Transform + - uid: 7559 + components: + - pos: -40.5,23.5 + parent: 1 + type: Transform + - uid: 7560 + components: + - pos: -39.5,23.5 + parent: 1 + type: Transform + - uid: 7561 + components: + - pos: -39.5,24.5 + parent: 1 + type: Transform + - uid: 7581 + components: + - pos: -40.5,22.5 + parent: 1 + type: Transform + - uid: 7582 + components: + - pos: -40.5,21.5 + parent: 1 + type: Transform + - uid: 7583 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - uid: 7584 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 7585 + components: + - pos: -40.5,18.5 + parent: 1 + type: Transform + - uid: 7586 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 7587 + components: + - pos: -40.5,16.5 + parent: 1 + type: Transform + - uid: 7588 + components: + - pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 7589 + components: + - pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 7590 + components: + - pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 7591 + components: + - pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 7592 + components: + - pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 7593 + components: + - pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 7594 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 7595 + components: + - pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 7596 + components: + - pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 7597 + components: + - pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 7598 + components: + - pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 7599 + components: + - pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 7600 + components: + - pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 7601 + components: + - pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 7602 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 7603 + components: + - pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 7604 + components: + - pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 7605 + components: + - pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 7606 + components: + - pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 7607 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 7608 + components: + - pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 7609 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 7610 + components: + - pos: -34.5,3.5 + parent: 1 + type: Transform + - uid: 7611 + components: + - pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 7612 + components: + - pos: -34.5,5.5 + parent: 1 + type: Transform + - uid: 7613 + components: + - pos: -34.5,6.5 + parent: 1 + type: Transform + - uid: 7614 + components: + - pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 7615 + components: + - pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 7616 + components: + - pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 7617 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 7618 + components: + - pos: -32.5,9.5 + parent: 1 + type: Transform + - uid: 7619 + components: + - pos: -31.5,9.5 + parent: 1 + type: Transform + - uid: 7620 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 7621 + components: + - pos: -37.5,1.5 + parent: 1 + type: Transform + - uid: 7622 + components: + - pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 7623 + components: + - pos: -37.5,-0.5 + parent: 1 + type: Transform + - uid: 7624 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 7625 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 7626 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 7627 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 7628 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 7629 + components: + - pos: -37.5,-6.5 + parent: 1 + type: Transform + - uid: 7630 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 7631 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 7632 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 7633 + components: + - pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 7723 + components: + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 7724 + components: + - pos: -8.5,-22.5 + parent: 1 + type: Transform + - uid: 7725 + components: + - pos: -9.5,-22.5 + parent: 1 + type: Transform + - uid: 7726 + components: + - pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 7727 + components: + - pos: -10.5,-23.5 + parent: 1 + type: Transform + - uid: 7728 + components: + - pos: -10.5,-24.5 + parent: 1 + type: Transform + - uid: 7729 + components: + - pos: -10.5,-25.5 + parent: 1 + type: Transform + - uid: 7730 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform + - uid: 7731 + components: + - pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 7732 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - uid: 7733 + components: + - pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 7734 + components: + - pos: -15.5,-25.5 + parent: 1 + type: Transform + - uid: 7735 + components: + - pos: -16.5,-25.5 + parent: 1 + type: Transform + - uid: 7736 + components: + - pos: -17.5,-25.5 + parent: 1 + type: Transform + - uid: 7737 + components: + - pos: -18.5,-25.5 + parent: 1 + type: Transform + - uid: 7738 + components: + - pos: -19.5,-25.5 + parent: 1 + type: Transform + - uid: 7739 + components: + - pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 7740 + components: + - pos: -9.5,-25.5 + parent: 1 + type: Transform + - uid: 7741 + components: + - pos: -8.5,-25.5 + parent: 1 + type: Transform + - uid: 7742 + components: + - pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 7743 + components: + - pos: -6.5,-25.5 + parent: 1 + type: Transform + - uid: 7744 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 7745 + components: + - pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 7746 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 7747 + components: + - pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 7748 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 7749 + components: + - pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 7750 + components: + - pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 7751 + components: + - pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 7752 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - uid: 7753 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 7754 + components: + - pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 7755 + components: + - pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 7756 + components: + - pos: 1.5,-22.5 + parent: 1 + type: Transform + - uid: 7757 + components: + - pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 7758 + components: + - pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 7759 + components: + - pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 7760 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 7761 + components: + - pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 7762 + components: + - pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 7763 + components: + - pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 7764 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 7765 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 7767 + components: + - pos: 1.5,-26.5 + parent: 1 + type: Transform + - uid: 7768 + components: + - pos: 1.5,-27.5 + parent: 1 + type: Transform + - uid: 7769 + components: + - pos: 1.5,-28.5 + parent: 1 + type: Transform + - uid: 7770 + components: + - pos: 1.5,-29.5 + parent: 1 + type: Transform + - uid: 7771 + components: + - pos: 1.5,-30.5 + parent: 1 + type: Transform + - uid: 7772 + components: + - pos: 1.5,-31.5 + parent: 1 + type: Transform + - uid: 7773 + components: + - pos: 1.5,-32.5 + parent: 1 + type: Transform + - uid: 7774 + components: + - pos: 0.5,-32.5 + parent: 1 + type: Transform + - uid: 7775 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 7776 + components: + - pos: -1.5,-32.5 + parent: 1 + type: Transform + - uid: 7777 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 7778 + components: + - pos: -3.5,-32.5 + parent: 1 + type: Transform + - uid: 7779 + components: + - pos: -4.5,-32.5 + parent: 1 + type: Transform + - uid: 7780 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform + - uid: 7781 + components: + - pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 8024 + components: + - pos: 40.5,19.5 + parent: 1 + type: Transform + - uid: 8025 + components: + - pos: 39.5,19.5 + parent: 1 + type: Transform + - uid: 8026 + components: + - pos: 39.5,18.5 + parent: 1 + type: Transform + - uid: 8027 + components: + - pos: 39.5,17.5 + parent: 1 + type: Transform + - uid: 8028 + components: + - pos: 39.5,16.5 + parent: 1 + type: Transform + - uid: 8029 + components: + - pos: 40.5,16.5 + parent: 1 + type: Transform + - uid: 8030 + components: + - pos: 41.5,16.5 + parent: 1 + type: Transform + - uid: 8031 + components: + - pos: 42.5,16.5 + parent: 1 + type: Transform + - uid: 8032 + components: + - pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 8033 + components: + - pos: 43.5,15.5 + parent: 1 + type: Transform + - uid: 8034 + components: + - pos: 44.5,15.5 + parent: 1 + type: Transform + - uid: 8035 + components: + - pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 8036 + components: + - pos: 45.5,15.5 + parent: 1 + type: Transform + - uid: 8037 + components: + - pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 8038 + components: + - pos: 45.5,17.5 + parent: 1 + type: Transform + - uid: 8039 + components: + - pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 8040 + components: + - pos: 45.5,19.5 + parent: 1 + type: Transform + - uid: 8041 + components: + - pos: 45.5,20.5 + parent: 1 + type: Transform + - uid: 8042 + components: + - pos: 45.5,21.5 + parent: 1 + type: Transform + - uid: 8043 + components: + - pos: 45.5,22.5 + parent: 1 + type: Transform + - uid: 8044 + components: + - pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 8045 + components: + - pos: 45.5,24.5 + parent: 1 + type: Transform + - uid: 8046 + components: + - pos: 45.5,25.5 + parent: 1 + type: Transform + - uid: 8047 + components: + - pos: 45.5,26.5 + parent: 1 + type: Transform + - uid: 8048 + components: + - pos: 45.5,27.5 + parent: 1 + type: Transform + - uid: 8050 + components: + - pos: 44.5,28.5 + parent: 1 + type: Transform + - uid: 8051 + components: + - pos: 43.5,28.5 + parent: 1 + type: Transform + - uid: 8052 + components: + - pos: 42.5,28.5 + parent: 1 + type: Transform + - uid: 8053 + components: + - pos: 41.5,28.5 + parent: 1 + type: Transform + - uid: 8054 + components: + - pos: 40.5,28.5 + parent: 1 + type: Transform + - uid: 8055 + components: + - pos: 39.5,28.5 + parent: 1 + type: Transform + - uid: 8056 + components: + - pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 8057 + components: + - pos: 44.5,22.5 + parent: 1 + type: Transform + - uid: 8058 + components: + - pos: 43.5,22.5 + parent: 1 + type: Transform + - uid: 8059 + components: + - pos: 42.5,22.5 + parent: 1 + type: Transform + - uid: 8060 + components: + - pos: 41.5,22.5 + parent: 1 + type: Transform + - uid: 8061 + components: + - pos: 41.5,23.5 + parent: 1 + type: Transform + - uid: 8062 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 8063 + components: + - pos: 45.5,14.5 + parent: 1 + type: Transform + - uid: 8064 + components: + - pos: 45.5,13.5 + parent: 1 + type: Transform + - uid: 8065 + components: + - pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 8066 + components: + - pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 8067 + components: + - pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 8068 + components: + - pos: 45.5,9.5 + parent: 1 + type: Transform + - uid: 8069 + components: + - pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 8070 + components: + - pos: 45.5,7.5 + parent: 1 + type: Transform + - uid: 8071 + components: + - pos: 45.5,6.5 + parent: 1 + type: Transform + - uid: 8072 + components: + - pos: 45.5,5.5 + parent: 1 + type: Transform + - uid: 8073 + components: + - pos: 45.5,4.5 + parent: 1 + type: Transform + - uid: 8074 + components: + - pos: 45.5,3.5 + parent: 1 + type: Transform + - uid: 8075 + components: + - pos: 45.5,2.5 + parent: 1 + type: Transform + - uid: 8076 + components: + - pos: 44.5,2.5 + parent: 1 + type: Transform + - uid: 8077 + components: + - pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 8078 + components: + - pos: 42.5,2.5 + parent: 1 + type: Transform + - uid: 8079 + components: + - pos: 41.5,2.5 + parent: 1 + type: Transform + - uid: 8080 + components: + - pos: 40.5,2.5 + parent: 1 + type: Transform + - uid: 8081 + components: + - pos: 39.5,2.5 + parent: 1 + type: Transform + - uid: 8082 + components: + - pos: 38.5,2.5 + parent: 1 + type: Transform + - uid: 8083 + components: + - pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 8084 + components: + - pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 8085 + components: + - pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 8086 + components: + - pos: 34.5,2.5 + parent: 1 + type: Transform + - uid: 8087 + components: + - pos: 33.5,2.5 + parent: 1 + type: Transform + - uid: 8088 + components: + - pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 8089 + components: + - pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 8090 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 8091 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 8092 + components: + - pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 8093 + components: + - pos: 28.5,1.5 + parent: 1 + type: Transform + - uid: 8094 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 8182 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 8183 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 8184 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 8185 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 8186 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 8187 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 8188 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 8191 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 8192 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 8331 + components: + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 8332 + components: + - pos: -30.5,-23.5 + parent: 1 + type: Transform + - uid: 8333 + components: + - pos: -30.5,-22.5 + parent: 1 + type: Transform + - uid: 8334 + components: + - pos: -30.5,-21.5 + parent: 1 + type: Transform + - uid: 8335 + components: + - pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 8336 + components: + - pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 8337 + components: + - pos: -30.5,-19.5 + parent: 1 + type: Transform + - uid: 8338 + components: + - pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 8339 + components: + - pos: -30.5,-17.5 + parent: 1 + type: Transform + - uid: 8340 + components: + - pos: -30.5,-16.5 + parent: 1 + type: Transform + - uid: 8341 + components: + - pos: -31.5,-16.5 + parent: 1 + type: Transform + - uid: 8342 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 8345 + components: + - pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 8346 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 8347 + components: + - pos: -33.5,-20.5 + parent: 1 + type: Transform + - uid: 8348 + components: + - pos: -34.5,-20.5 + parent: 1 + type: Transform + - uid: 8349 + components: + - pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 8350 + components: + - pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 8351 + components: + - pos: -37.5,-20.5 + parent: 1 + type: Transform + - uid: 8352 + components: + - pos: -38.5,-20.5 + parent: 1 + type: Transform + - uid: 8353 + components: + - pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 8354 + components: + - pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 8355 + components: + - pos: -38.5,-17.5 + parent: 1 + type: Transform + - uid: 8356 + components: + - pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 8357 + components: + - pos: -38.5,-15.5 + parent: 1 + type: Transform + - uid: 8358 + components: + - pos: -38.5,-14.5 + parent: 1 + type: Transform + - uid: 8359 + components: + - pos: -38.5,-13.5 + parent: 1 + type: Transform + - uid: 8360 + components: + - pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 8361 + components: + - pos: -39.5,-12.5 + parent: 1 + type: Transform + - uid: 8362 + components: + - pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 8384 + components: + - pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 8416 + components: + - pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 8417 + components: + - pos: 37.5,16.5 + parent: 1 + type: Transform + - uid: 8418 + components: + - pos: 36.5,16.5 + parent: 1 + type: Transform + - uid: 8419 + components: + - pos: 36.5,17.5 + parent: 1 + type: Transform + - uid: 8420 + components: + - pos: 36.5,18.5 + parent: 1 + type: Transform + - uid: 8421 + components: + - pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 8422 + components: + - pos: 36.5,20.5 + parent: 1 + type: Transform + - uid: 8423 + components: + - pos: 36.5,21.5 + parent: 1 + type: Transform + - uid: 8424 + components: + - pos: 36.5,22.5 + parent: 1 + type: Transform + - uid: 8425 + components: + - pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 8426 + components: + - pos: 36.5,24.5 + parent: 1 + type: Transform + - uid: 8427 + components: + - pos: 36.5,25.5 + parent: 1 + type: Transform + - uid: 8428 + components: + - pos: 36.5,26.5 + parent: 1 + type: Transform + - uid: 8429 + components: + - pos: 36.5,27.5 + parent: 1 + type: Transform + - uid: 8430 + components: + - pos: 36.5,28.5 + parent: 1 + type: Transform + - uid: 8431 + components: + - pos: 36.5,29.5 + parent: 1 + type: Transform + - uid: 8432 + components: + - pos: 36.5,30.5 + parent: 1 + type: Transform + - uid: 8433 + components: + - pos: 36.5,31.5 + parent: 1 + type: Transform + - uid: 8434 + components: + - pos: 36.5,32.5 + parent: 1 + type: Transform + - uid: 8435 + components: + - pos: 35.5,32.5 + parent: 1 + type: Transform + - uid: 8436 + components: + - pos: 34.5,32.5 + parent: 1 + type: Transform + - uid: 9185 + components: + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 9186 + components: + - pos: -25.5,29.5 + parent: 1 + type: Transform + - uid: 9187 + components: + - pos: -25.5,28.5 + parent: 1 + type: Transform + - uid: 9188 + components: + - pos: -25.5,27.5 + parent: 1 + type: Transform + - uid: 9189 + components: + - pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 9190 + components: + - pos: -26.5,27.5 + parent: 1 + type: Transform + - uid: 9191 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 9192 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform + - uid: 9193 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 9194 + components: + - pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 9195 + components: + - pos: -28.5,24.5 + parent: 1 + type: Transform + - uid: 9196 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - uid: 9736 + components: + - pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 9737 + components: + - pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 12123 + components: + - pos: 45.5,28.5 + parent: 1 + type: Transform + - uid: 12565 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 12566 + components: + - pos: -33.5,-15.5 + parent: 1 + type: Transform + - uid: 12567 + components: + - pos: -33.5,-14.5 + parent: 1 + type: Transform +- proto: CableMVStack + entities: + - uid: 3982 + components: + - pos: -2.5254679,44.593964 + parent: 1 + type: Transform + - uid: 7642 + components: + - pos: -41.491985,19.264193 + parent: 1 + type: Transform + - uid: 8228 + components: + - pos: -5.2976665,-20.338463 + parent: 1 + type: Transform + - uid: 9647 + components: + - pos: 12.6765375,23.532959 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 1130 + components: + - pos: 23.5,-13.5 + parent: 1 + type: Transform + - uid: 1131 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 1132 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 2449 + components: + - pos: -32.5,-22.5 + parent: 1 + type: Transform + - uid: 2552 + components: + - pos: -27.5,30.5 + parent: 1 + type: Transform + - uid: 2848 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-53.5 + parent: 1 + type: Transform + - uid: 3678 + components: + - pos: -0.5,46.5 + parent: 1 + type: Transform + - uid: 7558 + components: + - rot: 3.141592653589793 rad + pos: -41.5,22.5 + parent: 1 + type: Transform +- proto: CannabisSeeds + entities: + - uid: 5466 + components: + - pos: 30.131155,27.66019 + parent: 1 + type: Transform +- proto: CaptainIDCard + entities: + - uid: 4981 + components: + - pos: 4.562398,31.612326 + parent: 1 + type: Transform +- proto: CarbonDioxideCanister + entities: + - uid: 6323 + components: + - pos: -19.5,-18.5 + parent: 1 + type: Transform + - uid: 6809 + components: + - pos: 43.5,-9.5 + parent: 1 + type: Transform +- proto: Carpet + entities: + - uid: 5022 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 5024 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 5026 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 5027 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 5028 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 5029 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 5043 + components: + - rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 5044 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 5045 + components: + - rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 5623 + components: + - rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 1 + type: Transform + - uid: 5624 + components: + - rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 5625 + components: + - rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 1 + type: Transform + - uid: 5626 + components: + - rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 5627 + components: + - rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 1 + type: Transform + - uid: 5628 + components: + - rot: 3.141592653589793 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 5629 + components: + - rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 1 + type: Transform + - uid: 5630 + components: + - rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 5631 + components: + - rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 1 + type: Transform + - uid: 5632 + components: + - rot: 3.141592653589793 rad + pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 5633 + components: + - rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1 + type: Transform + - uid: 5634 + components: + - rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 1 + type: Transform + - uid: 5635 + components: + - rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 5636 + components: + - rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 1 + type: Transform + - uid: 5637 + components: + - rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 1 + type: Transform + - uid: 5638 + components: + - rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 12438 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 1 + type: Transform + - uid: 12439 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 1 + type: Transform + - uid: 12440 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 1 + type: Transform + - uid: 12441 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 2010 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,6.5 + parent: 1 + type: Transform + - uid: 2011 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 1 + type: Transform + - uid: 2012 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,8.5 + parent: 1 + type: Transform + - uid: 2013 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,9.5 + parent: 1 + type: Transform + - uid: 2014 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,10.5 + parent: 1 + type: Transform + - uid: 2015 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 1 + type: Transform + - uid: 2016 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,9.5 + parent: 1 + type: Transform + - uid: 2017 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,9.5 + parent: 1 + type: Transform + - uid: 2018 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,9.5 + parent: 1 + type: Transform +- proto: CarpetBlue + entities: + - uid: 5645 + components: + - rot: 3.141592653589793 rad + pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 5646 + components: + - rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - uid: 5647 + components: + - rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 5648 + components: + - rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 1 + type: Transform + - uid: 5649 + components: + - rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 5650 + components: + - rot: 3.141592653589793 rad + pos: -18.5,15.5 + parent: 1 + type: Transform + - uid: 5651 + components: + - rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 1 + type: Transform + - uid: 5652 + components: + - rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 5653 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 5654 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 5655 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 1 + type: Transform + - uid: 5656 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - uid: 5657 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 1 + type: Transform +- proto: CarpetGreen + entities: + - uid: 3833 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 5023 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 5025 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 9019 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 9020 + components: + - pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 9021 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 9022 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - uid: 9023 + components: + - pos: -36.5,-2.5 + parent: 1 + type: Transform + - uid: 9024 + components: + - pos: -36.5,-3.5 + parent: 1 + type: Transform + - uid: 9025 + components: + - pos: -38.5,-5.5 + parent: 1 + type: Transform + - uid: 9026 + components: + - pos: -38.5,-4.5 + parent: 1 + type: Transform + - uid: 9027 + components: + - pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 9028 + components: + - pos: -37.5,-5.5 + parent: 1 + type: Transform + - uid: 9029 + components: + - pos: -36.5,-5.5 + parent: 1 + type: Transform + - uid: 9030 + components: + - pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 9031 + components: + - pos: -38.5,-7.5 + parent: 1 + type: Transform + - uid: 9032 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 9033 + components: + - pos: -36.5,-4.5 + parent: 1 + type: Transform + - uid: 9034 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform + - uid: 9035 + components: + - pos: -40.5,-7.5 + parent: 1 + type: Transform + - uid: 9036 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - uid: 9037 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 9038 + components: + - pos: -40.5,-4.5 + parent: 1 + type: Transform + - uid: 9039 + components: + - pos: -41.5,-4.5 + parent: 1 + type: Transform + - uid: 9040 + components: + - pos: -41.5,-5.5 + parent: 1 + type: Transform + - uid: 9041 + components: + - pos: -41.5,-6.5 + parent: 1 + type: Transform + - uid: 9042 + components: + - pos: -41.5,-7.5 + parent: 1 + type: Transform +- proto: CarpetOrange + entities: + - uid: 5658 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-14.5 + parent: 1 + type: Transform + - uid: 5659 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 5660 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-14.5 + parent: 1 + type: Transform + - uid: 5661 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 1 + type: Transform + - uid: 12419 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 12420 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - uid: 12421 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - uid: 12422 + components: + - pos: 5.5,-16.5 + parent: 1 + type: Transform +- proto: CarpetPurple + entities: + - uid: 5018 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 5019 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 5020 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 5639 + components: + - rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 1 + type: Transform + - uid: 5640 + components: + - rot: 3.141592653589793 rad + pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 5641 + components: + - rot: 3.141592653589793 rad + pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 5642 + components: + - rot: 3.141592653589793 rad + pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 5643 + components: + - rot: 3.141592653589793 rad + pos: 4.5,30.5 + parent: 1 + type: Transform + - uid: 5644 + components: + - rot: 3.141592653589793 rad + pos: 5.5,30.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 1100 + components: + - pos: 22.5,-15.5 + parent: 1 + type: Transform + - uid: 1106 + components: + - pos: 22.5,-14.5 + parent: 1 + type: Transform + - uid: 1115 + components: + - pos: 22.5,-13.5 + parent: 1 + type: Transform + - uid: 1120 + components: + - pos: 23.5,-15.5 + parent: 1 + type: Transform + - uid: 1121 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - uid: 1122 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 1123 + components: + - pos: 26.5,-15.5 + parent: 1 + type: Transform + - uid: 1124 + components: + - pos: 26.5,-14.5 + parent: 1 + type: Transform + - uid: 1125 + components: + - pos: 26.5,-13.5 + parent: 1 + type: Transform + - uid: 1126 + components: + - pos: 25.5,-13.5 + parent: 1 + type: Transform + - uid: 1127 + components: + - pos: 24.5,-13.5 + parent: 1 + type: Transform + - uid: 1128 + components: + - pos: 23.5,-13.5 + parent: 1 + type: Transform + - uid: 1133 + components: + - pos: 27.5,-7.5 + parent: 1 + type: Transform + - uid: 1973 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-58.5 + parent: 1 + type: Transform + - uid: 2446 + components: + - pos: -35.5,-25.5 + parent: 1 + type: Transform + - uid: 2447 + components: + - pos: -34.5,-25.5 + parent: 1 + type: Transform + - uid: 2448 + components: + - pos: -33.5,-25.5 + parent: 1 + type: Transform + - uid: 2450 + components: + - pos: -31.5,-25.5 + parent: 1 + type: Transform + - uid: 2451 + components: + - pos: -31.5,-26.5 + parent: 1 + type: Transform + - uid: 2452 + components: + - pos: -31.5,-27.5 + parent: 1 + type: Transform + - uid: 2453 + components: + - pos: -31.5,-28.5 + parent: 1 + type: Transform + - uid: 2454 + components: + - pos: -31.5,-29.5 + parent: 1 + type: Transform + - uid: 2455 + components: + - pos: -31.5,-30.5 + parent: 1 + type: Transform + - uid: 2456 + components: + - pos: -31.5,-31.5 + parent: 1 + type: Transform + - uid: 2457 + components: + - pos: -31.5,-32.5 + parent: 1 + type: Transform + - uid: 2458 + components: + - pos: -31.5,-33.5 + parent: 1 + type: Transform + - uid: 2459 + components: + - pos: -31.5,-34.5 + parent: 1 + type: Transform + - uid: 2460 + components: + - pos: -32.5,-29.5 + parent: 1 + type: Transform + - uid: 2461 + components: + - pos: -33.5,-29.5 + parent: 1 + type: Transform + - uid: 2462 + components: + - pos: -34.5,-29.5 + parent: 1 + type: Transform + - uid: 2463 + components: + - pos: -30.5,-29.5 + parent: 1 + type: Transform + - uid: 2464 + components: + - pos: -29.5,-29.5 + parent: 1 + type: Transform + - uid: 2465 + components: + - pos: -28.5,-29.5 + parent: 1 + type: Transform + - uid: 2466 + components: + - pos: -32.5,-33.5 + parent: 1 + type: Transform + - uid: 2467 + components: + - pos: -33.5,-33.5 + parent: 1 + type: Transform + - uid: 2468 + components: + - pos: -34.5,-33.5 + parent: 1 + type: Transform + - uid: 2469 + components: + - pos: -30.5,-33.5 + parent: 1 + type: Transform + - uid: 2470 + components: + - pos: -29.5,-33.5 + parent: 1 + type: Transform + - uid: 2471 + components: + - pos: -28.5,-33.5 + parent: 1 + type: Transform + - uid: 2523 + components: + - pos: -31.5,-35.5 + parent: 1 + type: Transform + - uid: 2537 + components: + - pos: -32.5,-25.5 + parent: 1 + type: Transform + - uid: 2591 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,32.5 + parent: 1 + type: Transform + - uid: 2592 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,32.5 + parent: 1 + type: Transform + - uid: 2593 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,32.5 + parent: 1 + type: Transform + - uid: 2594 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,33.5 + parent: 1 + type: Transform + - uid: 2595 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,34.5 + parent: 1 + type: Transform + - uid: 2596 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,35.5 + parent: 1 + type: Transform + - uid: 2597 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,36.5 + parent: 1 + type: Transform + - uid: 2598 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,37.5 + parent: 1 + type: Transform + - uid: 2599 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 1 + type: Transform + - uid: 2600 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,39.5 + parent: 1 + type: Transform + - uid: 2601 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,40.5 + parent: 1 + type: Transform + - uid: 2602 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,41.5 + parent: 1 + type: Transform + - uid: 2603 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,39.5 + parent: 1 + type: Transform + - uid: 2604 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,39.5 + parent: 1 + type: Transform + - uid: 2605 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,39.5 + parent: 1 + type: Transform + - uid: 2606 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,39.5 + parent: 1 + type: Transform + - uid: 2607 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,39.5 + parent: 1 + type: Transform + - uid: 2608 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,39.5 + parent: 1 + type: Transform + - uid: 2609 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,39.5 + parent: 1 + type: Transform + - uid: 2610 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,39.5 + parent: 1 + type: Transform + - uid: 2611 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,35.5 + parent: 1 + type: Transform + - uid: 2612 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,35.5 + parent: 1 + type: Transform + - uid: 2613 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,35.5 + parent: 1 + type: Transform + - uid: 2614 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,35.5 + parent: 1 + type: Transform + - uid: 2615 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,35.5 + parent: 1 + type: Transform + - uid: 2616 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,35.5 + parent: 1 + type: Transform + - uid: 2617 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,35.5 + parent: 1 + type: Transform + - uid: 2618 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,35.5 + parent: 1 + type: Transform + - uid: 2790 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-58.5 + parent: 1 + type: Transform + - uid: 2837 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-58.5 + parent: 1 + type: Transform + - uid: 2840 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-58.5 + parent: 1 + type: Transform + - uid: 2841 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-58.5 + parent: 1 + type: Transform + - uid: 2842 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-57.5 + parent: 1 + type: Transform + - uid: 2843 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-59.5 + parent: 1 + type: Transform + - uid: 2844 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-56.5 + parent: 1 + type: Transform + - uid: 2845 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-55.5 + parent: 1 + type: Transform + - uid: 2980 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1 + type: Transform + - uid: 3804 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,34.5 + parent: 1 + type: Transform + - uid: 3850 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 1 + type: Transform + - uid: 3851 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,41.5 + parent: 1 + type: Transform + - uid: 3852 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 3853 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,40.5 + parent: 1 + type: Transform + - uid: 3854 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 3855 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 3856 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 3857 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 3858 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,37.5 + parent: 1 + type: Transform + - uid: 3859 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 3860 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 1 + type: Transform + - uid: 3861 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 1 + type: Transform + - uid: 3862 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,34.5 + parent: 1 + type: Transform + - uid: 3863 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 1 + type: Transform + - uid: 3864 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,42.5 + parent: 1 + type: Transform + - uid: 3865 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,41.5 + parent: 1 + type: Transform + - uid: 3866 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,41.5 + parent: 1 + type: Transform + - uid: 3867 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,40.5 + parent: 1 + type: Transform + - uid: 3868 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,39.5 + parent: 1 + type: Transform + - uid: 3869 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,39.5 + parent: 1 + type: Transform + - uid: 3870 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,38.5 + parent: 1 + type: Transform + - uid: 3871 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,37.5 + parent: 1 + type: Transform + - uid: 3872 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 1 + type: Transform + - uid: 3873 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,36.5 + parent: 1 + type: Transform + - uid: 3874 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,35.5 + parent: 1 + type: Transform + - uid: 3875 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,35.5 + parent: 1 + type: Transform + - uid: 3876 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 1 + type: Transform + - uid: 3877 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,34.5 + parent: 1 + type: Transform + - uid: 3878 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,34.5 + parent: 1 + type: Transform + - uid: 3879 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,34.5 + parent: 1 + type: Transform + - uid: 3880 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,35.5 + parent: 1 + type: Transform + - uid: 3881 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,35.5 + parent: 1 + type: Transform + - uid: 3882 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,35.5 + parent: 1 + type: Transform + - uid: 3883 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,35.5 + parent: 1 + type: Transform + - uid: 3884 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,35.5 + parent: 1 + type: Transform + - uid: 3885 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,35.5 + parent: 1 + type: Transform + - uid: 3886 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,41.5 + parent: 1 + type: Transform + - uid: 3887 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - uid: 3888 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,41.5 + parent: 1 + type: Transform + - uid: 3889 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 1 + type: Transform + - uid: 3890 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - uid: 3891 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,34.5 + parent: 1 + type: Transform + - uid: 3892 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,34.5 + parent: 1 + type: Transform + - uid: 3893 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,34.5 + parent: 1 + type: Transform + - uid: 3894 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,34.5 + parent: 1 + type: Transform + - uid: 3895 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,34.5 + parent: 1 + type: Transform + - uid: 3896 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,34.5 + parent: 1 + type: Transform + - uid: 3897 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,33.5 + parent: 1 + type: Transform + - uid: 3899 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,34.5 + parent: 1 + type: Transform + - uid: 3900 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,34.5 + parent: 1 + type: Transform + - uid: 3901 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,34.5 + parent: 1 + type: Transform + - uid: 3902 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,34.5 + parent: 1 + type: Transform + - uid: 3903 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,33.5 + parent: 1 + type: Transform + - uid: 3904 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,32.5 + parent: 1 + type: Transform + - uid: 3905 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 1 + type: Transform + - uid: 3906 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,32.5 + parent: 1 + type: Transform + - uid: 3907 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,32.5 + parent: 1 + type: Transform + - uid: 3908 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,32.5 + parent: 1 + type: Transform + - uid: 3909 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,32.5 + parent: 1 + type: Transform + - uid: 3931 + components: + - pos: -13.5,33.5 + parent: 1 + type: Transform + - uid: 3940 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 5841 + components: + - pos: -16.5,-46.5 + parent: 1 + type: Transform + - uid: 5843 + components: + - pos: -16.5,-45.5 + parent: 1 + type: Transform + - uid: 5844 + components: + - pos: -16.5,-44.5 + parent: 1 + type: Transform + - uid: 5845 + components: + - pos: -16.5,-43.5 + parent: 1 + type: Transform + - uid: 5846 + components: + - pos: -16.5,-42.5 + parent: 1 + type: Transform + - uid: 5847 + components: + - pos: -16.5,-41.5 + parent: 1 + type: Transform + - uid: 5848 + components: + - pos: -16.5,-40.5 + parent: 1 + type: Transform + - uid: 5849 + components: + - pos: -16.5,-39.5 + parent: 1 + type: Transform + - uid: 5850 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - uid: 5851 + components: + - pos: -16.5,-37.5 + parent: 1 + type: Transform + - uid: 5852 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - uid: 5853 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 5854 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - uid: 5855 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - uid: 5857 + components: + - pos: -17.5,-32.5 + parent: 1 + type: Transform + - uid: 7005 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 1 + type: Transform + - uid: 7006 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 7007 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 1 + type: Transform + - uid: 7008 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 1 + type: Transform + - uid: 7009 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 7010 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 1 + type: Transform + - uid: 7011 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 1 + type: Transform + - uid: 7012 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 7013 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 1 + type: Transform + - uid: 7014 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 1 + type: Transform + - uid: 7015 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 7016 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 1 + type: Transform + - uid: 7023 + components: + - pos: 31.5,-20.5 + parent: 1 + type: Transform + - uid: 7024 + components: + - pos: 32.5,-20.5 + parent: 1 + type: Transform + - uid: 7025 + components: + - pos: 33.5,-20.5 + parent: 1 + type: Transform + - uid: 7026 + components: + - pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 7027 + components: + - pos: 35.5,-20.5 + parent: 1 + type: Transform + - uid: 7028 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 7029 + components: + - pos: 37.5,-20.5 + parent: 1 + type: Transform + - uid: 7030 + components: + - pos: 38.5,-20.5 + parent: 1 + type: Transform + - uid: 7031 + components: + - pos: 32.5,-21.5 + parent: 1 + type: Transform + - uid: 7032 + components: + - pos: 32.5,-22.5 + parent: 1 + type: Transform + - uid: 7033 + components: + - pos: 32.5,-23.5 + parent: 1 + type: Transform + - uid: 7034 + components: + - pos: 32.5,-24.5 + parent: 1 + type: Transform + - uid: 7035 + components: + - pos: 32.5,-25.5 + parent: 1 + type: Transform + - uid: 7036 + components: + - pos: 33.5,-25.5 + parent: 1 + type: Transform + - uid: 7037 + components: + - pos: 34.5,-25.5 + parent: 1 + type: Transform + - uid: 7038 + components: + - pos: 35.5,-25.5 + parent: 1 + type: Transform + - uid: 7039 + components: + - pos: 36.5,-25.5 + parent: 1 + type: Transform + - uid: 7040 + components: + - pos: 37.5,-25.5 + parent: 1 + type: Transform + - uid: 7041 + components: + - pos: 38.5,-25.5 + parent: 1 + type: Transform + - uid: 7042 + components: + - pos: 38.5,-24.5 + parent: 1 + type: Transform + - uid: 7043 + components: + - pos: 38.5,-23.5 + parent: 1 + type: Transform + - uid: 7044 + components: + - pos: 38.5,-22.5 + parent: 1 + type: Transform + - uid: 7045 + components: + - pos: 38.5,-21.5 + parent: 1 + type: Transform + - uid: 7046 + components: + - pos: 39.5,-20.5 + parent: 1 + type: Transform + - uid: 7047 + components: + - pos: 40.5,-20.5 + parent: 1 + type: Transform + - uid: 7048 + components: + - pos: 41.5,-20.5 + parent: 1 + type: Transform + - uid: 7049 + components: + - pos: 41.5,-19.5 + parent: 1 + type: Transform + - uid: 7065 + components: + - pos: 41.5,-3.5 + parent: 1 + type: Transform + - uid: 7455 + components: + - pos: 24.5,-26.5 + parent: 1 + type: Transform + - uid: 7456 + components: + - pos: 24.5,-27.5 + parent: 1 + type: Transform + - uid: 7457 + components: + - pos: 25.5,-26.5 + parent: 1 + type: Transform + - uid: 7458 + components: + - pos: 25.5,-27.5 + parent: 1 + type: Transform + - uid: 7459 + components: + - pos: 26.5,-26.5 + parent: 1 + type: Transform + - uid: 7460 + components: + - pos: 26.5,-27.5 + parent: 1 + type: Transform + - uid: 8937 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 8938 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 1 + type: Transform + - uid: 8939 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 1 + type: Transform + - uid: 8940 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 1 + type: Transform + - uid: 8941 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 8942 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 1 + type: Transform + - uid: 8943 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 1 + type: Transform + - uid: 8944 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 1 + type: Transform + - uid: 8945 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 1 + type: Transform + - uid: 8946 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 1 + type: Transform + - uid: 8947 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 1 + type: Transform + - uid: 8948 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 1 + type: Transform + - uid: 8949 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 1 + type: Transform + - uid: 8950 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 8951 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-19.5 + parent: 1 + type: Transform + - uid: 8952 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 1 + type: Transform + - uid: 8953 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 8954 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-22.5 + parent: 1 + type: Transform + - uid: 8955 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-22.5 + parent: 1 + type: Transform + - uid: 8956 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 1 + type: Transform + - uid: 8957 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 1 + type: Transform + - uid: 8958 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 1 + type: Transform + - uid: 8959 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 1 + type: Transform + - uid: 8960 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 8961 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 1 + type: Transform + - uid: 8962 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 1 + type: Transform + - uid: 8963 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 1 + type: Transform + - uid: 8964 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 8965 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 1 + type: Transform + - uid: 8966 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 1 + type: Transform + - uid: 8967 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 1 + type: Transform + - uid: 8968 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 8969 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 8970 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 1 + type: Transform + - uid: 8971 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-10.5 + parent: 1 + type: Transform + - uid: 8972 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 1 + type: Transform + - uid: 8973 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 1 + type: Transform + - uid: 8974 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 1 + type: Transform + - uid: 8975 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + type: Transform + - uid: 8976 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 1 + type: Transform + - uid: 8977 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 1 + type: Transform + - uid: 8978 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 1 + type: Transform + - uid: 8979 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 1 + type: Transform + - uid: 8980 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 1 + type: Transform + - uid: 8981 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 8982 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 8983 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-1.5 + parent: 1 + type: Transform + - uid: 8984 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 8985 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 1 + type: Transform + - uid: 8986 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 1 + type: Transform + - uid: 8987 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-20.5 + parent: 1 + type: Transform + - uid: 8988 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 1 + type: Transform + - uid: 8989 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 1 + type: Transform + - uid: 8990 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 1 + type: Transform + - uid: 8991 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 1 + type: Transform + - uid: 8992 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 1 + type: Transform + - uid: 8993 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 1 + type: Transform + - uid: 8994 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 1 + type: Transform + - uid: 8995 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 1 + type: Transform + - uid: 8996 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 1 + type: Transform + - uid: 8997 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 1 + type: Transform + - uid: 8998 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 1 + type: Transform + - uid: 8999 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 1 + type: Transform + - uid: 9000 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1 + type: Transform + - uid: 9001 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 1 + type: Transform + - uid: 9002 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 9003 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 1 + type: Transform + - uid: 9004 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1 + type: Transform + - uid: 9005 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 9006 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 1 + type: Transform + - uid: 9007 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 9008 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 9009 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + type: Transform + - uid: 9010 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 9011 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 + type: Transform + - uid: 9012 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 1 + type: Transform + - uid: 9013 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-26.5 + parent: 1 + type: Transform + - uid: 9071 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1 + type: Transform + - uid: 9072 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1 + type: Transform + - uid: 9073 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 9074 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 1 + type: Transform + - uid: 9075 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 9076 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 9077 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 9078 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 9079 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 1 + type: Transform + - uid: 9080 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 9081 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-16.5 + parent: 1 + type: Transform + - uid: 9082 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 1 + type: Transform + - uid: 9083 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 1 + type: Transform + - uid: 9084 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 1 + type: Transform + - uid: 9085 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-17.5 + parent: 1 + type: Transform + - uid: 9086 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 9087 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 1 + type: Transform + - uid: 9088 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-18.5 + parent: 1 + type: Transform + - uid: 9089 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-18.5 + parent: 1 + type: Transform + - uid: 9090 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 1 + type: Transform + - uid: 9091 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 9092 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-13.5 + parent: 1 + type: Transform + - uid: 9093 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-14.5 + parent: 1 + type: Transform + - uid: 9094 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 9095 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 9096 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 1 + type: Transform + - uid: 9097 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 1 + type: Transform + - uid: 9098 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 9099 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 1 + type: Transform + - uid: 9100 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-3.5 + parent: 1 + type: Transform + - uid: 9101 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-1.5 + parent: 1 + type: Transform + - uid: 9102 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 1 + type: Transform + - uid: 9103 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-1.5 + parent: 1 + type: Transform + - uid: 9104 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 1 + type: Transform + - uid: 9105 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 1 + type: Transform + - uid: 9106 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9107 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9108 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 1 + type: Transform + - uid: 9109 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 9111 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 1 + type: Transform + - uid: 9112 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 9113 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-0.5 + parent: 1 + type: Transform + - uid: 9114 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 1 + type: Transform + - uid: 9115 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-0.5 + parent: 1 + type: Transform + - uid: 9116 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-0.5 + parent: 1 + type: Transform + - uid: 9117 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 1 + type: Transform + - uid: 9118 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-1.5 + parent: 1 + type: Transform + - uid: 9119 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-0.5 + parent: 1 + type: Transform + - uid: 9120 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 1 + type: Transform + - uid: 9121 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 9122 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 1 + type: Transform + - uid: 9123 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 1 + type: Transform + - uid: 9184 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 1 + type: Transform + - uid: 9332 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,42.5 + parent: 1 + type: Transform + - uid: 9384 + components: + - rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 9386 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1 + type: Transform + - uid: 9387 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 + type: Transform + - uid: 9388 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 9389 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 9390 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,24.5 + parent: 1 + type: Transform + - uid: 9391 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,26.5 + parent: 1 + type: Transform + - uid: 9392 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,26.5 + parent: 1 + type: Transform + - uid: 9393 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 9394 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 9395 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 1 + type: Transform + - uid: 9396 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 9397 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 1 + type: Transform + - uid: 9398 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,29.5 + parent: 1 + type: Transform + - uid: 9399 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 1 + type: Transform + - uid: 9400 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,30.5 + parent: 1 + type: Transform + - uid: 9401 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,33.5 + parent: 1 + type: Transform + - uid: 9402 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 1 + type: Transform + - uid: 9403 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 9404 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,29.5 + parent: 1 + type: Transform + - uid: 9405 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,32.5 + parent: 1 + type: Transform + - uid: 9406 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,33.5 + parent: 1 + type: Transform + - uid: 9407 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,33.5 + parent: 1 + type: Transform + - uid: 9408 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 9409 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 1 + type: Transform + - uid: 9410 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 1 + type: Transform + - uid: 9411 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 1 + type: Transform + - uid: 9412 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 1 + type: Transform + - uid: 9413 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,25.5 + parent: 1 + type: Transform + - uid: 9414 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 1 + type: Transform + - uid: 9415 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1 + type: Transform + - uid: 9416 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1 + type: Transform + - uid: 9417 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 + type: Transform + - uid: 9418 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,18.5 + parent: 1 + type: Transform + - uid: 9419 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1 + type: Transform + - uid: 9420 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 1 + type: Transform + - uid: 9421 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 9422 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 9423 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 1 + type: Transform + - uid: 9424 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 1 + type: Transform + - uid: 9425 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 9426 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 1 + type: Transform + - uid: 9427 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,18.5 + parent: 1 + type: Transform + - uid: 9428 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1 + type: Transform + - uid: 9429 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 1 + type: Transform + - uid: 9430 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1 + type: Transform + - uid: 9431 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 1 + type: Transform + - uid: 9432 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 1 + type: Transform + - uid: 9433 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 1 + type: Transform + - uid: 9434 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 1 + type: Transform + - uid: 9435 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 1 + type: Transform + - uid: 9436 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 1 + type: Transform + - uid: 9437 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 1 + type: Transform + - uid: 9438 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 1 + type: Transform + - uid: 9439 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 1 + type: Transform + - uid: 9440 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,33.5 + parent: 1 + type: Transform + - uid: 9441 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,33.5 + parent: 1 + type: Transform + - uid: 9442 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,32.5 + parent: 1 + type: Transform + - uid: 9443 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 1 + type: Transform + - uid: 9444 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,29.5 + parent: 1 + type: Transform + - uid: 9445 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,28.5 + parent: 1 + type: Transform + - uid: 9446 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 1 + type: Transform + - uid: 9447 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,25.5 + parent: 1 + type: Transform + - uid: 9448 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 9449 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,20.5 + parent: 1 + type: Transform + - uid: 9450 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 9451 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,18.5 + parent: 1 + type: Transform + - uid: 9452 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 9453 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,17.5 + parent: 1 + type: Transform + - uid: 9454 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 1 + type: Transform + - uid: 9455 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 9456 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 1 + type: Transform + - uid: 9457 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,10.5 + parent: 1 + type: Transform + - uid: 9458 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 9459 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 1 + type: Transform + - uid: 9460 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,7.5 + parent: 1 + type: Transform + - uid: 9461 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 1 + type: Transform + - uid: 9462 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,6.5 + parent: 1 + type: Transform + - uid: 9463 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 1 + type: Transform + - uid: 9464 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 9465 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,5.5 + parent: 1 + type: Transform + - uid: 9466 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 9467 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 1 + type: Transform + - uid: 9468 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 1 + type: Transform + - uid: 9469 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 1 + type: Transform + - uid: 9741 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,16.5 + parent: 1 + type: Transform + - uid: 9742 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,18.5 + parent: 1 + type: Transform + - uid: 9743 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,19.5 + parent: 1 + type: Transform + - uid: 9744 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,18.5 + parent: 1 + type: Transform + - uid: 9745 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,19.5 + parent: 1 + type: Transform + - uid: 9746 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,19.5 + parent: 1 + type: Transform + - uid: 9747 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,18.5 + parent: 1 + type: Transform + - uid: 9748 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,19.5 + parent: 1 + type: Transform + - uid: 9749 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,19.5 + parent: 1 + type: Transform + - uid: 9750 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 9751 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,23.5 + parent: 1 + type: Transform + - uid: 9752 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,24.5 + parent: 1 + type: Transform + - uid: 9753 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 1 + type: Transform + - uid: 9754 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,22.5 + parent: 1 + type: Transform + - uid: 9755 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 1 + type: Transform + - uid: 9756 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,23.5 + parent: 1 + type: Transform + - uid: 9757 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 1 + type: Transform + - uid: 9758 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,23.5 + parent: 1 + type: Transform + - uid: 9759 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,26.5 + parent: 1 + type: Transform + - uid: 9760 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,27.5 + parent: 1 + type: Transform + - uid: 9761 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 1 + type: Transform + - uid: 9762 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,27.5 + parent: 1 + type: Transform + - uid: 9763 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 1 + type: Transform + - uid: 9764 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 9765 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,28.5 + parent: 1 + type: Transform + - uid: 9766 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,28.5 + parent: 1 + type: Transform + - uid: 9767 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,29.5 + parent: 1 + type: Transform + - uid: 9768 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 1 + type: Transform + - uid: 9769 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 1 + type: Transform + - uid: 9770 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,25.5 + parent: 1 + type: Transform + - uid: 9771 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,24.5 + parent: 1 + type: Transform + - uid: 9772 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,24.5 + parent: 1 + type: Transform + - uid: 9773 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,25.5 + parent: 1 + type: Transform + - uid: 9774 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,23.5 + parent: 1 + type: Transform + - uid: 9775 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,25.5 + parent: 1 + type: Transform + - uid: 9776 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 1 + type: Transform + - uid: 9777 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1 + type: Transform + - uid: 9778 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,24.5 + parent: 1 + type: Transform + - uid: 9779 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,22.5 + parent: 1 + type: Transform + - uid: 9780 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,21.5 + parent: 1 + type: Transform + - uid: 9781 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,20.5 + parent: 1 + type: Transform + - uid: 9782 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 9783 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 1 + type: Transform + - uid: 9784 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,17.5 + parent: 1 + type: Transform + - uid: 9785 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,22.5 + parent: 1 + type: Transform + - uid: 9786 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,24.5 + parent: 1 + type: Transform + - uid: 9787 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 1 + type: Transform + - uid: 9788 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 9789 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,19.5 + parent: 1 + type: Transform + - uid: 9790 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,18.5 + parent: 1 + type: Transform + - uid: 9791 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 1 + type: Transform + - uid: 9792 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,18.5 + parent: 1 + type: Transform + - uid: 9793 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,18.5 + parent: 1 + type: Transform + - uid: 9794 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,18.5 + parent: 1 + type: Transform + - uid: 9795 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 9796 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,15.5 + parent: 1 + type: Transform + - uid: 9797 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,14.5 + parent: 1 + type: Transform + - uid: 9798 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,12.5 + parent: 1 + type: Transform + - uid: 9799 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 9800 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 9801 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 9802 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 1 + type: Transform + - uid: 9803 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 1 + type: Transform + - uid: 9804 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,28.5 + parent: 1 + type: Transform + - uid: 9805 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 10090 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 1 + type: Transform + - uid: 12516 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-32.5 + parent: 1 + type: Transform +- proto: Cautery + entities: + - uid: 8244 + components: + - pos: -24.632475,20.505098 + parent: 1 + type: Transform + - uid: 9628 + components: + - pos: 16.576576,27.750107 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1 + type: Transform + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 1839 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 1893 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - uid: 1894 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + type: Transform + - uid: 1895 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + type: Transform + - uid: 1899 + components: + - rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 1 + type: Transform + - uid: 1900 + components: + - rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 1 + type: Transform + - uid: 1901 + components: + - rot: 3.141592653589793 rad + pos: -19.5,8.5 + parent: 1 + type: Transform + - uid: 3210 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 1 + type: Transform + - uid: 3211 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 1 + type: Transform + - uid: 3212 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,8.5 + parent: 1 + type: Transform + - uid: 3801 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 3802 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 3803 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 4845 + components: + - rot: 3.141592653589793 rad + pos: 39.5,27.5 + parent: 1 + type: Transform + - uid: 4846 + components: + - rot: 3.141592653589793 rad + pos: 40.5,27.5 + parent: 1 + type: Transform + - uid: 4847 + components: + - rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 1 + type: Transform + - uid: 4848 + components: + - rot: 3.141592653589793 rad + pos: 44.5,27.5 + parent: 1 + type: Transform + - uid: 4849 + components: + - rot: 3.141592653589793 rad + pos: 45.5,27.5 + parent: 1 + type: Transform + - uid: 4850 + components: + - rot: 3.141592653589793 rad + pos: 46.5,27.5 + parent: 1 + type: Transform + - uid: 4851 + components: + - rot: 3.141592653589793 rad + pos: 41.5,25.5 + parent: 1 + type: Transform + - uid: 4852 + components: + - rot: 3.141592653589793 rad + pos: 42.5,25.5 + parent: 1 + type: Transform + - uid: 4853 + components: + - rot: 3.141592653589793 rad + pos: 43.5,25.5 + parent: 1 + type: Transform + - uid: 4854 + components: + - rot: 3.141592653589793 rad + pos: 44.5,25.5 + parent: 1 + type: Transform + - uid: 4910 + components: + - pos: 46.5,34.5 + parent: 1 + type: Transform + - uid: 5538 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 1 + type: Transform + - uid: 5539 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,9.5 + parent: 1 + type: Transform + - uid: 5540 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,10.5 + parent: 1 + type: Transform + - uid: 5541 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 1 + type: Transform + - uid: 5542 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,18.5 + parent: 1 + type: Transform + - uid: 5543 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,19.5 + parent: 1 + type: Transform + - uid: 5544 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 1 + type: Transform + - uid: 5545 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,17.5 + parent: 1 + type: Transform + - uid: 5546 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,18.5 + parent: 1 + type: Transform + - uid: 5549 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,3.5 + parent: 1 + type: Transform + - uid: 5550 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1 + type: Transform + - uid: 5559 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,20.5 + parent: 1 + type: Transform + - uid: 5572 + components: + - pos: -39.5,-4.5 + parent: 1 + type: Transform + - uid: 7501 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - uid: 7502 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + type: Transform + - uid: 7503 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + type: Transform + - uid: 7505 + components: + - pos: 2.5,-30.5 + parent: 1 + type: Transform + - uid: 7506 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-32.5 + parent: 1 + type: Transform + - uid: 7510 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,3.5 + parent: 1 + type: Transform + - uid: 7511 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,3.5 + parent: 1 + type: Transform + - uid: 7512 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - uid: 7513 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - uid: 7514 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,6.5 + parent: 1 + type: Transform + - uid: 7515 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 1 + type: Transform + - uid: 7516 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,8.5 + parent: 1 + type: Transform + - uid: 7517 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,9.5 + parent: 1 + type: Transform + - uid: 7518 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,10.5 + parent: 1 + type: Transform + - uid: 7519 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 1 + type: Transform + - uid: 7520 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - uid: 7521 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,7.5 + parent: 1 + type: Transform + - uid: 7522 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 1 + type: Transform + - uid: 7523 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,9.5 + parent: 1 + type: Transform + - uid: 8892 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 8895 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 1 + type: Transform + - uid: 8898 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 1 + type: Transform + - uid: 8899 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 9141 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 9165 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 1 + type: Transform + - uid: 9232 + components: + - rot: 3.141592653589793 rad + pos: 24.5,32.5 + parent: 1 + type: Transform + - uid: 9234 + components: + - rot: 3.141592653589793 rad + pos: 23.5,32.5 + parent: 1 + type: Transform + - uid: 9235 + components: + - rot: 3.141592653589793 rad + pos: 22.5,32.5 + parent: 1 + type: Transform + - uid: 9236 + components: + - rot: 3.141592653589793 rad + pos: 25.5,32.5 + parent: 1 + type: Transform + - uid: 9237 + components: + - pos: 27.5,35.5 + parent: 1 + type: Transform + - uid: 9238 + components: + - pos: 28.5,35.5 + parent: 1 + type: Transform + - uid: 9239 + components: + - pos: 29.5,35.5 + parent: 1 + type: Transform + - uid: 9316 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 1 + type: Transform + - uid: 9361 + components: + - rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 1 + type: Transform + - uid: 9362 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,22.5 + parent: 1 + type: Transform + - uid: 9367 + components: + - pos: 12.5,30.5 + parent: 1 + type: Transform + - uid: 9383 + components: + - rot: 3.141592653589793 rad + pos: 23.5,20.5 + parent: 1 + type: Transform + - uid: 9528 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 9529 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 9540 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,7.5 + parent: 1 + type: Transform + - uid: 9701 + components: + - rot: 3.141592653589793 rad + pos: -35.5,18.5 + parent: 1 + type: Transform + - uid: 9705 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 9706 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 9712 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform +- proto: ChairCursed + entities: + - uid: 8763 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-24.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 1812 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 1 + type: Transform + - uid: 1813 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 1 + type: Transform + - uid: 3449 + components: + - rot: 3.141592653589793 rad + pos: -37.5,5.5 + parent: 1 + type: Transform + - uid: 3450 + components: + - rot: 3.141592653589793 rad + pos: -37.5,6.5 + parent: 1 + type: Transform + - uid: 3451 + components: + - rot: 3.141592653589793 rad + pos: -37.5,7.5 + parent: 1 + type: Transform + - uid: 3452 + components: + - rot: 3.141592653589793 rad + pos: -37.5,8.5 + parent: 1 + type: Transform + - uid: 3453 + components: + - rot: 3.141592653589793 rad + pos: -36.5,5.5 + parent: 1 + type: Transform + - uid: 3454 + components: + - rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 1 + type: Transform + - uid: 3455 + components: + - rot: 3.141592653589793 rad + pos: -36.5,7.5 + parent: 1 + type: Transform + - uid: 3456 + components: + - rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 1 + type: Transform + - uid: 3457 + components: + - rot: 3.141592653589793 rad + pos: -32.5,8.5 + parent: 1 + type: Transform + - uid: 3458 + components: + - rot: 3.141592653589793 rad + pos: -32.5,7.5 + parent: 1 + type: Transform + - uid: 3459 + components: + - rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 1 + type: Transform + - uid: 3460 + components: + - rot: 3.141592653589793 rad + pos: -32.5,5.5 + parent: 1 + type: Transform + - uid: 3461 + components: + - rot: 3.141592653589793 rad + pos: -31.5,8.5 + parent: 1 + type: Transform + - uid: 3462 + components: + - rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 1 + type: Transform + - uid: 3463 + components: + - rot: 3.141592653589793 rad + pos: -31.5,6.5 + parent: 1 + type: Transform + - uid: 3464 + components: + - rot: 3.141592653589793 rad + pos: -31.5,5.5 + parent: 1 + type: Transform + - uid: 3465 + components: + - rot: 3.141592653589793 rad + pos: -31.5,10.5 + parent: 1 + type: Transform + - uid: 3466 + components: + - pos: -34.5,10.5 + parent: 1 + type: Transform + - uid: 5570 + components: + - pos: -40.5,-4.5 + parent: 1 + type: Transform + - uid: 5571 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 1 + type: Transform + - uid: 8803 + components: + - pos: -38.5,-22.5 + parent: 1 + type: Transform + - uid: 8804 + components: + - pos: -37.5,-22.5 + parent: 1 + type: Transform + - uid: 8810 + components: + - pos: -42.5,-16.5 + parent: 1 + type: Transform + - uid: 8811 + components: + - pos: -43.5,-14.5 + parent: 1 + type: Transform + - uid: 8812 + components: + - pos: -42.5,-14.5 + parent: 1 + type: Transform + - uid: 8813 + components: + - pos: -41.5,-14.5 + parent: 1 + type: Transform + - uid: 8814 + components: + - pos: -40.5,-14.5 + parent: 1 + type: Transform + - uid: 8893 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 1 + type: Transform + - uid: 8896 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 8897 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 9142 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-18.5 + parent: 1 + type: Transform + - uid: 9166 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-1.5 + parent: 1 + type: Transform + - uid: 9360 + components: + - rot: 3.141592653589793 rad + pos: 16.5,17.5 + parent: 1 + type: Transform + - uid: 9539 + components: + - pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 9703 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 9708 + components: + - pos: -22.5,29.5 + parent: 1 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 8801 + components: + - pos: -40.497337,-24.45458 + parent: 1 + type: Transform + - uid: 8802 + components: + - pos: -40.481712,-24.251455 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 778 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + type: Transform + - uid: 779 + components: + - pos: 14.5,13.5 + parent: 1 + type: Transform + - uid: 1710 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 1 + type: Transform + - uid: 1875 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - uid: 2868 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 1 + type: Transform + - uid: 3914 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,51.5 + parent: 1 + type: Transform + - uid: 3915 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + type: Transform + - uid: 3916 + components: + - rot: 3.141592653589793 rad + pos: -6.5,55.5 + parent: 1 + type: Transform + - uid: 3917 + components: + - pos: -4.5,49.5 + parent: 1 + type: Transform + - uid: 4053 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 + type: Transform + - uid: 4054 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,28.5 + parent: 1 + type: Transform + - uid: 4055 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,27.5 + parent: 1 + type: Transform + - uid: 4056 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,27.5 + parent: 1 + type: Transform + - uid: 4057 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,28.5 + parent: 1 + type: Transform + - uid: 4058 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,29.5 + parent: 1 + type: Transform + - uid: 4078 + components: + - rot: 3.141592653589793 rad + pos: -2.5,31.5 + parent: 1 + type: Transform + - uid: 4079 + components: + - rot: 3.141592653589793 rad + pos: -1.5,31.5 + parent: 1 + type: Transform + - uid: 4080 + components: + - rot: 3.141592653589793 rad + pos: -4.5,30.5 + parent: 1 + type: Transform + - uid: 4081 + components: + - rot: 3.141592653589793 rad + pos: -5.5,30.5 + parent: 1 + type: Transform + - uid: 4082 + components: + - rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 1 + type: Transform + - uid: 4083 + components: + - rot: 3.141592653589793 rad + pos: 1.5,30.5 + parent: 1 + type: Transform + - uid: 4096 + components: + - pos: 4.5,28.5 + parent: 1 + type: Transform + - uid: 4902 + components: + - rot: 3.141592653589793 rad + pos: 40.5,30.5 + parent: 1 + type: Transform + - uid: 4903 + components: + - rot: 3.141592653589793 rad + pos: 41.5,30.5 + parent: 1 + type: Transform + - uid: 4904 + components: + - rot: 3.141592653589793 rad + pos: 44.5,30.5 + parent: 1 + type: Transform + - uid: 4905 + components: + - rot: 3.141592653589793 rad + pos: 45.5,30.5 + parent: 1 + type: Transform + - uid: 4912 + components: + - pos: 39.5,34.5 + parent: 1 + type: Transform + - uid: 4966 + components: + - pos: 0.5,19.5 + parent: 1 + type: Transform + - uid: 5332 + components: + - pos: 29.5,9.5 + parent: 1 + type: Transform + - uid: 5364 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + type: Transform + - uid: 5367 + components: + - rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 1 + type: Transform + - uid: 5375 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - uid: 5574 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-7.5 + parent: 1 + type: Transform + - uid: 5575 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - uid: 5673 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 1 + type: Transform + - uid: 5674 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 1 + type: Transform + - uid: 6394 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 6786 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + type: Transform + - uid: 7397 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform + - uid: 7398 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + type: Transform + - uid: 7399 + components: + - pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 8013 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1 + type: Transform + - uid: 8894 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 9317 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,23.5 + parent: 1 + type: Transform + - uid: 9385 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 1 + type: Transform + - uid: 9633 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 1 + type: Transform + - uid: 11749 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 1 + type: Transform + - uid: 12424 + components: + - pos: -6.5,-14.5 + parent: 1 + type: Transform + - uid: 12455 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 1874 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform + - uid: 5608 + components: + - rot: 3.141592653589793 rad + pos: -12.5,15.5 + parent: 1 + type: Transform + - uid: 5609 + components: + - rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 1 + type: Transform + - uid: 5610 + components: + - rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 1 + type: Transform + - uid: 5921 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform + - uid: 9143 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 9152 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 1 + type: Transform + - uid: 9162 + components: + - pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9366 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,30.5 + parent: 1 + type: Transform + - uid: 9547 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 9702 + components: + - rot: 3.141592653589793 rad + pos: -32.5,21.5 + parent: 1 + type: Transform + - uid: 9704 + components: + - rot: 3.141592653589793 rad + pos: -24.5,26.5 + parent: 1 + type: Transform +- proto: ChairRitual + entities: + - uid: 8761 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 1 + type: Transform + - uid: 8762 + components: + - pos: -41.5,-22.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 2031 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + type: Transform + - uid: 2787 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-50.5 + parent: 1 + type: Transform + - uid: 3448 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 1 + type: Transform + - uid: 5030 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 5033 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 5034 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 5037 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 5038 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 5046 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 5047 + components: + - rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 5048 + components: + - pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 5576 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 1 + type: Transform + - uid: 8301 + components: + - pos: -35.5,-15.5 + parent: 1 + type: Transform + - uid: 8302 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-17.5 + parent: 1 + type: Transform + - uid: 8303 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 1 + type: Transform + - uid: 8304 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + type: Transform + - uid: 8499 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 1 + type: Transform + - uid: 12523 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 5604 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - uid: 5605 + components: + - pos: -11.5,16.5 + parent: 1 + type: Transform +- proto: ChemDispenser + entities: + - uid: 5606 + components: + - pos: -12.5,16.5 + parent: 1 + type: Transform + - uid: 5612 + components: + - pos: -8.5,13.5 + parent: 1 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 5871 + components: + - pos: -11.5,13.5 + parent: 1 + type: Transform +- proto: ChessBoard + entities: + - uid: 5058 + components: + - rot: -1.5707963267948966 rad + pos: 3.502126,25.59834 + parent: 1 + type: Transform + - uid: 7657 + components: + - pos: 2.5021737,-31.407312 + parent: 1 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 3468 + components: + - rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 1 + type: Transform +- proto: CigarGoldCase + entities: + - uid: 4136 + components: + - pos: -3.2445543,23.545168 + parent: 1 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 3807 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetBase + entities: + - uid: 12521 + components: + - pos: -23.5,-28.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12522 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetChefFilled + entities: + - uid: 5963 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 3610 + components: + - pos: -9.5,46.5 + parent: 1 + type: Transform + - uid: 4085 + components: + - pos: -4.5,27.5 + parent: 1 + type: Transform + - uid: 5057 + components: + - pos: 3.5,18.5 + parent: 1 + type: Transform + - uid: 5562 + components: + - pos: 44.5,23.5 + parent: 1 + type: Transform + - uid: 5563 + components: + - pos: 46.5,3.5 + parent: 1 + type: Transform + - uid: 5565 + components: + - pos: 42.5,4.5 + parent: 1 + type: Transform + - uid: 6330 + components: + - pos: -20.5,-16.5 + parent: 1 + type: Transform + - uid: 7238 + components: + - pos: 5.5,-27.5 + parent: 1 + type: Transform + - uid: 7526 + components: + - pos: -39.5,13.5 + parent: 1 + type: Transform + - uid: 7647 + components: + - pos: -39.5,4.5 + parent: 1 + type: Transform + - uid: 8836 + components: + - pos: -34.5,-1.5 + parent: 1 + type: Transform + - uid: 8839 + components: + - pos: -24.5,-10.5 + parent: 1 + type: Transform + - uid: 8840 + components: + - pos: -10.5,-17.5 + parent: 1 + type: Transform + - uid: 8841 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 8844 + components: + - pos: 6.5,-12.5 + parent: 1 + type: Transform + - uid: 8845 + components: + - pos: 32.5,-13.5 + parent: 1 + type: Transform + - uid: 8849 + components: + - pos: 44.5,-1.5 + parent: 1 + type: Transform + - uid: 8902 + components: + - pos: -41.5,-12.5 + parent: 1 + type: Transform + - uid: 9173 + components: + - pos: 32.5,-7.5 + parent: 1 + type: Transform + - uid: 9247 + components: + - pos: 37.5,35.5 + parent: 1 + type: Transform + - uid: 9248 + components: + - pos: 36.5,35.5 + parent: 1 + type: Transform + - uid: 9345 + components: + - pos: 7.5,19.5 + parent: 1 + type: Transform + - uid: 9346 + components: + - pos: -4.5,17.5 + parent: 1 + type: Transform + - uid: 9347 + components: + - pos: -5.5,17.5 + parent: 1 + type: Transform + - uid: 9356 + components: + - pos: 8.5,33.5 + parent: 1 + type: Transform + - uid: 9379 + components: + - pos: 26.5,21.5 + parent: 1 + type: Transform + - uid: 9531 + components: + - pos: 41.5,17.5 + parent: 1 + type: Transform + - uid: 9534 + components: + - pos: 30.5,5.5 + parent: 1 + type: Transform + - uid: 9665 + components: + - pos: -31.5,25.5 + parent: 1 + type: Transform + - uid: 9668 + components: + - pos: -36.5,16.5 + parent: 1 + type: Transform + - uid: 9669 + components: + - pos: -29.5,6.5 + parent: 1 + type: Transform + - uid: 9672 + components: + - pos: -8.5,17.5 + parent: 1 + type: Transform + - uid: 12536 + components: + - pos: 21.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 4086 + components: + - pos: -5.5,27.5 + parent: 1 + type: Transform + - uid: 5056 + components: + - pos: 3.5,19.5 + parent: 1 + type: Transform + - uid: 5564 + components: + - pos: 46.5,4.5 + parent: 1 + type: Transform + - uid: 6100 + components: + - pos: -26.5,-7.5 + parent: 1 + type: Transform + - uid: 6331 + components: + - pos: -19.5,-16.5 + parent: 1 + type: Transform + - uid: 7239 + components: + - pos: 6.5,-27.5 + parent: 1 + type: Transform + - uid: 7530 + components: + - pos: -39.5,5.5 + parent: 1 + type: Transform + - uid: 8837 + components: + - pos: -33.5,-1.5 + parent: 1 + type: Transform + - uid: 8838 + components: + - pos: -24.5,-9.5 + parent: 1 + type: Transform + - uid: 8842 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 8843 + components: + - pos: 5.5,-12.5 + parent: 1 + type: Transform + - uid: 8846 + components: + - pos: 32.5,-14.5 + parent: 1 + type: Transform + - uid: 8850 + components: + - pos: 43.5,-1.5 + parent: 1 + type: Transform + - uid: 9174 + components: + - pos: 32.5,-6.5 + parent: 1 + type: Transform + - uid: 9249 + components: + - pos: 35.5,35.5 + parent: 1 + type: Transform + - uid: 9348 + components: + - pos: 7.5,20.5 + parent: 1 + type: Transform + - uid: 9380 + components: + - pos: 27.5,21.5 + parent: 1 + type: Transform + - uid: 9532 + components: + - pos: 42.5,17.5 + parent: 1 + type: Transform + - uid: 9533 + components: + - pos: 30.5,6.5 + parent: 1 + type: Transform + - uid: 9574 + components: + - pos: 46.5,23.5 + parent: 1 + type: Transform + - uid: 9666 + components: + - pos: -31.5,24.5 + parent: 1 + type: Transform + - uid: 9667 + components: + - pos: -36.5,15.5 + parent: 1 + type: Transform + - uid: 9670 + components: + - pos: -29.5,7.5 + parent: 1 + type: Transform + - uid: 9671 + components: + - pos: -8.5,16.5 + parent: 1 + type: Transform + - uid: 12537 + components: + - pos: 20.5,-0.5 + parent: 1 + type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 7659 + components: + - pos: 11.5,-2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7660 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3JanitorFilled + entities: + - uid: 7662 + components: + - pos: 11.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3057 + - 3056 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetL3VirologyFilled + entities: + - uid: 5694 + components: + - pos: -17.5,20.5 + parent: 1 + type: Transform + - uid: 5695 + components: + - pos: -17.5,19.5 + parent: 1 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 8851 + components: + - pos: -24.5,-11.5 + parent: 1 + type: Transform + - uid: 8854 + components: + - pos: -27.5,-22.5 + parent: 1 + type: Transform + - uid: 8855 + components: + - pos: -35.5,-19.5 + parent: 1 + type: Transform + - uid: 8856 + components: + - pos: -17.5,-20.5 + parent: 1 + type: Transform + - uid: 8857 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 8861 + components: + - pos: -33.5,-12.5 + parent: 1 + type: Transform + - uid: 8871 + components: + - pos: -36.5,-19.5 + parent: 1 + type: Transform + - uid: 8890 + components: + - pos: -6.5,-17.5 + parent: 1 + type: Transform + - uid: 9131 + components: + - pos: 7.5,-12.5 + parent: 1 + type: Transform + - uid: 9133 + components: + - pos: 14.5,-15.5 + parent: 1 + type: Transform + - uid: 9161 + components: + - pos: 40.5,-1.5 + parent: 1 + type: Transform + - uid: 9172 + components: + - pos: 32.5,-8.5 + parent: 1 + type: Transform + - uid: 9179 + components: + - pos: 23.5,-0.5 + parent: 1 + type: Transform + - uid: 9242 + components: + - pos: 29.5,32.5 + parent: 1 + type: Transform + - uid: 9253 + components: + - pos: 35.5,32.5 + parent: 1 + type: Transform + - uid: 9349 + components: + - pos: 7.5,25.5 + parent: 1 + type: Transform + - uid: 9353 + components: + - pos: 17.5,17.5 + parent: 1 + type: Transform + - uid: 9357 + components: + - pos: 8.5,32.5 + parent: 1 + type: Transform + - uid: 9364 + components: + - pos: 21.5,28.5 + parent: 1 + type: Transform + - uid: 9381 + components: + - pos: 25.5,21.5 + parent: 1 + type: Transform + - uid: 9530 + components: + - pos: 40.5,17.5 + parent: 1 + type: Transform + - uid: 9673 + components: + - pos: -36.5,17.5 + parent: 1 + type: Transform + - uid: 9674 + components: + - pos: -29.5,8.5 + parent: 1 + type: Transform + - uid: 9675 + components: + - pos: -19.5,18.5 + parent: 1 + type: Transform + - uid: 9676 + components: + - pos: -29.5,27.5 + parent: 1 + type: Transform + - uid: 9677 + components: + - pos: -19.5,29.5 + parent: 1 + type: Transform + - uid: 9678 + components: + - pos: -15.5,25.5 + parent: 1 + type: Transform + - uid: 9707 + components: + - pos: -7.5,24.5 + parent: 1 + type: Transform + - uid: 9734 + components: + - pos: -34.5,21.5 + parent: 1 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6099 + components: + - pos: -27.5,-7.5 + parent: 1 + type: Transform + - uid: 6332 + components: + - pos: -18.5,-16.5 + parent: 1 + type: Transform + - uid: 9679 + components: + - pos: -19.5,19.5 + parent: 1 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 662 + components: + - pos: -12.5,-14.5 + parent: 1 + type: Transform + - uid: 8852 + components: + - pos: -33.5,-13.5 + parent: 1 + type: Transform + - uid: 9137 + components: + - pos: 28.5,-13.5 + parent: 1 + type: Transform + - uid: 9171 + components: + - pos: 41.5,-1.5 + parent: 1 + type: Transform +- proto: ClothingBackpackClown + entities: + - uid: 7791 + components: + - pos: -9.479882,-29.613472 + parent: 1 + type: Transform +- proto: ClothingBeltChampion + entities: + - uid: 4133 + components: + - pos: -2.0726793,23.701418 + parent: 1 + type: Transform +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 9624 + components: + - pos: 16.498451,25.579258 + parent: 1 + type: Transform +- proto: ClothingBeltUtilityFilled + entities: + - uid: 6028 + components: + - pos: -17.427578,-2.5386095 + parent: 1 + type: Transform + - uid: 8222 + components: + - pos: -3.2247663,-20.380867 + parent: 1 + type: Transform +- proto: ClothingEyesEyepatch + entities: + - uid: 9493 + components: + - pos: 17.334412,33.640858 + parent: 1 + type: Transform + - uid: 9494 + components: + - pos: 17.537537,33.500233 + parent: 1 + type: Transform +- proto: ClothingEyesGlasses + entities: + - uid: 5887 + components: + - pos: -17.56469,5.4986477 + parent: 1 + type: Transform + - uid: 6051 + components: + - pos: -16.578178,-4.4178576 + parent: 1 + type: Transform + - uid: 6052 + components: + - pos: -16.593803,-4.1209826 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 8820 + components: + - pos: -43.5167,-17.531178 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 8821 + components: + - pos: -40.42295,-17.562428 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 8822 + components: + - pos: -43.532326,-20.546803 + parent: 1 + type: Transform + - uid: 8823 + components: + - pos: -40.469826,-20.531178 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 9319 + components: + - pos: 12.551676,20.51373 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorPurple + entities: + - uid: 3056 + components: + - flags: InContainer + type: MetaData + - parent: 7662 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 3057 + components: + - flags: InContainer + type: MetaData + - parent: 7662 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8230 + components: + - pos: -2.3917544,-20.443367 + parent: 1 + type: Transform + - uid: 9521 + components: + - pos: -4.5182076,-31.477982 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesCombat + entities: + - uid: 7138 + components: + - pos: 33.449986,-18.355843 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesLatex + entities: + - uid: 5348 + components: + - pos: 23.541037,5.5013475 + parent: 1 + type: Transform + - uid: 9644 + components: + - pos: -25.418951,24.343168 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 5874 + components: + - pos: -22.4964,13.596224 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 12284 + components: + - pos: 46.50932,-1.5721288 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesRobohands + entities: + - uid: 6074 + components: + - pos: -9.486496,-13.051972 + parent: 1 + type: Transform +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 9326 + components: + - pos: -13.503023,28.53958 + parent: 1 + type: Transform +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 12535 + components: + - pos: -21.389526,-28.408783 + parent: 1 + type: Transform +- proto: ClothingHeadHatHairflower + entities: + - uid: 4135 + components: + - pos: -3.6820545,23.685793 + parent: 1 + type: Transform +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 8797 + components: + - pos: -39.669212,-24.282705 + parent: 1 + type: Transform + - uid: 8798 + components: + - pos: -39.466087,-24.282705 + parent: 1 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 9489 + components: + - pos: 16.834412,33.453358 + parent: 1 + type: Transform + - uid: 9490 + components: + - pos: 16.725037,33.656483 + parent: 1 + type: Transform +- proto: ClothingHeadHatRichard + entities: + - uid: 12539 + components: + - pos: -18.568806,-30.46414 + parent: 1 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 8908 + components: + - pos: -38.506927,-17.413034 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 9328 + components: + - pos: -14.628023,27.492704 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 9327 + components: + - pos: -14.268648,27.648954 + parent: 1 + type: Transform +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 9718 + components: + - pos: -23.488003,26.56069 + parent: 1 + type: Transform +- proto: ClothingHeadHatWitch1 + entities: + - uid: 7546 + components: + - pos: -35.132103,11.605273 + parent: 1 + type: Transform + - uid: 8280 + components: + - pos: -24.502247,-20.155039 + parent: 1 + type: Transform +- proto: ClothingMaskClown + entities: + - uid: 7790 + components: + - pos: -9.354882,-29.035347 + parent: 1 + type: Transform +- proto: ClothingMaskGasCentcom + entities: + - uid: 9014 + components: + - pos: -22.500423,-8.478397 + parent: 1 + type: Transform +- proto: ClothingMaskGasSecurity + entities: + - uid: 9321 + components: + - pos: 12.497511,21.52373 + parent: 1 + type: Transform +- proto: ClothingMaskSterile + entities: + - uid: 5349 + components: + - pos: 23.509787,5.6575975 + parent: 1 + type: Transform + - uid: 9645 + components: + - pos: -25.575201,24.655668 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCap + entities: + - uid: 6397 + components: + - pos: 4.585783,31.487268 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCE + entities: + - uid: 5675 + components: + - pos: 18.495747,-13.358288 + parent: 1 + type: Transform +- proto: ClothingNeckMantleCMO + entities: + - uid: 1869 + components: + - pos: -20.496048,14.567978 + parent: 1 + type: Transform +- proto: ClothingNeckMantleHOP + entities: + - uid: 5927 + components: + - flags: InContainer + type: MetaData + - parent: 4965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingNeckMantleRD + entities: + - uid: 1877 + components: + - pos: -22.452333,-1.4018333 + parent: 1 + type: Transform +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 5883 + components: + - pos: -20.521955,5.5536256 + parent: 1 + type: Transform +- proto: ClothingNeckStethoscope + entities: + - uid: 5889 + components: + - pos: -14.496586,5.5848756 + parent: 1 + type: Transform +- proto: ClothingNeckTieRed + entities: + - uid: 12534 + components: + - pos: -21.717651,-29.127533 + parent: 1 + type: Transform +- proto: ClothingOuterCoatBomber + entities: + - uid: 7807 + components: + - pos: -3.4980807,-28.439547 + parent: 1 + type: Transform +- proto: ClothingOuterCoatInspector + entities: + - uid: 12524 + components: + - pos: -21.321499,-29.42984 + parent: 1 + type: Transform +- proto: ClothingOuterCoatJensen + entities: + - uid: 9322 + components: + - pos: -24.505365,-15.407537 + parent: 1 + type: Transform +- proto: ClothingOuterCoatPirate + entities: + - uid: 9487 + components: + - pos: 14.396911,32.515858 + parent: 1 + type: Transform + - uid: 9488 + components: + - pos: 14.615661,32.578358 + parent: 1 + type: Transform +- proto: ClothingOuterRobesCult + entities: + - uid: 8799 + components: + - pos: -39.591087,-24.532705 + parent: 1 + type: Transform + - uid: 8800 + components: + - pos: -39.356712,-24.532705 + parent: 1 + type: Transform +- proto: ClothingOuterWinterCap + entities: + - uid: 5926 + components: + - flags: InContainer + type: MetaData + - parent: 4090 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterCE + entities: + - uid: 5670 + components: + - flags: InContainer + type: MetaData + - parent: 5669 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterCMO + entities: + - uid: 1868 + components: + - flags: InContainer + type: MetaData + - parent: 1867 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterHoP + entities: + - uid: 5928 + components: + - flags: InContainer + type: MetaData + - parent: 4965 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterHoS + entities: + - uid: 12478 + components: + - flags: InContainer + type: MetaData + - parent: 5374 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterQM + entities: + - uid: 7444 + components: + - flags: InContainer + type: MetaData + - parent: 7443 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterWinterRD + entities: + - uid: 12418 + components: + - flags: InContainer + type: MetaData + - parent: 1845 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingShoesBootsCombat + entities: + - uid: 8275 + components: + - desc: Robust pilot's boots for combat scenarios or combat situations. All combat, all the time. + name: pilot's boots + type: MetaData + - pos: -19.507818,-48.36427 + parent: 1 + type: Transform +- proto: ClothingShoesBootsJack + entities: + - uid: 9320 + components: + - pos: 14.338758,21.725782 + parent: 1 + type: Transform + - uid: 9497 + components: + - pos: 14.573133,21.522657 + parent: 1 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 4922 + components: + - pos: 39.41031,21.404913 + parent: 1 + type: Transform + - uid: 4928 + components: + - pos: 39.613434,21.529913 + parent: 1 + type: Transform + - uid: 7137 + components: + - pos: 31.59061,-16.652718 + parent: 1 + type: Transform +- proto: ClothingUniformColorRainbow + entities: + - uid: 8279 + components: + - pos: -24.486622,-20.530039 + parent: 1 + type: Transform +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 9622 + components: + - pos: 15.393528,25.548008 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 9623 + components: + - pos: 15.721653,25.376133 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 9491 + components: + - pos: 14.350036,33.375233 + parent: 1 + type: Transform + - uid: 9492 + components: + - pos: 14.662536,33.531483 + parent: 1 + type: Transform +- proto: ClownRecorder + entities: + - uid: 8274 + components: + - pos: -9.689836,-28.97975 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 1711 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform + - uid: 1873 + components: + - rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 1 + type: Transform + - uid: 1876 + components: + - pos: -21.5,-0.5 + parent: 1 + type: Transform + - uid: 2866 + components: + - pos: -15.5,-53.5 + parent: 1 + type: Transform + - uid: 2867 + components: + - pos: -13.5,-53.5 + parent: 1 + type: Transform + - uid: 4304 + components: + - pos: -9.5,30.5 + parent: 1 + type: Transform + - uid: 4911 + components: + - pos: 42.5,34.5 + parent: 1 + type: Transform + - uid: 5039 + components: + - rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 5053 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 1 + type: Transform + - uid: 5054 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1 + type: Transform + - uid: 5377 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 1 + type: Transform + - uid: 5573 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 1 + type: Transform + - uid: 5953 + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 7712 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 1 + type: Transform + - uid: 8232 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 1 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 6123 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 1 + type: Transform + - linkedPorts: + 6124: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: ComputerCargoBounty + entities: + - uid: 7247 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 1 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 4919 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 1 + type: Transform + - uid: 7395 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + type: Transform +- proto: ComputerCargoShuttle + entities: + - uid: 4918 + components: + - pos: 8.5,-19.5 + parent: 1 + type: Transform +- proto: ComputerComms + entities: + - uid: 4076 + components: + - pos: -1.5,32.5 + parent: 1 + type: Transform + - uid: 4097 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 1888 + components: + - rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 1 + type: Transform + - uid: 4074 + components: + - pos: -4.5,31.5 + parent: 1 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 776 + components: + - pos: 14.5,15.5 + parent: 1 + type: Transform + - uid: 5366 + components: + - pos: 25.5,14.5 + parent: 1 + type: Transform + - uid: 5370 + components: + - pos: 28.5,18.5 + parent: 1 + type: Transform +- proto: ComputerFrame + entities: + - uid: 2685 + components: + - rot: 3.141592653589793 rad + pos: -4.5,48.5 + parent: 1 + type: Transform + - uid: 2752 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - uid: 2757 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,51.5 + parent: 1 + type: Transform + - uid: 2765 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,53.5 + parent: 1 + type: Transform + - uid: 5904 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 1 + type: Transform +- proto: ComputerId + entities: + - uid: 4070 + components: + - pos: -2.5,32.5 + parent: 1 + type: Transform + - uid: 4955 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 1871 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,13.5 + parent: 1 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 4072 + components: + - pos: -5.5,31.5 + parent: 1 + type: Transform + - uid: 5415 + components: + - pos: 19.5,-13.5 + parent: 1 + type: Transform + - uid: 5668 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 7282 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 1 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 3805 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 5365 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 1 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 5667 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 1 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 1723 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 1 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 2557 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,30.5 + parent: 1 + type: Transform + - uid: 2931 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-51.5 + parent: 1 + type: Transform + - uid: 4807 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-23.5 + parent: 1 + type: Transform + - uid: 6760 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 774 + components: + - pos: 15.5,15.5 + parent: 1 + type: Transform + - uid: 4073 + components: + - pos: 0.5,31.5 + parent: 1 + type: Transform + - uid: 4959 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + type: Transform + - uid: 5360 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,5.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 777 + components: + - rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 1 + type: Transform + - uid: 3794 + components: + - pos: 1.5,55.5 + parent: 1 + type: Transform + - uid: 4071 + components: + - pos: 1.5,31.5 + parent: 1 + type: Transform + - uid: 5313 + components: + - rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - uid: 5363 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 1 + type: Transform + - uid: 5369 + components: + - pos: 26.5,14.5 + parent: 1 + type: Transform +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 3822 + components: + - pos: -14.5,-4.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 1730 + components: + - pos: 10.5,-31.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1731 + components: + - pos: 10.5,-30.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1732 + components: + - pos: 10.5,-29.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1733 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1734 + components: + - pos: 10.5,-27.5 + parent: 1 + type: Transform + - links: + - 7429 + type: DeviceLinkSink + - uid: 1735 + components: + - pos: 14.5,-31.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1736 + components: + - pos: 14.5,-30.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1737 + components: + - pos: 14.5,-29.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1738 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1739 + components: + - pos: 14.5,-27.5 + parent: 1 + type: Transform + - links: + - 7430 + type: DeviceLinkSink + - uid: 1740 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 1 + type: Transform + - links: + - 7431 + type: DeviceLinkSink + - uid: 1741 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 1 + type: Transform + - links: + - 7431 + type: DeviceLinkSink + - uid: 1742 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 1 + type: Transform + - links: + - 7431 + type: DeviceLinkSink + - uid: 3563 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3564 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,25.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3565 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,25.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3566 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,25.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3567 + components: + - rot: 3.141592653589793 rad + pos: -33.5,24.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3568 + components: + - rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink + - uid: 3569 + components: + - rot: 3.141592653589793 rad + pos: -33.5,22.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink +- proto: CowToolboxFilled + entities: + - uid: 12285 + components: + - pos: 47.516796,-12.569088 + parent: 1 + type: Transform +- proto: CrateArtifactContainer + entities: + - uid: 3823 + components: + - pos: -14.5,-18.5 + parent: 1 + type: Transform + - uid: 6327 + components: + - pos: -15.5,-18.5 + parent: 1 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 1529 + components: + - pos: 21.5,-26.5 + parent: 1 + type: Transform + - uid: 7427 + components: + - pos: 16.5,-26.5 + parent: 1 + type: Transform + - uid: 7428 + components: + - pos: 17.5,-27.5 + parent: 1 + type: Transform + - uid: 9365 + components: + - pos: 21.5,29.5 + parent: 1 + type: Transform + - uid: 9374 + components: + - pos: 17.5,32.5 + parent: 1 + type: Transform + - uid: 9548 + components: + - pos: 36.5,5.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 6773 + components: + - pos: 29.5,-8.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEShielding + entities: + - uid: 6774 + components: + - pos: 29.5,-7.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6775 + - 6776 + - 6777 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: CrateEngineeringCableBulk + entities: + - uid: 1136 + components: + - pos: 18.5,-3.5 + parent: 1 + type: Transform + - uid: 2524 + components: + - pos: -29.5,-22.5 + parent: 1 + type: Transform +- proto: CrateEngineeringCableHV + entities: + - uid: 2556 + components: + - pos: -26.5,29.5 + parent: 1 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 1512 + components: + - pos: 18.5,-26.5 + parent: 1 + type: Transform + - uid: 7285 + components: + - pos: 20.5,-27.5 + parent: 1 + type: Transform + - uid: 7296 + components: + - pos: 22.5,-26.5 + parent: 1 + type: Transform + - uid: 8284 + components: + - pos: -23.5,-24.5 + parent: 1 + type: Transform + - uid: 8824 + components: + - pos: -25.5,-25.5 + parent: 1 + type: Transform + - uid: 9245 + components: + - pos: 28.5,32.5 + parent: 1 + type: Transform + - uid: 9685 + components: + - pos: -20.5,29.5 + parent: 1 + type: Transform +- proto: CrateFreezer + entities: + - uid: 5911 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 6008 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 5520 + components: + - pos: -22.5,24.5 + parent: 1 + type: Transform +- proto: CrateNPCCow + entities: + - uid: 5971 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - open: True + removedMasks: 28 + type: EntityStorage + - fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 135 + hard: True + restitution: 0 + friction: 0.4 + type: Fixtures + - isPlaceable: True + type: PlaceableSurface +- proto: CrateNPCHamlet + entities: + - uid: 7180 + components: + - pos: -3.5,30.5 + parent: 1 + type: Transform +- proto: CrateSecurityRiot + entities: + - uid: 8344 + components: + - pos: 23.5,14.5 + parent: 1 + type: Transform +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 7661 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform +- proto: CrayonBox + entities: + - uid: 6041 + components: + - pos: -9.510162,-31.109522 + parent: 1 + type: Transform +- proto: CrayonMime + entities: + - uid: 7787 + components: + - pos: -13.70612,-29.090147 + parent: 1 + type: Transform + - uid: 7788 + components: + - pos: -13.596745,-29.121397 + parent: 1 + type: Transform +- proto: Crematorium + entities: + - uid: 3477 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,15.5 + parent: 1 + type: Transform +- proto: CrewMonitoringServer + entities: + - uid: 3773 + components: + - pos: 1.5,49.5 + parent: 1 + type: Transform +- proto: CrewMonitoringServerMachineCircuitboard + entities: + - uid: 4007 + components: + - pos: -2.4571166,54.52544 + parent: 1 + type: Transform +- proto: CrowbarRed + entities: + - uid: 5601 + components: + - pos: -23.451687,5.4552503 + parent: 1 + type: Transform + - uid: 6336 + components: + - pos: -14.519168,-9.104249 + parent: 1 + type: Transform + - uid: 9580 + components: + - pos: 46.50183,2.500444 + parent: 1 + type: Transform + - uid: 9581 + components: + - pos: 46.673706,2.406694 + parent: 1 + type: Transform + - uid: 9582 + components: + - pos: 44.47058,20.50442 + parent: 1 + type: Transform + - uid: 9583 + components: + - pos: 44.673706,20.41067 + parent: 1 + type: Transform + - uid: 12526 + components: + - pos: -21.430874,-29.30484 + parent: 1 + type: Transform +- proto: CultAltarSpawner + entities: + - uid: 8760 + components: + - pos: -41.5,-23.5 + parent: 1 + type: Transform +- proto: d20Dice + entities: + - uid: 5591 + components: + - pos: -39.55801,-5.7503414 + parent: 1 + type: Transform +- proto: d8Dice + entities: + - uid: 5592 + components: + - pos: -40.636135,-6.3128414 + parent: 1 + type: Transform +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 7803 + components: + - pos: -11.479882,-31.566597 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 328 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,16.5 + parent: 1 + type: Transform + - uid: 8372 + components: + - rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 1 + type: Transform + - uid: 8373 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 9831 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 12543 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 12551 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + type: Transform + - uid: 12552 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-27.5 + parent: 1 + type: Transform + - uid: 12554 + components: + - pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 12555 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 12556 + components: + - pos: 35.5,4.5 + parent: 1 + type: Transform + - uid: 12557 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 12558 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 12559 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,23.5 + parent: 1 + type: Transform + - uid: 12561 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,25.5 + parent: 1 + type: Transform + - uid: 12607 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,23.5 + parent: 1 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 760 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - uid: 761 + components: + - pos: 22.5,12.5 + parent: 1 + type: Transform + - uid: 763 + components: + - pos: 23.5,12.5 + parent: 1 + type: Transform + - uid: 1842 + components: + - pos: 23.5,10.5 + parent: 1 + type: Transform +- proto: DeskBell + entities: + - uid: 5453 + components: + - pos: 13.386117,14.75304 + parent: 1 + type: Transform + - uid: 5454 + components: + - pos: 0.7052691,18.503328 + parent: 1 + type: Transform + - uid: 5455 + components: + - pos: -8.312405,12.452121 + parent: 1 + type: Transform + - uid: 5456 + components: + - pos: -8.23428,7.664645 + parent: 1 + type: Transform + - uid: 5457 + components: + - pos: -8.258537,-4.530675 + parent: 1 + type: Transform + - uid: 5458 + components: + - pos: -12.205997,12.431334 + parent: 1 + type: Transform + - uid: 8486 + components: + - pos: 12.719743,-9.462604 + parent: 1 + type: Transform + - uid: 8487 + components: + - pos: 3.1651187,7.7825413 + parent: 1 + type: Transform + - uid: 8488 + components: + - pos: 7.4230685,-21.500029 + parent: 1 + type: Transform + - uid: 8489 + components: + - pos: -36.9685,-2.2472436 + parent: 1 + type: Transform + - uid: 8494 + components: + - pos: 3.247385,4.510758 + parent: 1 + type: Transform + - uid: 8498 + components: + - pos: 3.278635,-0.52339196 + parent: 1 + type: Transform +- proto: DiceBag + entities: + - uid: 5590 + components: + - pos: -40.011135,-5.1565914 + parent: 1 + type: Transform +- proto: DiseaseDiagnoser + entities: + - uid: 5689 + components: + - pos: -15.5,21.5 + parent: 1 + type: Transform +- proto: DisposalBend + entities: + - uid: 2941 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - uid: 3941 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - uid: 3942 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 1 + type: Transform + - uid: 3943 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 1 + type: Transform + - uid: 3944 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 1 + type: Transform + - uid: 3945 + components: + - rot: 3.141592653589793 rad + pos: -10.5,37.5 + parent: 1 + type: Transform + - uid: 3946 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,39.5 + parent: 1 + type: Transform + - uid: 3947 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,40.5 + parent: 1 + type: Transform + - uid: 3948 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,41.5 + parent: 1 + type: Transform + - uid: 3949 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,34.5 + parent: 1 + type: Transform + - uid: 3950 + components: + - pos: -9.5,37.5 + parent: 1 + type: Transform + - uid: 4015 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,29.5 + parent: 1 + type: Transform + - uid: 4016 + components: + - rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - uid: 4018 + components: + - pos: 4.5,24.5 + parent: 1 + type: Transform + - uid: 4032 + components: + - pos: 1.5,29.5 + parent: 1 + type: Transform + - uid: 5856 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-32.5 + parent: 1 + type: Transform + - uid: 6128 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - uid: 6129 + components: + - rot: 3.141592653589793 rad + pos: -16.5,9.5 + parent: 1 + type: Transform + - uid: 6150 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,9.5 + parent: 1 + type: Transform + - uid: 6151 + components: + - rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + type: Transform + - uid: 6152 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 6167 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 6174 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 7175 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 1 + type: Transform + - uid: 7176 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 + type: Transform + - uid: 7177 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-16.5 + parent: 1 + type: Transform + - uid: 7187 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 7188 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 1 + type: Transform + - uid: 7189 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 1 + type: Transform + - uid: 9806 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,16.5 + parent: 1 + type: Transform + - uid: 9807 + components: + - rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 1 + type: Transform + - uid: 9859 + components: + - pos: -28.5,22.5 + parent: 1 + type: Transform + - uid: 9894 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 9895 + components: + - rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 9898 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 9911 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + type: Transform + - uid: 9926 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 9984 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,25.5 + parent: 1 + type: Transform + - uid: 9988 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,2.5 + parent: 1 + type: Transform + - uid: 10028 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 10029 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 1 + type: Transform + - uid: 10030 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-26.5 + parent: 1 + type: Transform + - uid: 10031 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 1 + type: Transform + - uid: 10032 + components: + - pos: 5.5,-22.5 + parent: 1 + type: Transform + - uid: 10033 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 1 + type: Transform + - uid: 10034 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - uid: 10053 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 1 + type: Transform + - uid: 10066 + components: + - rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + type: Transform + - uid: 10067 + components: + - pos: 8.5,15.5 + parent: 1 + type: Transform + - uid: 10068 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - uid: 12599 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 12600 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 1 + type: Transform + - uid: 12601 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 1 + type: Transform + - uid: 12602 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-19.5 + parent: 1 + type: Transform + - uid: 12603 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-17.5 + parent: 1 + type: Transform + - uid: 12604 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 1 + type: Transform + - uid: 12605 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 1 + type: Transform + - uid: 12606 + components: + - pos: -30.5,-17.5 + parent: 1 + type: Transform +- proto: DisposalJunction + entities: + - uid: 4042 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 + type: Transform + - uid: 6130 + components: + - pos: -16.5,11.5 + parent: 1 + type: Transform + - uid: 6131 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 1 + type: Transform + - uid: 6172 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 9886 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 9908 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 9987 + components: + - pos: 45.5,13.5 + parent: 1 + type: Transform + - uid: 9989 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,2.5 + parent: 1 + type: Transform + - uid: 10059 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 10061 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 1 + type: Transform + - uid: 10063 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 10088 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + type: Transform + - uid: 10089 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 12465 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 12560 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,2.5 + parent: 1 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 6173 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 7179 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 1 + type: Transform + - uid: 9833 + components: + - rot: 3.141592653589793 rad + pos: -28.5,4.5 + parent: 1 + type: Transform + - uid: 9896 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 9897 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 9907 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 9910 + components: + - pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 9990 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + type: Transform + - uid: 10060 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + type: Transform + - uid: 10062 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 1 + type: Transform +- proto: DisposalPipe + entities: + - uid: 2203 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-18.5 + parent: 1 + type: Transform + - uid: 2252 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-32.5 + parent: 1 + type: Transform + - uid: 2954 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-47.5 + parent: 1 + type: Transform + - uid: 2955 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-46.5 + parent: 1 + type: Transform + - uid: 2956 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-45.5 + parent: 1 + type: Transform + - uid: 2957 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-44.5 + parent: 1 + type: Transform + - uid: 2958 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-43.5 + parent: 1 + type: Transform + - uid: 2959 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-42.5 + parent: 1 + type: Transform + - uid: 2960 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-41.5 + parent: 1 + type: Transform + - uid: 2961 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-40.5 + parent: 1 + type: Transform + - uid: 2962 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-39.5 + parent: 1 + type: Transform + - uid: 2963 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-38.5 + parent: 1 + type: Transform + - uid: 2964 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-37.5 + parent: 1 + type: Transform + - uid: 2965 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-36.5 + parent: 1 + type: Transform + - uid: 2966 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 1 + type: Transform + - uid: 2967 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-34.5 + parent: 1 + type: Transform + - uid: 2968 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-33.5 + parent: 1 + type: Transform + - uid: 2972 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 1 + type: Transform + - uid: 2974 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-29.5 + parent: 1 + type: Transform + - uid: 2977 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform + - uid: 2978 + components: + - pos: -26.5,-27.5 + parent: 1 + type: Transform + - uid: 2979 + components: + - pos: -26.5,-28.5 + parent: 1 + type: Transform + - uid: 2982 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-32.5 + parent: 1 + type: Transform + - uid: 3010 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 1 + type: Transform + - uid: 3011 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 1 + type: Transform + - uid: 3013 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-31.5 + parent: 1 + type: Transform + - uid: 3014 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 1 + type: Transform + - uid: 3930 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,41.5 + parent: 1 + type: Transform + - uid: 3932 + components: + - pos: -13.5,33.5 + parent: 1 + type: Transform + - uid: 3933 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,34.5 + parent: 1 + type: Transform + - uid: 3934 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,34.5 + parent: 1 + type: Transform + - uid: 3935 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,34.5 + parent: 1 + type: Transform + - uid: 3936 + components: + - rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 1 + type: Transform + - uid: 3937 + components: + - rot: 3.141592653589793 rad + pos: -9.5,36.5 + parent: 1 + type: Transform + - uid: 3938 + components: + - rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 1 + type: Transform + - uid: 3939 + components: + - pos: -6.5,42.5 + parent: 1 + type: Transform + - uid: 3951 + components: + - pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 3952 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 4017 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,29.5 + parent: 1 + type: Transform + - uid: 4019 + components: + - pos: -7.5,27.5 + parent: 1 + type: Transform + - uid: 4020 + components: + - pos: -7.5,28.5 + parent: 1 + type: Transform + - uid: 4021 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,29.5 + parent: 1 + type: Transform + - uid: 4022 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 1 + type: Transform + - uid: 4023 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,29.5 + parent: 1 + type: Transform + - uid: 4024 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 4025 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 1 + type: Transform + - uid: 4026 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 1 + type: Transform + - uid: 4027 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 4028 + components: + - rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 1 + type: Transform + - uid: 4029 + components: + - rot: 3.141592653589793 rad + pos: 1.5,27.5 + parent: 1 + type: Transform + - uid: 4030 + components: + - rot: 3.141592653589793 rad + pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 4031 + components: + - rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 1 + type: Transform + - uid: 4033 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 1 + type: Transform + - uid: 4034 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform + - uid: 4035 + components: + - pos: 4.5,22.5 + parent: 1 + type: Transform + - uid: 4036 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - uid: 4037 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 4038 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - uid: 4039 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - uid: 4040 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 4041 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 5346 + components: + - pos: -32.5,-16.5 + parent: 1 + type: Transform + - uid: 6132 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 6133 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - uid: 6134 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 6135 + components: + - pos: -16.5,14.5 + parent: 1 + type: Transform + - uid: 6136 + components: + - pos: -16.5,13.5 + parent: 1 + type: Transform + - uid: 6137 + components: + - pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 6138 + components: + - pos: -16.5,10.5 + parent: 1 + type: Transform + - uid: 6139 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - uid: 6140 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 1 + type: Transform + - uid: 6141 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,9.5 + parent: 1 + type: Transform + - uid: 6142 + components: + - rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 1 + type: Transform + - uid: 6143 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + type: Transform + - uid: 6144 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 6145 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - uid: 6146 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + type: Transform + - uid: 6147 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 6148 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 6153 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1 + type: Transform + - uid: 6154 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 1 + type: Transform + - uid: 6155 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 1 + type: Transform + - uid: 6156 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 1 + type: Transform + - uid: 6157 + components: + - rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1 + type: Transform + - uid: 6158 + components: + - rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 6159 + components: + - rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 1 + type: Transform + - uid: 6160 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 1 + type: Transform + - uid: 6161 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 6162 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - uid: 6164 + components: + - pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 6165 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 6166 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 6168 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 6169 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 6170 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 6171 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 6176 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 6177 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 6178 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 6179 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 7155 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 1 + type: Transform + - uid: 7156 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 7157 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 7158 + components: + - pos: -16.5,-13.5 + parent: 1 + type: Transform + - uid: 7159 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 7160 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 7161 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 7162 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - uid: 7163 + components: + - pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 7164 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 7165 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - uid: 7166 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + type: Transform + - uid: 7167 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 7168 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 7169 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 7170 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 7171 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 7172 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 7173 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 7174 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 7178 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 1 + type: Transform + - uid: 7190 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 7191 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 1 + type: Transform + - uid: 7192 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 1 + type: Transform + - uid: 7193 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 1 + type: Transform + - uid: 7194 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 1 + type: Transform + - uid: 7195 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + type: Transform + - uid: 7196 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 1 + type: Transform + - uid: 7197 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 1 + type: Transform + - uid: 7198 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 7200 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 1 + type: Transform + - uid: 7201 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 7202 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 8329 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 1 + type: Transform + - uid: 9809 + components: + - rot: 3.141592653589793 rad + pos: -40.5,3.5 + parent: 1 + type: Transform + - uid: 9810 + components: + - rot: 3.141592653589793 rad + pos: -40.5,4.5 + parent: 1 + type: Transform + - uid: 9811 + components: + - rot: 3.141592653589793 rad + pos: -40.5,5.5 + parent: 1 + type: Transform + - uid: 9812 + components: + - rot: 3.141592653589793 rad + pos: -40.5,6.5 + parent: 1 + type: Transform + - uid: 9813 + components: + - rot: 3.141592653589793 rad + pos: -40.5,7.5 + parent: 1 + type: Transform + - uid: 9814 + components: + - rot: 3.141592653589793 rad + pos: -40.5,8.5 + parent: 1 + type: Transform + - uid: 9815 + components: + - rot: 3.141592653589793 rad + pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 9816 + components: + - rot: 3.141592653589793 rad + pos: -40.5,10.5 + parent: 1 + type: Transform + - uid: 9817 + components: + - rot: 3.141592653589793 rad + pos: -40.5,11.5 + parent: 1 + type: Transform + - uid: 9818 + components: + - rot: 3.141592653589793 rad + pos: -40.5,12.5 + parent: 1 + type: Transform + - uid: 9819 + components: + - rot: 3.141592653589793 rad + pos: -40.5,13.5 + parent: 1 + type: Transform + - uid: 9820 + components: + - rot: 3.141592653589793 rad + pos: -40.5,14.5 + parent: 1 + type: Transform + - uid: 9821 + components: + - rot: 3.141592653589793 rad + pos: -40.5,15.5 + parent: 1 + type: Transform + - uid: 9822 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 1 + type: Transform + - uid: 9823 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 9824 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 1 + type: Transform + - uid: 9825 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,2.5 + parent: 1 + type: Transform + - uid: 9826 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,2.5 + parent: 1 + type: Transform + - uid: 9827 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,2.5 + parent: 1 + type: Transform + - uid: 9828 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,2.5 + parent: 1 + type: Transform + - uid: 9829 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,2.5 + parent: 1 + type: Transform + - uid: 9830 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,2.5 + parent: 1 + type: Transform + - uid: 9832 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + type: Transform + - uid: 9836 + components: + - pos: -28.5,3.5 + parent: 1 + type: Transform + - uid: 9837 + components: + - pos: -28.5,5.5 + parent: 1 + type: Transform + - uid: 9838 + components: + - pos: -28.5,6.5 + parent: 1 + type: Transform + - uid: 9839 + components: + - pos: -28.5,7.5 + parent: 1 + type: Transform + - uid: 9840 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 9841 + components: + - pos: -28.5,9.5 + parent: 1 + type: Transform + - uid: 9842 + components: + - pos: -28.5,10.5 + parent: 1 + type: Transform + - uid: 9843 + components: + - pos: -28.5,11.5 + parent: 1 + type: Transform + - uid: 9844 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 9845 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform + - uid: 9846 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform + - uid: 9847 + components: + - pos: -28.5,15.5 + parent: 1 + type: Transform + - uid: 9848 + components: + - pos: -28.5,16.5 + parent: 1 + type: Transform + - uid: 9849 + components: + - pos: -28.5,17.5 + parent: 1 + type: Transform + - uid: 9850 + components: + - pos: -28.5,18.5 + parent: 1 + type: Transform + - uid: 9851 + components: + - pos: -28.5,19.5 + parent: 1 + type: Transform + - uid: 9852 + components: + - pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 9853 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 9854 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 9855 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,22.5 + parent: 1 + type: Transform + - uid: 9856 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,22.5 + parent: 1 + type: Transform + - uid: 9857 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 1 + type: Transform + - uid: 9860 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 1 + type: Transform + - uid: 9861 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 1 + type: Transform + - uid: 9862 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 1 + type: Transform + - uid: 9863 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + type: Transform + - uid: 9864 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 1 + type: Transform + - uid: 9865 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 1 + type: Transform + - uid: 9866 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 1 + type: Transform + - uid: 9867 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1 + type: Transform + - uid: 9868 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 9869 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 1 + type: Transform + - uid: 9870 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 1 + type: Transform + - uid: 9871 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + type: Transform + - uid: 9872 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + type: Transform + - uid: 9873 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + type: Transform + - uid: 9874 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - uid: 9875 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + type: Transform + - uid: 9876 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 9877 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 9878 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 9879 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 9880 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 9881 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 9882 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 9883 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 9884 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 9885 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 9887 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 9888 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 9889 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 9890 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 9891 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 9892 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 9893 + components: + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 9899 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 9900 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 9901 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 9902 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 9903 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 9904 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 9905 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 9906 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 9912 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 9913 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 9914 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 9915 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 9916 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 9917 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 9918 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 9919 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 9920 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 9921 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 9922 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 9923 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 9924 + components: + - rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 9925 + components: + - rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 9927 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 9928 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 9929 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 9930 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 9931 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 9932 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 9933 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 + type: Transform + - uid: 9934 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 1 + type: Transform + - uid: 9935 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + type: Transform + - uid: 9936 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 1 + type: Transform + - uid: 9937 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,2.5 + parent: 1 + type: Transform + - uid: 9938 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,2.5 + parent: 1 + type: Transform + - uid: 9939 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1 + type: Transform + - uid: 9940 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 1 + type: Transform + - uid: 9941 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 9942 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 9943 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1 + type: Transform + - uid: 9944 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1 + type: Transform + - uid: 9945 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 1 + type: Transform + - uid: 9946 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,2.5 + parent: 1 + type: Transform + - uid: 9947 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 9948 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 1 + type: Transform + - uid: 9949 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 1 + type: Transform + - uid: 9950 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 1 + type: Transform + - uid: 9951 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 1 + type: Transform + - uid: 9952 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,2.5 + parent: 1 + type: Transform + - uid: 9953 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,2.5 + parent: 1 + type: Transform + - uid: 9954 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 1 + type: Transform + - uid: 9955 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 9956 + components: + - pos: 38.5,3.5 + parent: 1 + type: Transform + - uid: 9957 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 1 + type: Transform + - uid: 9958 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 1 + type: Transform + - uid: 9959 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,2.5 + parent: 1 + type: Transform + - uid: 9960 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 1 + type: Transform + - uid: 9961 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 9962 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,2.5 + parent: 1 + type: Transform + - uid: 9963 + components: + - rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 1 + type: Transform + - uid: 9964 + components: + - rot: 3.141592653589793 rad + pos: 45.5,4.5 + parent: 1 + type: Transform + - uid: 9965 + components: + - rot: 3.141592653589793 rad + pos: 45.5,5.5 + parent: 1 + type: Transform + - uid: 9966 + components: + - rot: 3.141592653589793 rad + pos: 45.5,6.5 + parent: 1 + type: Transform + - uid: 9967 + components: + - rot: 3.141592653589793 rad + pos: 45.5,7.5 + parent: 1 + type: Transform + - uid: 9968 + components: + - rot: 3.141592653589793 rad + pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 9969 + components: + - rot: 3.141592653589793 rad + pos: 45.5,9.5 + parent: 1 + type: Transform + - uid: 9970 + components: + - rot: 3.141592653589793 rad + pos: 45.5,10.5 + parent: 1 + type: Transform + - uid: 9971 + components: + - rot: 3.141592653589793 rad + pos: 45.5,11.5 + parent: 1 + type: Transform + - uid: 9972 + components: + - rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 9973 + components: + - rot: 3.141592653589793 rad + pos: 45.5,14.5 + parent: 1 + type: Transform + - uid: 9974 + components: + - rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 1 + type: Transform + - uid: 9975 + components: + - rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 1 + type: Transform + - uid: 9976 + components: + - rot: 3.141592653589793 rad + pos: 45.5,17.5 + parent: 1 + type: Transform + - uid: 9977 + components: + - rot: 3.141592653589793 rad + pos: 45.5,18.5 + parent: 1 + type: Transform + - uid: 9978 + components: + - rot: 3.141592653589793 rad + pos: 45.5,19.5 + parent: 1 + type: Transform + - uid: 9979 + components: + - rot: 3.141592653589793 rad + pos: 45.5,20.5 + parent: 1 + type: Transform + - uid: 9980 + components: + - rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 1 + type: Transform + - uid: 9981 + components: + - rot: 3.141592653589793 rad + pos: 45.5,22.5 + parent: 1 + type: Transform + - uid: 9982 + components: + - rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 9983 + components: + - rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 1 + type: Transform + - uid: 9992 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 9993 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 9994 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + type: Transform + - uid: 9995 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 9996 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 1 + type: Transform + - uid: 9997 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 1 + type: Transform + - uid: 9998 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 1 + type: Transform + - uid: 9999 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + type: Transform + - uid: 10000 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 10001 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 1 + type: Transform + - uid: 10002 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1 + type: Transform + - uid: 10003 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 1 + type: Transform + - uid: 10004 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 1 + type: Transform + - uid: 10005 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 1 + type: Transform + - uid: 10006 + components: + - pos: 5.5,-23.5 + parent: 1 + type: Transform + - uid: 10007 + components: + - pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 10008 + components: + - pos: 5.5,-25.5 + parent: 1 + type: Transform + - uid: 10009 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 1 + type: Transform + - uid: 10010 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 10011 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 10012 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 1 + type: Transform + - uid: 10013 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 1 + type: Transform + - uid: 10014 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 1 + type: Transform + - uid: 10015 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 1 + type: Transform + - uid: 10016 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 1 + type: Transform + - uid: 10017 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 1 + type: Transform + - uid: 10018 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 1 + type: Transform + - uid: 10019 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 1 + type: Transform + - uid: 10020 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-23.5 + parent: 1 + type: Transform + - uid: 10021 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-22.5 + parent: 1 + type: Transform + - uid: 10022 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 1 + type: Transform + - uid: 10023 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 10024 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 1 + type: Transform + - uid: 10025 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1 + type: Transform + - uid: 10026 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 10027 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 + type: Transform + - uid: 10035 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 1 + type: Transform + - uid: 10036 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 1 + type: Transform + - uid: 10037 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-25.5 + parent: 1 + type: Transform + - uid: 10038 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 1 + type: Transform + - uid: 10039 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 1 + type: Transform + - uid: 10040 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 10041 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 1 + type: Transform + - uid: 10042 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 10043 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1 + type: Transform + - uid: 10044 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + type: Transform + - uid: 10045 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 1 + type: Transform + - uid: 10046 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 1 + type: Transform + - uid: 10047 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 10048 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 1 + type: Transform + - uid: 10049 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 1 + type: Transform + - uid: 10050 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-23.5 + parent: 1 + type: Transform + - uid: 10051 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 10052 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - uid: 10064 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - uid: 10069 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1 + type: Transform + - uid: 10070 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + type: Transform + - uid: 10071 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,15.5 + parent: 1 + type: Transform + - uid: 10072 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 10073 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + type: Transform + - uid: 10074 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 10075 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + type: Transform + - uid: 10076 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 10077 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 10078 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1 + type: Transform + - uid: 10079 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - uid: 10080 + components: + - pos: 8.5,14.5 + parent: 1 + type: Transform + - uid: 10081 + components: + - pos: -5.5,14.5 + parent: 1 + type: Transform + - uid: 10082 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 10083 + components: + - pos: -5.5,12.5 + parent: 1 + type: Transform + - uid: 10084 + components: + - pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 10085 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 10086 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 12466 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 12467 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 12512 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 1 + type: Transform + - uid: 12513 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 12514 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 12515 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 1 + type: Transform + - uid: 12569 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 12570 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 12571 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 1 + type: Transform + - uid: 12572 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 1 + type: Transform + - uid: 12573 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 1 + type: Transform + - uid: 12574 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 1 + type: Transform + - uid: 12575 + components: + - pos: -37.5,-18.5 + parent: 1 + type: Transform + - uid: 12576 + components: + - pos: -37.5,-17.5 + parent: 1 + type: Transform + - uid: 12577 + components: + - pos: -37.5,-16.5 + parent: 1 + type: Transform + - uid: 12578 + components: + - pos: -37.5,-15.5 + parent: 1 + type: Transform + - uid: 12579 + components: + - pos: -37.5,-14.5 + parent: 1 + type: Transform + - uid: 12580 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 1 + type: Transform + - uid: 12581 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 1 + type: Transform + - uid: 12582 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 1 + type: Transform + - uid: 12583 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 1 + type: Transform + - uid: 12584 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-11.5 + parent: 1 + type: Transform + - uid: 12585 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 1 + type: Transform + - uid: 12586 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-9.5 + parent: 1 + type: Transform + - uid: 12587 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 12588 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 1 + type: Transform + - uid: 12589 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 12590 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-5.5 + parent: 1 + type: Transform + - uid: 12591 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-4.5 + parent: 1 + type: Transform + - uid: 12592 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 12593 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 1 + type: Transform + - uid: 12594 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 12595 + components: + - pos: -30.5,-1.5 + parent: 1 + type: Transform + - uid: 12596 + components: + - pos: -30.5,-0.5 + parent: 1 + type: Transform + - uid: 12597 + components: + - pos: -30.5,0.5 + parent: 1 + type: Transform + - uid: 12598 + components: + - pos: -30.5,1.5 + parent: 1 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 2953 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-48.5 + parent: 1 + type: Transform + - uid: 2975 + components: + - pos: -26.5,-25.5 + parent: 1 + type: Transform + - uid: 3929 + components: + - rot: 3.141592653589793 rad + pos: -13.5,31.5 + parent: 1 + type: Transform + - uid: 3953 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 4043 + components: + - rot: 3.141592653589793 rad + pos: -7.5,26.5 + parent: 1 + type: Transform + - uid: 4044 + components: + - rot: 3.141592653589793 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 6098 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 6125 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1 + type: Transform + - uid: 6126 + components: + - rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 6127 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 1 + type: Transform + - uid: 6149 + components: + - pos: 17.5,10.5 + parent: 1 + type: Transform + - uid: 6163 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 6175 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 7154 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 1 + type: Transform + - uid: 7185 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 9834 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,16.5 + parent: 1 + type: Transform + - uid: 9835 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,4.5 + parent: 1 + type: Transform + - uid: 9858 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,22.5 + parent: 1 + type: Transform + - uid: 9909 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 9985 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,25.5 + parent: 1 + type: Transform + - uid: 9986 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,13.5 + parent: 1 + type: Transform + - uid: 9991 + components: + - rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 1 + type: Transform + - uid: 10054 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 1 + type: Transform + - uid: 10055 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 1 + type: Transform + - uid: 10056 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-23.5 + parent: 1 + type: Transform + - uid: 10057 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 10058 + components: + - pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 10065 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 10087 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 12464 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 12562 + components: + - pos: -32.5,-15.5 + parent: 1 + type: Transform +- proto: DisposalUnit + entities: + - uid: 1007 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 1838 + components: + - pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 1892 + components: + - pos: -12.5,7.5 + parent: 1 + type: Transform + - uid: 1903 + components: + - pos: -17.5,11.5 + parent: 1 + type: Transform + - uid: 1995 + components: + - pos: -39.5,16.5 + parent: 1 + type: Transform + - uid: 2952 + components: + - pos: -16.5,-48.5 + parent: 1 + type: Transform + - uid: 3819 + components: + - pos: -14.5,-3.5 + parent: 1 + type: Transform + - uid: 3824 + components: + - pos: 2.5,23.5 + parent: 1 + type: Transform + - uid: 3825 + components: + - pos: -13.5,31.5 + parent: 1 + type: Transform + - uid: 3826 + components: + - pos: -7.5,26.5 + parent: 1 + type: Transform + - uid: 3827 + components: + - pos: 17.5,10.5 + parent: 1 + type: Transform + - uid: 3829 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 3830 + components: + - pos: -17.5,18.5 + parent: 1 + type: Transform + - uid: 3831 + components: + - pos: 7.5,17.5 + parent: 1 + type: Transform + - uid: 3832 + components: + - pos: -29.5,4.5 + parent: 1 + type: Transform + - uid: 3834 + components: + - pos: 38.5,4.5 + parent: 1 + type: Transform + - uid: 3837 + components: + - pos: -5.5,-22.5 + parent: 1 + type: Transform + - uid: 3838 + components: + - pos: 3.5,-12.5 + parent: 1 + type: Transform + - uid: 3839 + components: + - pos: 23.5,1.5 + parent: 1 + type: Transform + - uid: 3841 + components: + - pos: -13.5,-26.5 + parent: 1 + type: Transform + - uid: 3842 + components: + - pos: 3.5,-23.5 + parent: 1 + type: Transform + - uid: 3843 + components: + - pos: 8.5,-25.5 + parent: 1 + type: Transform + - uid: 3844 + components: + - pos: 22.5,-20.5 + parent: 1 + type: Transform + - uid: 3845 + components: + - pos: 44.5,13.5 + parent: 1 + type: Transform + - uid: 3846 + components: + - pos: 19.5,35.5 + parent: 1 + type: Transform + - uid: 3848 + components: + - pos: -6.5,44.5 + parent: 1 + type: Transform + - uid: 4855 + components: + - pos: 46.5,25.5 + parent: 1 + type: Transform + - uid: 5021 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 6326 + components: + - pos: -14.5,-16.5 + parent: 1 + type: Transform + - uid: 7186 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - uid: 8343 + components: + - pos: -32.5,-15.5 + parent: 1 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 9808 + components: + - rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 1 + type: Transform +- proto: DogBed + entities: + - uid: 4960 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform + - uid: 4971 + components: + - pos: 5.5,29.5 + parent: 1 + type: Transform +- proto: Drill + entities: + - uid: 9639 + components: + - pos: -26.392878,20.608793 + parent: 1 + type: Transform +- proto: DrinkBottleWine + entities: + - uid: 7543 + components: + - pos: -33.460228,11.714648 + parent: 1 + type: Transform +- proto: DrinkChangelingStingCan + entities: + - uid: 12287 + components: + - pos: -11.69306,-33.29647 + parent: 1 + type: Transform +- proto: DrinkDetFlask + entities: + - uid: 12525 + components: + - pos: -21.680874,-28.320465 + parent: 1 + type: Transform +- proto: DrinkGlass + entities: + - uid: 5976 + components: + - pos: 0.57151127,7.5559425 + parent: 1 + type: Transform + - uid: 5977 + components: + - pos: 0.22776127,7.7278175 + parent: 1 + type: Transform + - uid: 5978 + components: + - pos: 1.4777613,7.7434425 + parent: 1 + type: Transform + - uid: 8267 + components: + - pos: -14.259693,-53.493797 + parent: 1 + type: Transform + - uid: 8268 + components: + - pos: -15.197193,-48.228172 + parent: 1 + type: Transform + - uid: 8269 + components: + - pos: -15.056568,-48.478172 + parent: 1 + type: Transform + - uid: 8277 + components: + - pos: -14.712818,-53.400047 + parent: 1 + type: Transform + - uid: 8309 + components: + - pos: -29.313759,-12.206892 + parent: 1 + type: Transform + - uid: 8310 + components: + - pos: -29.454384,-12.456892 + parent: 1 + type: Transform +- proto: DrinkGlassCoupeShaped + entities: + - uid: 5979 + components: + - pos: 1.8058863,7.6653175 + parent: 1 + type: Transform + - uid: 7544 + components: + - pos: -33.897728,11.652148 + parent: 1 + type: Transform + - uid: 7545 + components: + - pos: -34.319603,11.730273 + parent: 1 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 4129 + components: + - pos: -1.434155,24.205725 + parent: 1 + type: Transform +- proto: DrinkMilkCarton + entities: + - uid: 6014 + components: + - pos: 0.5749459,1.7185974 + parent: 1 + type: Transform +- proto: DrinkMugBlack + entities: + - uid: 4913 + components: + - pos: 40.67775,25.53639 + parent: 1 + type: Transform +- proto: DrinkMugBlue + entities: + - uid: 4915 + components: + - pos: 40.318375,25.458265 + parent: 1 + type: Transform +- proto: DrinkMugRed + entities: + - uid: 4914 + components: + - pos: 40.380875,25.75514 + parent: 1 + type: Transform +- proto: DrinkShaker + entities: + - uid: 5975 + components: + - pos: 1.0246363,7.6965675 + parent: 1 + type: Transform + - uid: 8264 + components: + - pos: -15.603443,-48.431297 + parent: 1 + type: Transform + - uid: 8276 + components: + - pos: -14.415943,-53.165672 + parent: 1 + type: Transform + - uid: 8308 + components: + - pos: -29.766884,-12.316267 + parent: 1 + type: Transform +- proto: DrinkVacuumFlask + entities: + - uid: 12354 + components: + - pos: 5.53118,46.361736 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: LongIslandIcedTea + Quantity: 30 + type: SolutionContainerManager +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 5357 + components: + - flags: InContainer + type: MetaData + - parent: 5356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Dropper + entities: + - uid: 6088 + components: + - pos: -28.506477,-7.2309704 + parent: 1 + type: Transform + - uid: 6089 + components: + - pos: -28.412727,-7.5278454 + parent: 1 + type: Transform +- proto: ElectricGuitarInstrument + entities: + - uid: 7804 + components: + - pos: -13.014593,-31.488472 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 5524 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5525 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5526 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5527 + components: + - rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5528 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5529 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5530 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,12.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5531 + components: + - rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5532 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5533 + components: + - rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 5534 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 6606 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 6607 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12362 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12363 + components: + - rot: 3.141592653589793 rad + pos: 35.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12364 + components: + - pos: 23.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12365 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12366 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12367 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12369 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12370 + components: + - pos: 22.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12371 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12372 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12373 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12374 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12375 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12376 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12377 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12378 + components: + - pos: -11.5,16.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12379 + components: + - rot: 3.141592653589793 rad + pos: -12.5,18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12380 + components: + - rot: 3.141592653589793 rad + pos: -13.5,8.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12381 + components: + - pos: -21.5,11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12382 + components: + - rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12383 + components: + - rot: 3.141592653589793 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12384 + components: + - pos: -30.5,3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12385 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12386 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,9.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12387 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12388 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-7.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12389 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12390 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12391 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12392 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12393 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-28.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12394 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12395 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12396 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-27.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12397 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12398 + components: + - pos: 19.5,-20.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12399 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,51.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12400 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,53.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12401 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,21.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight + - uid: 12454 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - type: ActiveEmergencyLight +- proto: EmergencyMedipen + entities: + - uid: 1925 + components: + - pos: -22.134233,11.75826 + parent: 1 + type: Transform + - uid: 7681 + components: + - pos: -22.212358,11.492635 + parent: 1 + type: Transform +- proto: EmergencyRollerBed + entities: + - uid: 5862 + components: + - pos: -14.510358,11.588304 + parent: 1 + type: Transform + - uid: 5863 + components: + - pos: -13.494733,11.588304 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 3778 + components: + - flags: InContainer + type: MetaData + - parent: 3777 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 3780 + components: + - flags: InContainer + type: MetaData + - parent: 3779 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 3783 + components: + - flags: InContainer + type: MetaData + - parent: 3782 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 3785 + components: + - flags: InContainer + type: MetaData + - parent: 3784 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 3772 + components: + - flags: InContainer + type: MetaData + - parent: 3771 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 3790 + components: + - flags: InContainer + type: MetaData + - parent: 3789 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 3793 + components: + - flags: InContainer + type: MetaData + - parent: 3792 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 3770 + components: + - flags: InContainer + type: MetaData + - parent: 3769 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 663 + components: + - pos: -7.5,-15.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 5490 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 5502 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,25.5 + parent: 1 + type: Transform + - uid: 5503 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,26.5 + parent: 1 + type: Transform + - uid: 5505 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1 + type: Transform + - uid: 5506 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 5507 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 5509 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 5510 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1 + type: Transform + - uid: 5511 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,16.5 + parent: 1 + type: Transform + - uid: 5512 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 1 + type: Transform + - uid: 5513 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 1 + type: Transform + - uid: 5514 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,29.5 + parent: 1 + type: Transform + - uid: 5515 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,44.5 + parent: 1 + type: Transform + - uid: 5516 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + type: Transform + - uid: 5517 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,50.5 + parent: 1 + type: Transform + - uid: 5518 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,56.5 + parent: 1 + type: Transform + - uid: 5519 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1 + type: Transform + - uid: 9279 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - uid: 9280 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 1 + type: Transform + - uid: 9281 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 1 + type: Transform + - uid: 9282 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 9283 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 9284 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 9285 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 9286 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 1 + type: Transform + - uid: 9287 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 9289 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 9290 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 9291 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 9292 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,4.5 + parent: 1 + type: Transform + - uid: 9293 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,8.5 + parent: 1 + type: Transform + - uid: 9294 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 1 + type: Transform + - uid: 9295 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,27.5 + parent: 1 + type: Transform + - uid: 9296 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 1 + type: Transform + - uid: 9297 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 1 + type: Transform + - uid: 9298 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 9299 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 9300 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 9301 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 1 + type: Transform + - uid: 9302 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 1 + type: Transform + - uid: 9303 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1 + type: Transform + - uid: 9304 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 1 + type: Transform + - uid: 9305 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-24.5 + parent: 1 + type: Transform + - uid: 9306 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 1 + type: Transform + - uid: 11600 + components: + - pos: 17.5,12.5 + parent: 1 + type: Transform + - uid: 12023 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 12402 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 1 + type: Transform + - uid: 12403 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-33.5 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 4111 + components: + - pos: -8.5,31.5 + parent: 1 + type: Transform + - name: Bridge + type: FaxMachine + - uid: 4968 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - name: HoP Office + type: FaxMachine + - uid: 5329 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - name: Security + type: FaxMachine + - uid: 5582 + components: + - pos: -37.5,-4.5 + parent: 1 + type: Transform + - name: Library + type: FaxMachine + - uid: 5882 + components: + - pos: -12.5,6.5 + parent: 1 + type: Transform + - name: Medical + type: FaxMachine + - uid: 5974 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - name: Bar + type: FaxMachine + - uid: 6027 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - name: Science + type: FaxMachine + - uid: 6785 + components: + - pos: 11.5,-12.5 + parent: 1 + type: Transform + - name: Engineering + type: FaxMachine + - uid: 7242 + components: + - pos: 11.5,-17.5 + parent: 1 + type: Transform + - name: Cargo + type: FaxMachine + - uid: 9129 + components: + - pos: 40.5,33.5 + parent: 1 + type: Transform + - name: Courthouse + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 4102 + components: + - pos: 5.5,27.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 5969 + components: + - pos: 16.5,11.5 + parent: 1 + type: Transform + - devices: + - 3200 + - 3201 + - 3202 + - 1766 + - 1765 + - 3209 + - 3208 + - 3206 + - 3207 + - 3203 + - 3204 + - 3205 + type: DeviceList + - uid: 11595 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,26.5 + parent: 1 + type: Transform + - devices: + - 3197 + - 3194 + - 3198 + type: DeviceList + - uid: 11596 + components: + - rot: 3.141592653589793 rad + pos: -1.5,26.5 + parent: 1 + type: Transform + - devices: + - 3193 + - 3192 + - 3196 + - 3194 + - 3195 + type: DeviceList + - uid: 11597 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1 + type: Transform + - devices: + - 3185 + - 3191 + - 3193 + - 3192 + - 3186 + type: DeviceList + - uid: 11599 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform + - devices: + - 5009 + - 5010 + - 5011 + - 3190 + - 3199 + - 3191 + - 3134 + - 3133 + - 46 + - 5004 + - 5003 + - 5002 + - 5000 + - 5001 + type: DeviceList + - uid: 11607 + components: + - pos: 30.5,11.5 + parent: 1 + type: Transform + - devices: + - 3203 + - 3204 + - 3205 + - 3219 + - 3327 + - 3217 + - 3213 + - 3214 + - 3215 + type: DeviceList + - uid: 11610 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,26.5 + parent: 1 + type: Transform + - devices: + - 3224 + - 3225 + - 3226 + - 3227 + - 3228 + - 3220 + - 3221 + - 3222 + - 3223 + type: DeviceList + - uid: 11613 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + type: Transform + - devices: + - 3134 + - 3133 + - 46 + - 3135 + - 3136 + - 3138 + - 3137 + - 11622 + - 11621 + - 11620 + - 11619 + - 11618 + - 11617 + - 11616 + - 11615 + - 11614 + type: DeviceList + - uid: 11624 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - devices: + - 3143 + - 3141 + - 3142 + - 3139 + - 3140 + type: DeviceList + - uid: 11626 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - devices: + - 3145 + - 3146 + - 3143 + - 3142 + type: DeviceList + - uid: 11631 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - devices: + - 3120 + - 3119 + - 3118 + - 3149 + - 3150 + - 3151 + - 5508 + - 5498 + - 5495 + - 5008 + - 5003 + - 5002 + - 5004 + - 3135 + - 3136 + type: DeviceList + - uid: 11633 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - devices: + - 3183 + - 3184 + - 3171 + - 3170 + - 3169 + - 3168 + - 3167 + - 3166 + - 3165 + - 3189 + - 3164 + - 3173 + - 3172 + type: DeviceList + - uid: 11635 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 11639 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,20.5 + parent: 1 + type: Transform + - devices: + - 3187 + - 11637 + - 11643 + type: DeviceList + - uid: 11640 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,15.5 + parent: 1 + type: Transform + - devices: + - 3164 + - 3188 + type: DeviceList + - uid: 11641 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - devices: + - 3178 + - 3179 + - 3180 + - 3181 + type: DeviceList + - uid: 11648 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - devices: + - 3151 + - 3150 + - 3149 + - 3155 + - 3156 + - 3157 + type: DeviceList + - uid: 11650 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - devices: + - 3151 + - 3150 + - 3149 + - 3155 + - 3156 + - 3157 + - 11054 + - 11057 + - 2284 + - 2094 + - 3160 + - 3272 + - 3273 + - 3158 + - 3159 + - 3161 + type: DeviceList + - uid: 11652 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,9.5 + parent: 1 + type: Transform + - devices: + - 3158 + - 3159 + - 3161 + - 11653 + type: DeviceList + - uid: 11654 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,7.5 + parent: 1 + type: Transform + - devices: + - 2284 + - 2094 + - 3160 + - 3162 + - 3163 + type: DeviceList + - uid: 11656 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 1 + type: Transform + - devices: + - 3273 + - 3272 + type: DeviceList + - uid: 11659 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - devices: + - 3115 + - 3116 + - 3117 + - 3104 + - 3103 + - 3102 + - 3096 + - 3097 + - 3100 + - 3101 + - 3118 + - 3119 + - 3120 + type: DeviceList + - uid: 11663 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 1 + type: Transform + - devices: + - 3094 + - 3095 + - 3102 + - 3103 + - 3104 + - 3105 + type: DeviceList + - uid: 11665 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 1 + type: Transform + - devices: + - 3111 + - 3112 + - 3113 + - 3106 + - 3107 + - 3108 + - 3109 + - 11668 + - 11669 + type: DeviceList + - uid: 11671 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-8.5 + parent: 1 + type: Transform + - devices: + - 1979 + - 2283 + - 996 + type: DeviceList + - uid: 11673 + components: + - pos: -16.5,0.5 + parent: 1 + type: Transform + - devices: + - 3091 + - 3090 + - 3109 + - 3093 + - 3092 + type: DeviceList + - uid: 11675 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + type: Transform + - devices: + - 3117 + - 3116 + - 3115 + - 3145 + - 3121 + - 3122 + - 3123 + - 3266 + - 3265 + - 3264 + type: DeviceList + - uid: 11677 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - devices: + - 3123 + - 3122 + - 3121 + - 11629 + - 11628 + - 11627 + - 3125 + - 3124 + - 3126 + - 3243 + - 1832 + - 3055 + type: DeviceList + - uid: 11679 + components: + - pos: 19.5,-2.5 + parent: 1 + type: Transform + - devices: + - 3229 + - 3230 + - 3233 + - 3232 + - 11687 + - 11688 + type: DeviceList + - uid: 11681 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 1 + type: Transform + - devices: + - 3231 + - 3232 + - 3233 + - 3241 + - 3242 + type: DeviceList + - uid: 11683 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-12.5 + parent: 1 + type: Transform + - devices: + - 3235 + - 3234 + - 3232 + - 3233 + - 3240 + - 11687 + - 11688 + - 11689 + type: DeviceList + - uid: 11685 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 1 + type: Transform + - devices: + - 3236 + - 3237 + - 1222 + - 11686 + type: DeviceList + - uid: 11691 + components: + - pos: 20.5,4.5 + parent: 1 + type: Transform + - devices: + - 3129 + - 3128 + - 3127 + - 3498 + - 3499 + type: DeviceList + - uid: 11693 + components: + - pos: 33.5,4.5 + parent: 1 + type: Transform + - devices: + - 3499 + - 3498 + - 3501 + - 3502 + - 3503 + type: DeviceList + - uid: 11695 + components: + - rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 1 + type: Transform + - devices: + - 3503 + - 3502 + - 3501 + - 3504 + - 3505 + - 3506 + type: DeviceList + - uid: 11696 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,9.5 + parent: 1 + type: Transform + - devices: + - 3506 + - 3505 + - 3504 + - 3507 + - 4898 + type: DeviceList + - uid: 11701 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,31.5 + parent: 1 + type: Transform + - devices: + - 11703 + - 11704 + type: DeviceList + - uid: 11702 + components: + - rot: 3.141592653589793 rad + pos: 42.5,24.5 + parent: 1 + type: Transform + - devices: + - 4898 + - 4897 + - 11703 + - 11704 + type: DeviceList + - uid: 11706 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 1 + type: Transform + - devices: + - 3262 + - 3261 + - 3263 + - 3264 + - 3265 + - 3266 + type: DeviceList + - uid: 11708 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 1 + type: Transform + - devices: + - 3260 + - 3259 + - 3258 + - 3267 + - 3270 + - 3269 + - 3271 + - 3268 + type: DeviceList + - uid: 11710 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + type: Transform + - devices: + - 3584 + - 3585 + - 3586 + - 3587 + - 3263 + - 3262 + - 3261 + - 3260 + - 3259 + - 3258 + - 7083 + - 7084 + - 7085 + type: DeviceList + - uid: 11712 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1 + type: Transform + - devices: + - 7086 + - 7083 + - 7084 + - 7085 + type: DeviceList + - uid: 11715 + components: + - pos: 8.5,-16.5 + parent: 1 + type: Transform + - devices: + - 3247 + - 3246 + - 3250 + - 3251 + - 3252 + - 3253 + - 2186 + type: DeviceList + - uid: 11716 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 1 + type: Transform + - devices: + - 3248 + - 3249 + type: DeviceList + - uid: 11717 + components: + - pos: 20.5,-19.5 + parent: 1 + type: Transform + - devices: + - 7250 + - 7249 + - 3595 + - 7301 + - 3257 + type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 4101 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 12471 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 1 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 6334 + components: + - pos: -14.675418,-8.401124 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 3508 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 1 + type: Transform + - uid: 3509 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 1 + type: Transform + - uid: 3510 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 1 + type: Transform + - uid: 3511 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,29.5 + parent: 1 + type: Transform + - uid: 3512 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,29.5 + parent: 1 + type: Transform + - uid: 3513 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 1 + type: Transform + - uid: 3514 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 1 + type: Transform + - uid: 3515 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 1 + type: Transform + - uid: 3516 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 3517 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + type: Transform + - uid: 3518 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 1 + type: Transform + - uid: 3519 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + type: Transform + - uid: 3520 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 1 + type: Transform + - uid: 3521 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,22.5 + parent: 1 + type: Transform + - uid: 3522 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,22.5 + parent: 1 + type: Transform + - uid: 3523 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,28.5 + parent: 1 + type: Transform + - uid: 3524 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,29.5 + parent: 1 + type: Transform + - uid: 3525 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,19.5 + parent: 1 + type: Transform + - uid: 3526 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,18.5 + parent: 1 + type: Transform + - uid: 3527 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,17.5 + parent: 1 + type: Transform + - uid: 3528 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,17.5 + parent: 1 + type: Transform + - uid: 3529 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 1 + type: Transform + - uid: 3530 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 1 + type: Transform + - uid: 3531 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 1 + type: Transform + - uid: 3532 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 1 + type: Transform + - uid: 3533 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 1 + type: Transform + - uid: 3534 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 1 + type: Transform + - uid: 3535 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 1 + type: Transform + - uid: 3536 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 1 + type: Transform + - uid: 3537 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 1 + type: Transform + - uid: 3538 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 1 + type: Transform + - uid: 3539 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + type: Transform + - uid: 3540 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 1 + type: Transform + - uid: 3541 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 1 + type: Transform + - uid: 12493 + components: + - pos: 33.5,-0.5 + parent: 1 + type: Transform +- proto: FirelockEdge + entities: + - uid: 996 + components: + - pos: -25.5,-7.5 + parent: 1 + type: Transform + - uid: 1222 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 1 + type: Transform + - uid: 1764 + components: + - rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 1 + type: Transform + - uid: 1765 + components: + - rot: 3.141592653589793 rad + pos: 15.5,7.5 + parent: 1 + type: Transform + - uid: 1766 + components: + - rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 1832 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 2186 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 2864 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-48.5 + parent: 1 + type: Transform + - uid: 3055 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 3105 + components: + - pos: -11.5,-15.5 + parent: 1 + type: Transform + - uid: 3114 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-17.5 + parent: 1 + type: Transform + - uid: 3162 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 3187 + components: + - rot: 3.141592653589793 rad + pos: -13.5,21.5 + parent: 1 + type: Transform + - uid: 3188 + components: + - rot: 3.141592653589793 rad + pos: -23.5,16.5 + parent: 1 + type: Transform + - uid: 3189 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 1 + type: Transform + - uid: 3197 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,30.5 + parent: 1 + type: Transform + - uid: 3198 + components: + - pos: -9.5,26.5 + parent: 1 + type: Transform + - uid: 3208 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform + - uid: 3209 + components: + - pos: 22.5,8.5 + parent: 1 + type: Transform + - uid: 3222 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 1 + type: Transform + - uid: 3223 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,27.5 + parent: 1 + type: Transform + - uid: 3224 + components: + - rot: 3.141592653589793 rad + pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 3225 + components: + - rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 3226 + components: + - rot: 3.141592653589793 rad + pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 3227 + components: + - rot: 3.141592653589793 rad + pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 3228 + components: + - rot: 3.141592653589793 rad + pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 3238 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-3.5 + parent: 1 + type: Transform + - uid: 3240 + components: + - pos: 25.5,-15.5 + parent: 1 + type: Transform + - uid: 3242 + components: + - pos: 13.5,-12.5 + parent: 1 + type: Transform + - uid: 3256 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-20.5 + parent: 1 + type: Transform + - uid: 3257 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 1 + type: Transform + - uid: 3274 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,22.5 + parent: 1 + type: Transform + - uid: 3507 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 1 + type: Transform + - uid: 3584 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + type: Transform + - uid: 3585 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + type: Transform + - uid: 3586 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + type: Transform + - uid: 3587 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + type: Transform + - uid: 4897 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,26.5 + parent: 1 + type: Transform + - uid: 4898 + components: + - rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 1 + type: Transform + - uid: 5000 + components: + - pos: -2.5,17.5 + parent: 1 + type: Transform + - uid: 5001 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 5002 + components: + - rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 1 + type: Transform + - uid: 5003 + components: + - rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + type: Transform + - uid: 5004 + components: + - rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 7148 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 7149 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 1 + type: Transform + - uid: 7150 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 1 + type: Transform + - uid: 11627 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 11628 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 11629 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 11668 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 1 + type: Transform + - uid: 11669 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 1 + type: Transform + - uid: 11686 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 1 + type: Transform + - uid: 12112 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,21.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 46 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 1979 + components: + - pos: -23.5,-6.5 + parent: 1 + type: Transform + - uid: 2094 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 1 + type: Transform + - uid: 2283 + components: + - pos: -23.5,-5.5 + parent: 1 + type: Transform + - uid: 2284 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 1 + type: Transform + - uid: 3075 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + type: Transform + - uid: 3090 + components: + - pos: -19.5,-6.5 + parent: 1 + type: Transform + - uid: 3091 + components: + - pos: -19.5,-5.5 + parent: 1 + type: Transform + - uid: 3092 + components: + - pos: -13.5,-5.5 + parent: 1 + type: Transform + - uid: 3093 + components: + - pos: -13.5,-6.5 + parent: 1 + type: Transform + - uid: 3094 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 3095 + components: + - pos: -11.5,-7.5 + parent: 1 + type: Transform + - uid: 3096 + components: + - pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 3097 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 3098 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 3099 + components: + - pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 3100 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 3101 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 3102 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 3103 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - uid: 3104 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - uid: 3106 + components: + - pos: -17.5,-11.5 + parent: 1 + type: Transform + - uid: 3107 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - uid: 3108 + components: + - pos: -15.5,-11.5 + parent: 1 + type: Transform + - uid: 3109 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - uid: 3111 + components: + - pos: -17.5,-15.5 + parent: 1 + type: Transform + - uid: 3112 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - uid: 3113 + components: + - pos: -15.5,-15.5 + parent: 1 + type: Transform + - uid: 3115 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 3116 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 3117 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 3118 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 3119 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 3120 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 3121 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 3122 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 3123 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 3124 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 3125 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 3126 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 3127 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 3128 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 3129 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 3133 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 3134 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 3135 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 3136 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 3137 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 3138 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 3139 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 3140 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 3141 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 3142 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 3143 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 3145 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 3146 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 3149 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 3150 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 3151 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 3155 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,1.5 + parent: 1 + type: Transform + - uid: 3156 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,2.5 + parent: 1 + type: Transform + - uid: 3157 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 1 + type: Transform + - uid: 3158 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 1 + type: Transform + - uid: 3159 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,4.5 + parent: 1 + type: Transform + - uid: 3160 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - uid: 3161 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,4.5 + parent: 1 + type: Transform + - uid: 3163 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 3164 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,12.5 + parent: 1 + type: Transform + - uid: 3165 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 1 + type: Transform + - uid: 3166 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 3167 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 3168 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 3169 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 3170 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + type: Transform + - uid: 3171 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 1 + type: Transform + - uid: 3172 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - uid: 3173 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 + type: Transform + - uid: 3174 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 3175 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 3176 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - uid: 3177 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 3178 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 3179 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 3180 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 3181 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 1 + type: Transform + - uid: 3182 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1 + type: Transform + - uid: 3183 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,12.5 + parent: 1 + type: Transform + - uid: 3184 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,12.5 + parent: 1 + type: Transform + - uid: 3185 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + type: Transform + - uid: 3186 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 3190 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 3191 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + type: Transform + - uid: 3192 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,26.5 + parent: 1 + type: Transform + - uid: 3193 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 1 + type: Transform + - uid: 3194 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform + - uid: 3195 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 3196 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,28.5 + parent: 1 + type: Transform + - uid: 3199 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 3200 + components: + - pos: 11.5,11.5 + parent: 1 + type: Transform + - uid: 3201 + components: + - pos: 12.5,11.5 + parent: 1 + type: Transform + - uid: 3202 + components: + - pos: 15.5,11.5 + parent: 1 + type: Transform + - uid: 3203 + components: + - pos: 24.5,10.5 + parent: 1 + type: Transform + - uid: 3204 + components: + - pos: 24.5,9.5 + parent: 1 + type: Transform + - uid: 3205 + components: + - pos: 24.5,8.5 + parent: 1 + type: Transform + - uid: 3206 + components: + - pos: 20.5,11.5 + parent: 1 + type: Transform + - uid: 3207 + components: + - pos: 21.5,11.5 + parent: 1 + type: Transform + - uid: 3213 + components: + - pos: 31.5,15.5 + parent: 1 + type: Transform + - uid: 3214 + components: + - pos: 32.5,15.5 + parent: 1 + type: Transform + - uid: 3215 + components: + - pos: 33.5,15.5 + parent: 1 + type: Transform + - uid: 3216 + components: + - pos: 30.5,17.5 + parent: 1 + type: Transform + - uid: 3217 + components: + - pos: 30.5,13.5 + parent: 1 + type: Transform + - uid: 3219 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - uid: 3220 + components: + - pos: 32.5,24.5 + parent: 1 + type: Transform + - uid: 3221 + components: + - pos: 33.5,24.5 + parent: 1 + type: Transform + - uid: 3229 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-6.5 + parent: 1 + type: Transform + - uid: 3230 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - uid: 3231 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 3232 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + type: Transform + - uid: 3233 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-11.5 + parent: 1 + type: Transform + - uid: 3234 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 1 + type: Transform + - uid: 3235 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - uid: 3236 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-11.5 + parent: 1 + type: Transform + - uid: 3237 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-10.5 + parent: 1 + type: Transform + - uid: 3241 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - uid: 3243 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 3244 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - uid: 3245 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - uid: 3246 + components: + - pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 3247 + components: + - pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 3248 + components: + - pos: 5.5,-24.5 + parent: 1 + type: Transform + - uid: 3249 + components: + - pos: 7.5,-26.5 + parent: 1 + type: Transform + - uid: 3250 + components: + - pos: 9.5,-24.5 + parent: 1 + type: Transform + - uid: 3251 + components: + - pos: 10.5,-24.5 + parent: 1 + type: Transform + - uid: 3252 + components: + - pos: 12.5,-22.5 + parent: 1 + type: Transform + - uid: 3253 + components: + - pos: 12.5,-21.5 + parent: 1 + type: Transform + - uid: 3258 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - uid: 3259 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 1 + type: Transform + - uid: 3260 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - uid: 3261 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 3262 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 3263 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 3264 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 3265 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 3266 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 3267 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 1 + type: Transform + - uid: 3268 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1 + type: Transform + - uid: 3269 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 1 + type: Transform + - uid: 3270 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 1 + type: Transform + - uid: 3271 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 1 + type: Transform + - uid: 3272 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,0.5 + parent: 1 + type: Transform + - uid: 3273 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,0.5 + parent: 1 + type: Transform + - uid: 3327 + components: + - pos: 35.5,11.5 + parent: 1 + type: Transform + - uid: 3498 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + type: Transform + - uid: 3499 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + type: Transform + - uid: 3501 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + type: Transform + - uid: 3502 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 1 + type: Transform + - uid: 3503 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + type: Transform + - uid: 3504 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1 + type: Transform + - uid: 3505 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 1 + type: Transform + - uid: 3506 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1 + type: Transform + - uid: 3595 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform + - uid: 5008 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + type: Transform + - uid: 5009 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 5010 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + type: Transform + - uid: 5011 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + type: Transform + - uid: 5495 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - uid: 5498 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - uid: 5508 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 7083 + components: + - pos: 0.5,-27.5 + parent: 1 + type: Transform + - uid: 7084 + components: + - pos: 1.5,-27.5 + parent: 1 + type: Transform + - uid: 7085 + components: + - pos: 2.5,-27.5 + parent: 1 + type: Transform + - uid: 7086 + components: + - pos: -0.5,-32.5 + parent: 1 + type: Transform + - uid: 7087 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform + - uid: 7249 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + type: Transform + - uid: 7250 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 1 + type: Transform + - uid: 7301 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 11602 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 11603 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 11614 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 11615 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 11616 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 11617 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 11618 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 11619 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 11620 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 11621 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 11622 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 11637 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - uid: 11643 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform + - uid: 11653 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,12.5 + parent: 1 + type: Transform + - uid: 11687 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 1 + type: Transform + - uid: 11688 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 1 + type: Transform + - uid: 11689 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 1 + type: Transform + - uid: 11703 + components: + - rot: 3.141592653589793 rad + pos: 42.5,29.5 + parent: 1 + type: Transform + - uid: 11704 + components: + - rot: 3.141592653589793 rad + pos: 43.5,29.5 + parent: 1 + type: Transform +- proto: Fireplace + entities: + - uid: 4961 + components: + - pos: -5.5,21.5 + parent: 1 + type: Transform + - uid: 12563 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform +- proto: Flash + entities: + - uid: 5064 + components: + - pos: -0.72998714,31.713612 + parent: 1 + type: Transform +- proto: FlashlightLantern + entities: + - uid: 8929 + components: + - pos: -24.399763,-12.310871 + parent: 1 + type: Transform + - uid: 8930 + components: + - pos: -24.618513,-12.670246 + parent: 1 + type: Transform + - uid: 9550 + components: + - pos: 36.560673,24.84187 + parent: 1 + type: Transform + - uid: 9556 + components: + - pos: 36.357548,24.52937 + parent: 1 + type: Transform + - uid: 9732 + components: + - pos: -33.69252,18.729115 + parent: 1 + type: Transform + - uid: 9733 + components: + - pos: -33.34877,18.49474 + parent: 1 + type: Transform +- proto: FlashlightSeclite + entities: + - uid: 12531 + components: + - pos: -21.477749,-28.757965 + parent: 1 + type: Transform + - uid: 12532 + components: + - pos: 12.504955,21.180922 + parent: 1 + type: Transform + - uid: 12533 + components: + - pos: 12.504955,20.899672 + parent: 1 + type: Transform +- proto: Floodlight + entities: + - uid: 7307 + components: + - pos: 24.51259,-24.494957 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 5872 + components: + - pos: -23.5,14.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 5873 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 9655 + components: + - pos: 12.5,25.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 10117 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 12481 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorTileItemArcadeBlue2 + entities: + - uid: 8752 + components: + - pos: -39.510826,-23.477228 + parent: 1 + type: Transform + - count: 30 + type: Stack +- proto: FloorTileItemBoxing + entities: + - uid: 8725 + components: + - pos: -43.51509,-18.484356 + parent: 1 + type: Transform + - uid: 8726 + components: + - pos: -42.51509,-19.46873 + parent: 1 + type: Transform + - uid: 8727 + components: + - pos: -41.499466,-19.49998 + parent: 1 + type: Transform + - uid: 8728 + components: + - pos: -41.468216,-20.53123 + parent: 1 + type: Transform + - uid: 8729 + components: + - pos: -41.48384,-17.49998 + parent: 1 + type: Transform +- proto: FluteInstrument + entities: + - uid: 7805 + components: + - pos: -11.967718,-31.457222 + parent: 1 + type: Transform +- proto: FoamBlade + entities: + - uid: 12286 + components: + - pos: -11.477329,-33.530846 + parent: 1 + type: Transform +- proto: FoamCutlass + entities: + - uid: 9495 + components: + - pos: 16.350037,33.593983 + parent: 1 + type: Transform + - uid: 9496 + components: + - pos: 16.646912,33.578358 + parent: 1 + type: Transform +- proto: FoodBreadPlain + entities: + - uid: 7542 + components: + - pos: -36.085228,11.652148 + parent: 1 + type: Transform +- proto: FoodBurgerMime + entities: + - uid: 7785 + components: + - pos: -13.67487,-28.683897 + parent: 1 + type: Transform +- proto: FoodBurgerRobot + entities: + - uid: 12427 + components: + - pos: -12.540917,-11.312796 + parent: 1 + type: Transform +- proto: FoodCakeClown + entities: + - uid: 7789 + components: + - pos: -9.479882,-28.394722 + parent: 1 + type: Transform +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 12541 + components: + - pos: -31.503586,-35.411694 + parent: 1 + type: Transform +- proto: FoodCartCold + entities: + - uid: 1793 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: FoodCartHot + entities: + - uid: 1795 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: FoodContainerEgg + entities: + - uid: 6015 + components: + - pos: 0.6686959,0.7498474 + parent: 1 + type: Transform +- proto: FoodDonutJellySlugcat + entities: + - uid: 12540 + components: + - pos: 17.536278,36.515877 + parent: 1 + type: Transform +- proto: FoodDonutJellySpaceman + entities: + - uid: 12355 + components: + - pos: 47.534332,36.51474 + parent: 1 + type: Transform +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 12289 + components: + - pos: -13.495724,52.499588 + parent: 1 + type: Transform +- proto: FoodFrozenSnowconeClown + entities: + - uid: 7792 + components: + - pos: -9.261132,-30.191597 + parent: 1 + type: Transform +- proto: FoodFrozenSnowconeMime + entities: + - uid: 7784 + components: + - pos: -13.67487,-29.449522 + parent: 1 + type: Transform +- proto: FoodMeatClown + entities: + - uid: 7793 + components: + - pos: -9.698632,-30.535347 + parent: 1 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 7794 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform + - uid: 7795 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform + - uid: 7796 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform + - uid: 7797 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform + - uid: 7798 + components: + - pos: -9.370507,-31.394722 + parent: 1 + type: Transform +- proto: FoodTartMime + entities: + - uid: 7783 + components: + - pos: -13.20612,-28.277647 + parent: 1 + type: Transform +- proto: Fork + entities: + - uid: 5985 + components: + - pos: 1.2974858,10.5533285 + parent: 1 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 6339 + components: + - pos: -14.47985,-9.759103 + parent: 1 + type: Transform +- proto: GasFilterFlipped + entities: + - uid: 6840 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-17.5 + parent: 1 + type: Transform + - uid: 6841 + components: + - name: plasma filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-15.5 + parent: 1 + type: Transform + - uid: 6842 + components: + - name: water vapor filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-13.5 + parent: 1 + type: Transform + - uid: 6843 + components: + - name: n2o filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-11.5 + parent: 1 + type: Transform + - uid: 6844 + components: + - name: co2 filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-9.5 + parent: 1 + type: Transform + - uid: 6845 + components: + - name: o2 filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-7.5 + parent: 1 + type: Transform + - uid: 6846 + components: + - name: n2 filter + type: MetaData + - rot: 3.141592653589793 rad + pos: 38.5,-5.5 + parent: 1 + type: Transform +- proto: GasMinerCarbonDioxide + entities: + - uid: 6804 + components: + - pos: 44.5,-9.5 + parent: 1 + type: Transform +- proto: GasMinerNitrogenStation + entities: + - uid: 6808 + components: + - pos: 44.5,-5.5 + parent: 1 + type: Transform +- proto: GasMinerOxygenStation + entities: + - uid: 6807 + components: + - pos: 44.5,-7.5 + parent: 1 + type: Transform +- proto: GasMinerPlasma + entities: + - uid: 6806 + components: + - pos: 44.5,-15.5 + parent: 1 + type: Transform +- proto: GasMinerWaterVapor + entities: + - uid: 6805 + components: + - pos: 44.5,-13.5 + parent: 1 + type: Transform +- proto: GasMixer + entities: + - uid: 6942 + components: + - name: n2 + o2 to mix + type: MetaData + - pos: 37.5,-7.5 + parent: 1 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 6932 + components: + - name: distro mixer + type: MetaData + - rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + type: GasMixer + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6943 + components: + - name: co2 to mix + type: MetaData + - rot: 3.141592653589793 rad + pos: 37.5,-8.5 + parent: 1 + type: Transform + - uid: 6944 + components: + - name: n2o to mix + type: MetaData + - rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 1 + type: Transform + - uid: 6945 + components: + - name: water vapor to mix + type: MetaData + - rot: 3.141592653589793 rad + pos: 37.5,-12.5 + parent: 1 + type: Transform + - uid: 6946 + components: + - name: plasma to mix + type: MetaData + - rot: 3.141592653589793 rad + pos: 37.5,-14.5 + parent: 1 + type: Transform + - uid: 6947 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-16.5 + parent: 1 + type: Transform +- proto: GasOutletInjector + entities: + - uid: 1436 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-13.5 + parent: 1 + type: Transform + - uid: 6815 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 1 + type: Transform + - uid: 6816 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-15.5 + parent: 1 + type: Transform + - uid: 6817 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-11.5 + parent: 1 + type: Transform + - uid: 6818 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 1 + type: Transform + - uid: 6819 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-7.5 + parent: 1 + type: Transform + - uid: 6821 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 1 + type: Transform + - uid: 6959 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-22.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 6119 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 1 + type: Transform + - uid: 6120 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 1 + type: Transform + - uid: 6121 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 1 + type: Transform + - uid: 6122 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-14.5 + parent: 1 + type: Transform + - uid: 6839 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 1 + type: Transform + - uid: 6875 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-5.5 + parent: 1 + type: Transform + - uid: 6876 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 1 + type: Transform + - uid: 6877 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-9.5 + parent: 1 + type: Transform + - uid: 6878 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-11.5 + parent: 1 + type: Transform + - uid: 6879 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-13.5 + parent: 1 + type: Transform + - uid: 6880 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-15.5 + parent: 1 + type: Transform + - uid: 6881 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-17.5 + parent: 1 + type: Transform + - uid: 6958 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-22.5 + parent: 1 + type: Transform + - uid: 6992 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 6882 + components: + - pos: 45.5,-4.5 + parent: 1 + type: Transform + - uid: 6883 + components: + - pos: 45.5,-6.5 + parent: 1 + type: Transform + - uid: 6884 + components: + - pos: 45.5,-8.5 + parent: 1 + type: Transform + - uid: 6885 + components: + - pos: 45.5,-10.5 + parent: 1 + type: Transform + - uid: 6886 + components: + - pos: 45.5,-12.5 + parent: 1 + type: Transform + - uid: 6887 + components: + - pos: 45.5,-14.5 + parent: 1 + type: Transform + - uid: 6888 + components: + - pos: 45.5,-16.5 + parent: 1 + type: Transform + - uid: 6931 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6936 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 1 + type: Transform + - uid: 6941 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-7.5 + parent: 1 + type: Transform + - uid: 6948 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 1 + type: Transform + - uid: 6949 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 1 + type: Transform + - uid: 6950 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-18.5 + parent: 1 + type: Transform + - uid: 6979 + components: + - pos: 35.5,-16.5 + parent: 1 + type: Transform + - uid: 6982 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 1 + type: Transform + - uid: 10159 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10162 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10163 + components: + - pos: 23.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10164 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10165 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10166 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10167 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10186 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10196 + components: + - pos: 12.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10201 + components: + - pos: 13.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10203 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10273 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10274 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10275 + components: + - pos: 25.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10276 + components: + - rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10322 + components: + - pos: 38.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10323 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10353 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10354 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10401 + components: + - rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10408 + components: + - pos: 46.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10419 + components: + - pos: 45.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10425 + components: + - pos: 44.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10437 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10440 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10456 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10457 + components: + - rot: 3.141592653589793 rad + pos: 8.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10458 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10575 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10580 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10607 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10624 + components: + - pos: 32.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10637 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10646 + components: + - pos: 33.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10682 + components: + - pos: 4.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10686 + components: + - pos: 5.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10687 + components: + - rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10688 + components: + - rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10699 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10700 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10717 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10719 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10734 + components: + - pos: 1.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10752 + components: + - rot: 3.141592653589793 rad + pos: -5.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10753 + components: + - pos: -5.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10800 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10801 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10802 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10820 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10846 + components: + - rot: 3.141592653589793 rad + pos: -12.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10847 + components: + - rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10906 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10907 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10954 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10955 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11070 + components: + - pos: -35.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11071 + components: + - rot: 3.141592653589793 rad + pos: -37.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11072 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11078 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11079 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11109 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11120 + components: + - rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11130 + components: + - rot: 3.141592653589793 rad + pos: -39.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11210 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11211 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11226 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11227 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11228 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11318 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11319 + components: + - pos: -18.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11420 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11422 + components: + - pos: -13.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11483 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11484 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11530 + components: + - pos: 10.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11532 + components: + - pos: 11.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11533 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11536 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11537 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11544 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11555 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12142 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12143 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12144 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12145 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12146 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12149 + components: + - pos: -9.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12152 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12153 + components: + - rot: 3.141592653589793 rad + pos: -10.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12160 + components: + - pos: 0.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12161 + components: + - pos: -0.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12162 + components: + - pos: -1.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12163 + components: + - pos: -2.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12164 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12165 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12166 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12167 + components: + - rot: 3.141592653589793 rad + pos: -6.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12168 + components: + - rot: 3.141592653589793 rad + pos: -2.5,39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12169 + components: + - rot: 3.141592653589793 rad + pos: -1.5,37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12170 + components: + - rot: 3.141592653589793 rad + pos: -0.5,35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12171 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12172 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12173 + components: + - rot: 3.141592653589793 rad + pos: -10.5,37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12174 + components: + - pos: -8.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12175 + components: + - rot: 3.141592653589793 rad + pos: -9.5,42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12177 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,34.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12199 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12229 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12230 + components: + - pos: -4.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12231 + components: + - rot: 3.141592653589793 rad + pos: -8.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12232 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12240 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12241 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12242 + components: + - rot: 3.141592653589793 rad + pos: -9.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12243 + components: + - rot: 3.141592653589793 rad + pos: -10.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12244 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12245 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12246 + components: + - pos: -3.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12247 + components: + - pos: -2.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12262 + components: + - pos: -9.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12263 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12264 + components: + - rot: 3.141592653589793 rad + pos: -3.5,55.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12265 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 1837 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10454 + components: + - pos: 7.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10519 + components: + - pos: 21.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10728 + components: + - pos: 0.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10844 + components: + - pos: -12.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10877 + components: + - pos: -15.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10926 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11051 + components: + - pos: -35.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11191 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11197 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11256 + components: + - pos: -15.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11522 + components: + - pos: 4.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12196 + components: + - pos: -7.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12249 + components: + - pos: -2.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 926 + components: + - pos: 33.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 949 + components: + - pos: 33.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3351 + components: + - pos: 38.5,-4.5 + parent: 1 + type: Transform + - uid: 5007 + components: + - rot: 3.141592653589793 rad + pos: 42.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6103 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 1 + type: Transform + - uid: 6105 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 1 + type: Transform + - uid: 6111 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 1 + type: Transform + - uid: 6112 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 1 + type: Transform + - uid: 6113 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 1 + type: Transform + - uid: 6114 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 1 + type: Transform + - uid: 6115 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-14.5 + parent: 1 + type: Transform + - uid: 6116 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 6117 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 6118 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 6824 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 1 + type: Transform + - uid: 6825 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 6826 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 6827 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 6828 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-14.5 + parent: 1 + type: Transform + - uid: 6829 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 6831 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-17.5 + parent: 1 + type: Transform + - uid: 6832 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-15.5 + parent: 1 + type: Transform + - uid: 6833 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 1 + type: Transform + - uid: 6834 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 1 + type: Transform + - uid: 6835 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 1 + type: Transform + - uid: 6836 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-7.5 + parent: 1 + type: Transform + - uid: 6837 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 1 + type: Transform + - uid: 6838 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 6847 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 6848 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 1 + type: Transform + - uid: 6849 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 6850 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 6851 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 1 + type: Transform + - uid: 6852 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 6853 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 6854 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 1 + type: Transform + - uid: 6855 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 6856 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 6857 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 1 + type: Transform + - uid: 6858 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 6859 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 6860 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 1 + type: Transform + - uid: 6861 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 1 + type: Transform + - uid: 6862 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 6863 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 1 + type: Transform + - uid: 6864 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 6865 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 6866 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 1 + type: Transform + - uid: 6867 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 6889 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 6890 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 1 + type: Transform + - uid: 6891 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-16.5 + parent: 1 + type: Transform + - uid: 6892 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 1 + type: Transform + - uid: 6893 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-16.5 + parent: 1 + type: Transform + - uid: 6894 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 1 + type: Transform + - uid: 6895 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 1 + type: Transform + - uid: 6896 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-14.5 + parent: 1 + type: Transform + - uid: 6897 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-14.5 + parent: 1 + type: Transform + - uid: 6898 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-14.5 + parent: 1 + type: Transform + - uid: 6899 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 6900 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 1 + type: Transform + - uid: 6901 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 1 + type: Transform + - uid: 6902 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 1 + type: Transform + - uid: 6903 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 1 + type: Transform + - uid: 6904 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 6905 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 1 + type: Transform + - uid: 6906 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 6907 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 6908 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 1 + type: Transform + - uid: 6909 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 6910 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 1 + type: Transform + - uid: 6911 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 1 + type: Transform + - uid: 6912 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-8.5 + parent: 1 + type: Transform + - uid: 6913 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 1 + type: Transform + - uid: 6914 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 6915 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 1 + type: Transform + - uid: 6916 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 6917 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 1 + type: Transform + - uid: 6918 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 1 + type: Transform + - uid: 6919 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 6920 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 1 + type: Transform + - uid: 6921 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 1 + type: Transform + - uid: 6922 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-4.5 + parent: 1 + type: Transform + - uid: 6923 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 1 + type: Transform + - uid: 6924 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 1 + type: Transform + - uid: 6925 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 1 + type: Transform + - uid: 6926 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-8.5 + parent: 1 + type: Transform + - uid: 6927 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 1 + type: Transform + - uid: 6928 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 1 + type: Transform + - uid: 6929 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 1 + type: Transform + - uid: 6930 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-16.5 + parent: 1 + type: Transform + - uid: 6933 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 1 + type: Transform + - uid: 6934 + components: + - pos: 35.5,-5.5 + parent: 1 + type: Transform + - uid: 6935 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 6939 + components: + - pos: 36.5,-5.5 + parent: 1 + type: Transform + - uid: 6940 + components: + - pos: 36.5,-6.5 + parent: 1 + type: Transform + - uid: 6951 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 6952 + components: + - pos: 36.5,-20.5 + parent: 1 + type: Transform + - uid: 6953 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 6954 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-18.5 + parent: 1 + type: Transform + - uid: 6955 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 6956 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 1 + type: Transform + - uid: 6957 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 6960 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-15.5 + parent: 1 + type: Transform + - uid: 6961 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 1 + type: Transform + - uid: 6962 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 1 + type: Transform + - uid: 6963 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 1 + type: Transform + - uid: 6965 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6966 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6981 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-18.5 + parent: 1 + type: Transform + - uid: 6991 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 8768 + components: + - pos: -16.5,-48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8769 + components: + - pos: -16.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8770 + components: + - pos: -16.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8771 + components: + - pos: -16.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8772 + components: + - pos: -16.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8773 + components: + - pos: -16.5,-30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8774 + components: + - pos: -16.5,-31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8775 + components: + - pos: -16.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8776 + components: + - pos: -16.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8777 + components: + - pos: -16.5,-34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8778 + components: + - pos: -16.5,-35.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8779 + components: + - pos: -16.5,-36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8780 + components: + - pos: -16.5,-37.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8781 + components: + - pos: -16.5,-38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8782 + components: + - pos: -16.5,-39.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8783 + components: + - pos: -16.5,-40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8784 + components: + - pos: -16.5,-41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8785 + components: + - pos: -16.5,-42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8786 + components: + - pos: -16.5,-43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8787 + components: + - pos: -16.5,-44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8788 + components: + - pos: -16.5,-45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8789 + components: + - pos: -16.5,-46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8790 + components: + - pos: -16.5,-47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8791 + components: + - pos: -15.5,-47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8792 + components: + - pos: -15.5,-48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8793 + components: + - pos: -14.5,-45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 8794 + components: + - pos: -14.5,-45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10091 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10092 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10093 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10094 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10095 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10096 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10097 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10098 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10099 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10100 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10105 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10106 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10107 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10108 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10109 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10110 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10111 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10118 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10119 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10120 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10121 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10122 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10123 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10124 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10125 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10126 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10127 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10128 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10129 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10130 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10131 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10132 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10133 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10134 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10135 + components: + - pos: 16.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10136 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10137 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10146 + components: + - pos: 23.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10147 + components: + - pos: 22.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10148 + components: + - pos: 23.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10150 + components: + - pos: 23.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10151 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10152 + components: + - pos: 23.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10154 + components: + - pos: 22.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10155 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10156 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10157 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10158 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10168 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10169 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10170 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10171 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10172 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10173 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10174 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10175 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10176 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10177 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10178 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10179 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10180 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10181 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10182 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10183 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10184 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10185 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10187 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10188 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10189 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10191 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10193 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10195 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10207 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10208 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10209 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10211 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10212 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10213 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10214 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10215 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10216 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10221 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10222 + components: + - rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10223 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10224 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10228 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10229 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10231 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10232 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10233 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10234 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10235 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10238 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10239 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10240 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10241 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10242 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10243 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10244 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10245 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10249 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10250 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10251 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10252 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10253 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10256 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10257 + components: + - rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10258 + components: + - rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10259 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10260 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10261 + components: + - rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10262 + components: + - rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10263 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10264 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10266 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10267 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10268 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10269 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10278 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10280 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10281 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10282 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10283 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10284 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10285 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10286 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10287 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10288 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10289 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10290 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10291 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10292 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10293 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10294 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10295 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10296 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10297 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10298 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10299 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10300 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10301 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10302 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10303 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10304 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10305 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10306 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10307 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10308 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10309 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10311 + components: + - pos: 30.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10312 + components: + - pos: 30.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10313 + components: + - pos: 30.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10314 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10315 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10316 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10317 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10318 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10319 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10320 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10321 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10324 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10325 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10326 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10327 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10328 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10329 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10330 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10331 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10332 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10333 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10334 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10335 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10336 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10337 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10338 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10339 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10340 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10341 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10342 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10343 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10344 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10345 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10346 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10347 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10348 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10349 + components: + - pos: 46.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10350 + components: + - pos: 46.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10351 + components: + - pos: 46.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10352 + components: + - pos: 44.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10357 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10366 + components: + - pos: 46.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10367 + components: + - pos: 46.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10368 + components: + - pos: 46.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10369 + components: + - pos: 46.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10370 + components: + - pos: 46.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10371 + components: + - pos: 46.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10372 + components: + - pos: 46.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10373 + components: + - pos: 46.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10374 + components: + - pos: 46.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10375 + components: + - pos: 46.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10376 + components: + - pos: 46.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10377 + components: + - pos: 44.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10378 + components: + - pos: 44.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10379 + components: + - pos: 44.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10380 + components: + - pos: 44.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10381 + components: + - pos: 44.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10382 + components: + - pos: 44.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10383 + components: + - pos: 44.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10384 + components: + - pos: 44.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10385 + components: + - pos: 44.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10392 + components: + - pos: 44.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10393 + components: + - pos: 46.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10394 + components: + - pos: 46.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10395 + components: + - pos: 46.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10396 + components: + - pos: 46.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10397 + components: + - pos: 44.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10398 + components: + - pos: 44.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10399 + components: + - pos: 44.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10400 + components: + - pos: 44.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10404 + components: + - rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10405 + components: + - rot: 3.141592653589793 rad + pos: 44.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10406 + components: + - rot: 3.141592653589793 rad + pos: 44.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10407 + components: + - rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10409 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10410 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10411 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10412 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10415 + components: + - pos: 44.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10416 + components: + - rot: 3.141592653589793 rad + pos: 43.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10417 + components: + - rot: 3.141592653589793 rad + pos: 42.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10418 + components: + - rot: 3.141592653589793 rad + pos: 42.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10420 + components: + - rot: 3.141592653589793 rad + pos: 43.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10421 + components: + - rot: 3.141592653589793 rad + pos: 45.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10422 + components: + - rot: 3.141592653589793 rad + pos: 43.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10423 + components: + - pos: 7.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10424 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10426 + components: + - rot: 3.141592653589793 rad + pos: 44.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10427 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10429 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10430 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10434 + components: + - pos: 43.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10435 + components: + - pos: 43.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10438 + components: + - pos: 43.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10439 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10441 + components: + - pos: 9.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10443 + components: + - pos: 9.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10444 + components: + - rot: 3.141592653589793 rad + pos: 42.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10445 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10446 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10452 + components: + - pos: 9.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10455 + components: + - rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10460 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10461 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10462 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10463 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10464 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10465 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10466 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10469 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10470 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10471 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10472 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10473 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10476 + components: + - rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10477 + components: + - rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10478 + components: + - rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10480 + components: + - rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10481 + components: + - rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10482 + components: + - rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10483 + components: + - rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10485 + components: + - pos: 12.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10486 + components: + - pos: 12.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10487 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10488 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10489 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10490 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10491 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10496 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10497 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10498 + components: + - pos: 15.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10499 + components: + - pos: 15.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10500 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10501 + components: + - pos: 18.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10502 + components: + - pos: 18.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10503 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10504 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10505 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10506 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10508 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10515 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10516 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10517 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10521 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10522 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10523 + components: + - rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10524 + components: + - rot: 3.141592653589793 rad + pos: 21.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10525 + components: + - rot: 3.141592653589793 rad + pos: 21.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10526 + components: + - rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10527 + components: + - rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10528 + components: + - rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10529 + components: + - rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10530 + components: + - rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10531 + components: + - rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10532 + components: + - rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10533 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10534 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10535 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10536 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10537 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10538 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10539 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10540 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10541 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10542 + components: + - pos: 26.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10545 + components: + - pos: 26.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10546 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10553 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10554 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10555 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10557 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10558 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10559 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10560 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10563 + components: + - rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10564 + components: + - rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10565 + components: + - rot: 3.141592653589793 rad + pos: 31.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10566 + components: + - rot: 3.141592653589793 rad + pos: 31.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10567 + components: + - rot: 3.141592653589793 rad + pos: 33.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10568 + components: + - rot: 3.141592653589793 rad + pos: 33.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10569 + components: + - rot: 3.141592653589793 rad + pos: 33.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10570 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10571 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10572 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10573 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10574 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10577 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10578 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10579 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10583 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10584 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10585 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10586 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10587 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10588 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10589 + components: + - rot: 3.141592653589793 rad + pos: 33.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10590 + components: + - rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10591 + components: + - rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10592 + components: + - rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10593 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10594 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10595 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10596 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10597 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10598 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10608 + components: + - rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10609 + components: + - rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10610 + components: + - rot: 3.141592653589793 rad + pos: 32.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10611 + components: + - rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10612 + components: + - rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10613 + components: + - rot: 3.141592653589793 rad + pos: 32.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10614 + components: + - rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10616 + components: + - rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10617 + components: + - rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10618 + components: + - rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10619 + components: + - rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10620 + components: + - rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10621 + components: + - rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10622 + components: + - rot: 3.141592653589793 rad + pos: 33.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10625 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10626 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10627 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10628 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10629 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10630 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10631 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10632 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10633 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10634 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10635 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10636 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10638 + components: + - rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10644 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10645 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10648 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10649 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10650 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10652 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10653 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10655 + components: + - pos: 30.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10656 + components: + - pos: 28.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10657 + components: + - pos: 28.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10666 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10667 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10670 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10671 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10672 + components: + - pos: 5.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10673 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10674 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10676 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10677 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10678 + components: + - pos: 4.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10679 + components: + - pos: 4.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10680 + components: + - pos: 4.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10681 + components: + - pos: 4.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10685 + components: + - rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10689 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10690 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10691 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10692 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10693 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10694 + components: + - pos: 0.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10695 + components: + - pos: 3.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10701 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10702 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10703 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10704 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10705 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10708 + components: + - pos: 1.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10709 + components: + - pos: 1.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10710 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10711 + components: + - pos: 0.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10712 + components: + - pos: 0.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10715 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10716 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10718 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10721 + components: + - pos: 4.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10722 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10723 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10730 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10731 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10732 + components: + - rot: 3.141592653589793 rad + pos: 1.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10733 + components: + - rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10735 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10737 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10740 + components: + - rot: 3.141592653589793 rad + pos: -2.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10741 + components: + - rot: 3.141592653589793 rad + pos: -2.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10742 + components: + - rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10743 + components: + - rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10744 + components: + - rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10745 + components: + - rot: 3.141592653589793 rad + pos: -3.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10746 + components: + - rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10747 + components: + - rot: 3.141592653589793 rad + pos: -3.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10754 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10755 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10756 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10757 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10759 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10760 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10761 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10766 + components: + - rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10767 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10768 + components: + - rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10769 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10770 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10771 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10774 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10775 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10776 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10777 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10779 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10780 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10781 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10782 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10783 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10787 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10788 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10789 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10790 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10791 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10792 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10793 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10795 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10796 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10797 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10798 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10799 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10804 + components: + - rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10805 + components: + - rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10807 + components: + - rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10808 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10809 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10810 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10811 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10816 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10817 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10818 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10819 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10822 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10823 + components: + - pos: -6.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10824 + components: + - pos: -6.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10825 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10826 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10827 + components: + - pos: -6.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10830 + components: + - rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10831 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10832 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10833 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10834 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10835 + components: + - pos: -6.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10838 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10839 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10840 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10841 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10848 + components: + - rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10849 + components: + - rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10850 + components: + - rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10851 + components: + - rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10852 + components: + - rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10853 + components: + - rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10856 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10857 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10858 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10859 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10860 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10861 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10862 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10865 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10866 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10867 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10868 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10869 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10870 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10871 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10873 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10874 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10881 + components: + - rot: 3.141592653589793 rad + pos: -14.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10882 + components: + - rot: 3.141592653589793 rad + pos: -14.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10883 + components: + - rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10884 + components: + - rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10885 + components: + - rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10886 + components: + - rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10887 + components: + - rot: 3.141592653589793 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10888 + components: + - rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10889 + components: + - rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10890 + components: + - rot: 3.141592653589793 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10891 + components: + - rot: 3.141592653589793 rad + pos: -16.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10892 + components: + - rot: 3.141592653589793 rad + pos: -16.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10893 + components: + - rot: 3.141592653589793 rad + pos: -16.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10894 + components: + - rot: 3.141592653589793 rad + pos: -15.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10895 + components: + - rot: 3.141592653589793 rad + pos: -15.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10896 + components: + - rot: 3.141592653589793 rad + pos: -12.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10897 + components: + - rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10898 + components: + - rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10904 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10909 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10910 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10911 + components: + - pos: -23.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10912 + components: + - pos: -23.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10913 + components: + - pos: -23.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10914 + components: + - pos: -24.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10915 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10916 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10917 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10918 + components: + - pos: -24.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10919 + components: + - pos: -25.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10920 + components: + - pos: -24.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10927 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10928 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10929 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10930 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10931 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10932 + components: + - rot: 3.141592653589793 rad + pos: -16.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10933 + components: + - rot: 3.141592653589793 rad + pos: -16.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10934 + components: + - rot: 3.141592653589793 rad + pos: -15.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10935 + components: + - rot: 3.141592653589793 rad + pos: -15.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10936 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10937 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10938 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10939 + components: + - pos: -15.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10940 + components: + - pos: -16.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10941 + components: + - pos: -16.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10942 + components: + - pos: -15.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10950 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10951 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10952 + components: + - pos: -15.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10953 + components: + - pos: -15.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10956 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10957 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10958 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10959 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10960 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10961 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10962 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10963 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10964 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10965 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10966 + components: + - pos: -16.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10973 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10974 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10975 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10976 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10977 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10978 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10979 + components: + - pos: -6.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10980 + components: + - pos: -6.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10985 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10986 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10987 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10988 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10989 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10990 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10991 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10993 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10996 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10997 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10998 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10999 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11000 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11001 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11002 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11003 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11004 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11005 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11006 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11007 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11008 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11009 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11010 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11011 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11012 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11013 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11014 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11015 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11016 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11017 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11018 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11019 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11020 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11021 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11022 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11023 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11024 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11025 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11026 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11027 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11028 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11029 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11030 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11031 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11032 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11033 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11034 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11035 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11036 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11037 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11038 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11039 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11040 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11041 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11043 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11044 + components: + - pos: -33.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11049 + components: + - pos: -33.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11052 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11053 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11060 + components: + - pos: -35.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11061 + components: + - pos: -35.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11062 + components: + - pos: -35.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11063 + components: + - pos: -33.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11064 + components: + - pos: -33.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11065 + components: + - pos: -33.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11068 + components: + - pos: -35.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11069 + components: + - pos: -35.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11073 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11074 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11075 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11076 + components: + - pos: -33.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11077 + components: + - pos: -33.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11080 + components: + - rot: 3.141592653589793 rad + pos: -32.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11081 + components: + - rot: 3.141592653589793 rad + pos: -32.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11086 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11087 + components: + - rot: 3.141592653589793 rad + pos: -37.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11088 + components: + - rot: 3.141592653589793 rad + pos: -37.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11089 + components: + - pos: -36.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11090 + components: + - pos: -36.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11092 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11093 + components: + - rot: 3.141592653589793 rad + pos: -36.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11095 + components: + - rot: 3.141592653589793 rad + pos: -37.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11096 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11097 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11098 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11099 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11100 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11101 + components: + - pos: -41.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11102 + components: + - pos: -41.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11103 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11104 + components: + - pos: -41.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11105 + components: + - pos: -41.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11106 + components: + - pos: -41.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11107 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11108 + components: + - pos: -41.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11111 + components: + - rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11112 + components: + - rot: 3.141592653589793 rad + pos: -40.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11113 + components: + - rot: 3.141592653589793 rad + pos: -40.5,18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11114 + components: + - rot: 3.141592653589793 rad + pos: -40.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11125 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11126 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11127 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11128 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11132 + components: + - rot: 3.141592653589793 rad + pos: -39.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11133 + components: + - rot: 3.141592653589793 rad + pos: -39.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11134 + components: + - rot: 3.141592653589793 rad + pos: -39.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11135 + components: + - rot: 3.141592653589793 rad + pos: -39.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11136 + components: + - rot: 3.141592653589793 rad + pos: -39.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11137 + components: + - rot: 3.141592653589793 rad + pos: -39.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11138 + components: + - rot: 3.141592653589793 rad + pos: -39.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11139 + components: + - rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11141 + components: + - rot: 3.141592653589793 rad + pos: -39.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11142 + components: + - rot: 3.141592653589793 rad + pos: -39.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11143 + components: + - rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11144 + components: + - rot: 3.141592653589793 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11145 + components: + - rot: 3.141592653589793 rad + pos: -39.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11146 + components: + - rot: 3.141592653589793 rad + pos: -39.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11152 + components: + - rot: 3.141592653589793 rad + pos: -37.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11153 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11154 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11155 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11156 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11157 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11158 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11159 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11160 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11165 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11166 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11167 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11168 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11169 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11170 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11171 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11172 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11173 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11177 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11178 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11179 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11180 + components: + - rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11181 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11182 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11183 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11184 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11185 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11186 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11187 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11188 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11189 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11193 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11196 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11200 + components: + - pos: -8.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11201 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11202 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11203 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11204 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11205 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11206 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11207 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11208 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11209 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11212 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11213 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11214 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11215 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11216 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11217 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11218 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11219 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11220 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11221 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11222 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11223 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11224 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11225 + components: + - pos: -6.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11229 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11231 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11232 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11235 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11236 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11237 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11238 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11239 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11240 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11243 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11244 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11245 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11246 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11247 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11248 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11249 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11250 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11251 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11252 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11253 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11257 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11258 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11262 + components: + - pos: -15.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11263 + components: + - pos: -15.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11264 + components: + - pos: -15.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11265 + components: + - pos: -15.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11266 + components: + - pos: -15.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11267 + components: + - pos: -15.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11268 + components: + - pos: -15.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11269 + components: + - pos: -16.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11270 + components: + - pos: -16.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11271 + components: + - pos: -16.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11272 + components: + - pos: -16.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11273 + components: + - pos: -16.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11274 + components: + - pos: -16.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11277 + components: + - pos: -16.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11278 + components: + - pos: -16.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11279 + components: + - pos: -16.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11280 + components: + - pos: -15.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11281 + components: + - pos: -15.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11282 + components: + - pos: -15.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11288 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11289 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11290 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11291 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11292 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11293 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11294 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11295 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11296 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11297 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11298 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11299 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11300 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11301 + components: + - pos: -26.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11302 + components: + - pos: -26.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11303 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11304 + components: + - pos: -24.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11305 + components: + - pos: -24.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11306 + components: + - pos: -24.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11309 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11310 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11311 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11312 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11313 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11314 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11315 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11316 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11317 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11324 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11325 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11326 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11327 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11328 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11329 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11333 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11334 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11335 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11336 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11338 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11339 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11340 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11341 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11342 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11345 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11346 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11348 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11349 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11350 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11351 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11352 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11353 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11354 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11356 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11357 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11358 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11359 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11360 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11361 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11362 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11363 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11364 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11365 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11368 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11369 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11370 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11371 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11372 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11373 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11374 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11375 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11376 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11377 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11378 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11379 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11380 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11381 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11382 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11383 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11384 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11385 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11386 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11393 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11394 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11395 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11396 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11397 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11398 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11399 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11400 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11401 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11404 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11405 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11406 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11407 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11412 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11413 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11414 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11415 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11417 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11418 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11419 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11421 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11423 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11424 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11425 + components: + - pos: -14.5,-44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11426 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11427 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11428 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11429 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11430 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11431 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11432 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11434 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11435 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11436 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11437 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11438 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11447 + components: + - pos: -10.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11448 + components: + - pos: -10.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11449 + components: + - pos: -10.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11450 + components: + - pos: -14.5,-43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11451 + components: + - pos: -11.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11452 + components: + - pos: -11.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11453 + components: + - pos: -6.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11454 + components: + - pos: -6.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11455 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11456 + components: + - pos: -5.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11457 + components: + - pos: -5.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11458 + components: + - pos: -5.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11459 + components: + - pos: -2.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11460 + components: + - pos: -2.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11461 + components: + - pos: -1.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11462 + components: + - pos: -1.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11463 + components: + - pos: -1.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11464 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11465 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11466 + components: + - pos: -3.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11467 + components: + - pos: -3.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11468 + components: + - pos: -3.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11469 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11470 + components: + - pos: -2.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11487 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11488 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11489 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11490 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11491 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11492 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11493 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11494 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11495 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11496 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11497 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11498 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11499 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11500 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11501 + components: + - pos: -3.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11502 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11503 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11504 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11505 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11506 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11515 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11517 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11518 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11519 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11520 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11521 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11523 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11524 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11525 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11534 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11535 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11540 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11541 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11542 + components: + - pos: 9.5,-18.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11545 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11546 + components: + - pos: 10.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11547 + components: + - pos: 10.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11548 + components: + - pos: 10.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11549 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11550 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11551 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11556 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11557 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11558 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11559 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11560 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11561 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11562 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11563 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11564 + components: + - pos: 15.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11565 + components: + - pos: 15.5,-24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11566 + components: + - pos: 15.5,-23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11567 + components: + - pos: 15.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11569 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11570 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11571 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11572 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11573 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11574 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11575 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11576 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11577 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11578 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11579 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11580 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11581 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11582 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11583 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11584 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11585 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11586 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11644 + components: + - rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12127 + components: + - pos: -14.5,-42.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12128 + components: + - pos: -14.5,-41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12129 + components: + - pos: -14.5,-40.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12130 + components: + - pos: -14.5,-39.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12131 + components: + - pos: -14.5,-38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12132 + components: + - pos: -14.5,-37.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12133 + components: + - pos: -14.5,-36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12134 + components: + - pos: -14.5,-35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12135 + components: + - pos: -13.5,-33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12136 + components: + - pos: -13.5,-32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12137 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12138 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12139 + components: + - pos: -13.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12140 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12141 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12150 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12151 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12154 + components: + - rot: 3.141592653589793 rad + pos: -10.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12155 + components: + - rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12156 + components: + - rot: 3.141592653589793 rad + pos: 0.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12157 + components: + - rot: 3.141592653589793 rad + pos: 0.5,31.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12158 + components: + - rot: 3.141592653589793 rad + pos: 0.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12159 + components: + - rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12176 + components: + - rot: 3.141592653589793 rad + pos: -10.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12178 + components: + - pos: -9.5,35.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12179 + components: + - pos: -9.5,36.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12180 + components: + - pos: -10.5,38.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12181 + components: + - rot: 3.141592653589793 rad + pos: -8.5,41.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12182 + components: + - rot: 3.141592653589793 rad + pos: -6.5,42.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12183 + components: + - rot: 3.141592653589793 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12184 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12185 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12186 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,41.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12187 + components: + - pos: -2.5,40.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12188 + components: + - pos: -1.5,38.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12189 + components: + - pos: -0.5,36.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12190 + components: + - pos: 0.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12191 + components: + - pos: -9.5,43.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12192 + components: + - pos: -9.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12193 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12194 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12195 + components: + - rot: 3.141592653589793 rad + pos: -6.5,45.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12200 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12201 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12202 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12203 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12204 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12205 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12206 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12208 + components: + - pos: -7.5,46.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12209 + components: + - pos: -7.5,47.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12210 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12211 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12212 + components: + - rot: 3.141592653589793 rad + pos: -7.5,48.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12214 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12215 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12216 + components: + - rot: 3.141592653589793 rad + pos: -8.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12217 + components: + - rot: 3.141592653589793 rad + pos: -8.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12218 + components: + - rot: 3.141592653589793 rad + pos: -4.5,50.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12220 + components: + - pos: -4.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12223 + components: + - rot: 3.141592653589793 rad + pos: -8.5,52.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12224 + components: + - rot: 3.141592653589793 rad + pos: -8.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12225 + components: + - rot: 3.141592653589793 rad + pos: -4.5,54.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12226 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12227 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12228 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,55.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12233 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12234 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12235 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12236 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12237 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12238 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12239 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12250 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12251 + components: + - pos: -2.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12252 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12253 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12254 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12255 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12256 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12257 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,56.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12258 + components: + - rot: 3.141592653589793 rad + pos: -10.5,54.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12259 + components: + - rot: 3.141592653589793 rad + pos: -10.5,53.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12260 + components: + - rot: 3.141592653589793 rad + pos: -10.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12261 + components: + - rot: 3.141592653589793 rad + pos: -10.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12266 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12267 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12273 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12274 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12275 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 6820 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 1 + type: Transform + - uid: 6830 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-18.5 + parent: 1 + type: Transform + - uid: 6937 + components: + - pos: 36.5,-4.5 + parent: 1 + type: Transform + - uid: 6938 + components: + - pos: 37.5,-6.5 + parent: 1 + type: Transform + - uid: 6974 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 1 + type: Transform + - uid: 6975 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 1 + type: Transform + - uid: 6983 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 1 + type: Transform + - uid: 7022 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8765 + components: + - pos: -16.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 8766 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 9158 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10101 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10102 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10103 + components: + - pos: 26.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10104 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10138 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10139 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10140 + components: + - pos: 18.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10141 + components: + - pos: 16.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10149 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10153 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10194 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10198 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10199 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10200 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10202 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10205 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10206 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10210 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10217 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10218 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10225 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10226 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10227 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10230 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10254 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10255 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10265 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10270 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10271 + components: + - pos: 16.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10272 + components: + - rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10277 + components: + - rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10279 + components: + - pos: 30.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10310 + components: + - pos: 31.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10355 + components: + - rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10356 + components: + - pos: 41.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10364 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10365 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10386 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10387 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10402 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10403 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10428 + components: + - rot: 3.141592653589793 rad + pos: 43.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10431 + components: + - rot: 3.141592653589793 rad + pos: 42.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10436 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10447 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10453 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10459 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10467 + components: + - pos: 12.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10468 + components: + - pos: 11.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10479 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10484 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10492 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10493 + components: + - pos: 15.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10494 + components: + - rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10495 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10507 + components: + - pos: 16.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10518 + components: + - rot: 3.141592653589793 rad + pos: 20.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10520 + components: + - pos: 22.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10543 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10544 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10556 + components: + - rot: 3.141592653589793 rad + pos: 31.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10561 + components: + - pos: 30.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10562 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10576 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10581 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10582 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10605 + components: + - pos: 31.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10606 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10615 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10623 + components: + - rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10651 + components: + - pos: 28.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10654 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10668 + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10669 + components: + - rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10675 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10683 + components: + - rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10684 + components: + - pos: 3.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10698 + components: + - rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10713 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10714 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10720 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10729 + components: + - rot: 3.141592653589793 rad + pos: -1.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10736 + components: + - pos: -0.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10738 + components: + - pos: -2.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10739 + components: + - pos: -3.5,28.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10758 + components: + - rot: 3.141592653589793 rad + pos: -7.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10764 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10765 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10784 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10794 + components: + - rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10803 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10806 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10815 + components: + - rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10828 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10829 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10836 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10837 + components: + - rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10845 + components: + - pos: -11.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10863 + components: + - rot: 3.141592653589793 rad + pos: -16.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10864 + components: + - pos: -17.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10872 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10875 + components: + - pos: -14.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10876 + components: + - pos: -20.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10878 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10905 + components: + - rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10908 + components: + - rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10925 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10946 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10947 + components: + - rot: 3.141592653589793 rad + pos: -13.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10948 + components: + - pos: -14.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10949 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10981 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10982 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10983 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10984 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10992 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11045 + components: + - rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11046 + components: + - rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11047 + components: + - pos: -13.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11048 + components: + - pos: -24.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11050 + components: + - rot: 3.141592653589793 rad + pos: -34.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11056 + components: + - rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11066 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11067 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11091 + components: + - pos: -37.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11094 + components: + - pos: -36.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11110 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11115 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11116 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11117 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11118 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11119 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11131 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11140 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11161 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11164 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11190 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11192 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11194 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11198 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11199 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11254 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11255 + components: + - pos: -16.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11259 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11275 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11276 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11287 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11307 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11308 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11343 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11344 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11347 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11355 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11387 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11388 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11389 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11390 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11391 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11392 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11402 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11403 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11416 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11433 + components: + - pos: -8.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11439 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11440 + components: + - pos: -1.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11441 + components: + - pos: -2.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11442 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11443 + components: + - pos: -5.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11444 + components: + - pos: -6.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11445 + components: + - pos: -10.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11446 + components: + - pos: -11.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11485 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11486 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11513 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11514 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11516 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11528 + components: + - pos: 9.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11529 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11531 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11543 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11553 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11554 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11568 + components: + - pos: 14.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12197 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12198 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12207 + components: + - pos: -6.5,48.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12213 + components: + - pos: -7.5,49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12219 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12221 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12222 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12248 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 1836 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 3835 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6101 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 1 + type: Transform + - uid: 6102 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 1 + type: Transform + - uid: 6109 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 1 + type: Transform + - uid: 6110 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 1 + type: Transform + - uid: 6984 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 1 + type: Transform + - uid: 6985 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 1 + type: Transform + - uid: 6986 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-13.5 + parent: 1 + type: Transform + - uid: 7199 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 1 + type: Transform + - uid: 7203 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 3239 + components: + - name: waste pump + type: MetaData + - pos: 38.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 6104 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 1 + type: Transform + - uid: 6106 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 1 + type: Transform + - uid: 6107 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 1 + type: Transform + - uid: 6108 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 1 + type: Transform + - uid: 6868 + components: + - name: n2 pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 1 + type: Transform + - uid: 6869 + components: + - name: o2 pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 1 + type: Transform + - uid: 6870 + components: + - name: co2 pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 1 + type: Transform + - uid: 6871 + components: + - name: n2o pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 1 + type: Transform + - uid: 6872 + components: + - name: water vapor pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 1 + type: Transform + - uid: 6873 + components: + - name: plasma pump + type: MetaData + - rot: -1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 1 + type: Transform + - uid: 6874 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-16.5 + parent: 1 + type: Transform + - uid: 6964 + components: + - name: distro pump + type: MetaData + - pos: 35.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 6976 + components: + - name: mix to space pump + type: MetaData + - pos: 35.5,-17.5 + parent: 1 + type: Transform + - uid: 6977 + components: + - name: mix pump + type: MetaData + - pos: 36.5,-18.5 + parent: 1 + type: Transform + - uid: 6980 + components: + - name: mix output pump + type: MetaData + - rot: 3.141592653589793 rad + pos: 34.5,-17.5 + parent: 1 + type: Transform + - uid: 10190 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10192 + components: + - pos: 11.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 7020 + components: + - pos: 34.5,-7.5 + parent: 1 + type: Transform + - uid: 7021 + components: + - pos: 34.5,-8.5 + parent: 1 + type: Transform +- proto: GasThermoMachineHeater + entities: + - uid: 6814 + components: + - pos: 34.5,-6.5 + parent: 1 + type: Transform +- proto: GasValve + entities: + - uid: 6978 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 1 + type: Transform + - open: False + type: GasValve + - uid: 6990 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 1 + type: Transform + - open: False + type: GasValve +- proto: GasVentPump + entities: + - uid: 7151 + components: + - pos: 34.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 7182 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10112 + components: + - pos: 27.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10115 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10143 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10144 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10160 + components: + - pos: 20.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10204 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10219 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10236 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10246 + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10247 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10248 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10358 + components: + - pos: 17.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10359 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10360 + components: + - pos: 40.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10390 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10391 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10413 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10432 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10450 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10451 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10475 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10512 + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10513 + components: + - rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10514 + components: + - rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10547 + components: + - rot: 3.141592653589793 rad + pos: 22.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10548 + components: + - rot: 3.141592653589793 rad + pos: 26.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10552 + components: + - pos: 20.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10600 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10602 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10604 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10661 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10662 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,27.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10663 + components: + - pos: 29.5,26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10665 + components: + - pos: 7.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10697 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10706 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10707 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10724 + components: + - pos: 3.5,30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10725 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10748 + components: + - pos: -1.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10749 + components: + - rot: 3.141592653589793 rad + pos: -3.5,24.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10762 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10785 + components: + - rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10786 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10821 + components: + - pos: -3.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10843 + components: + - rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10879 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10902 + components: + - rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10903 + components: + - rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10923 + components: + - pos: -23.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10924 + components: + - rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10943 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10944 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10967 + components: + - rot: 3.141592653589793 rad + pos: -14.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10968 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10969 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 10995 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11057 + components: + - pos: -12.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11058 + components: + - pos: -23.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11059 + components: + - pos: -34.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11082 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11083 + components: + - pos: -32.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11121 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11122 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11123 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,11.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11124 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11129 + components: + - pos: -40.5,20.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11149 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11150 + components: + - rot: 3.141592653589793 rad + pos: -40.5,14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11162 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11163 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11195 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11234 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11242 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11261 + components: + - pos: -17.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11285 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11286 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11320 + components: + - pos: -26.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11321 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11330 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11367 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11410 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11411 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11476 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11477 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11478 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-29.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11479 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11480 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11482 + components: + - pos: -7.5,-25.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11510 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11511 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-33.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11512 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11526 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-22.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11539 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11589 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11590 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11591 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11605 + components: + - rot: 3.141592653589793 rad + pos: 16.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11608 + components: + - rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11646 + components: + - rot: 3.141592653589793 rad + pos: -17.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 11720 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12148 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-49.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12268 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12269 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12276 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,52.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12279 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 12280 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 3828 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 7152 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10113 + components: + - pos: 28.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10114 + components: + - pos: 25.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10142 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10145 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10161 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10197 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10220 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10237 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10361 + components: + - rot: 3.141592653589793 rad + pos: 16.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10362 + components: + - rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10363 + components: + - rot: 3.141592653589793 rad + pos: 41.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10388 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10389 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10414 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10433 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,27.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10448 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,32.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10449 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10474 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10509 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10510 + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10511 + components: + - rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10549 + components: + - rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10550 + components: + - rot: 3.141592653589793 rad + pos: 27.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10551 + components: + - pos: 21.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10599 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10601 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,12.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10603 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10658 + components: + - rot: 3.141592653589793 rad + pos: 30.5,26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10659 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10660 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10664 + components: + - rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10696 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10726 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10727 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10750 + components: + - rot: 3.141592653589793 rad + pos: -2.5,24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10751 + components: + - rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10763 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,30.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10772 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10773 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10778 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10812 + components: + - pos: 0.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10813 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10814 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10842 + components: + - pos: -8.5,11.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10880 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10899 + components: + - pos: -12.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10900 + components: + - rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10901 + components: + - rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10921 + components: + - rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10922 + components: + - pos: -24.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10945 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10970 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10971 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10972 + components: + - pos: -13.5,19.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 10994 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11042 + components: + - rot: 3.141592653589793 rad + pos: -35.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11054 + components: + - rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11055 + components: + - rot: 3.141592653589793 rad + pos: -24.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11084 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11085 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11147 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11148 + components: + - pos: -39.5,20.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11151 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11174 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11175 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11176 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11233 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11241 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11260 + components: + - pos: -15.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11283 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11284 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11322 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11323 + components: + - pos: -24.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11331 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11332 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11337 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11366 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11408 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11409 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11471 + components: + - pos: -2.5,-21.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11472 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11473 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11474 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11475 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11481 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11507 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11508 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-33.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11509 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11527 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11538 + components: + - pos: 5.5,-17.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11552 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-26.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11587 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11588 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11604 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11609 + components: + - pos: 31.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11645 + components: + - rot: 3.141592653589793 rad + pos: -18.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 11719 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12147 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-49.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12270 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,51.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12271 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12272 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,53.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12277 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,45.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12278 + components: + - rot: 3.141592653589793 rad + pos: -7.5,44.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GeneratorBasic15kW + entities: + - uid: 3673 + components: + - pos: -1.5,47.5 + parent: 1 + type: Transform + - uid: 3674 + components: + - pos: -0.5,47.5 + parent: 1 + type: Transform +- proto: Girder + entities: + - uid: 1598 + components: + - pos: -10.5,-19.5 + parent: 1 + type: Transform + - uid: 1763 + components: + - pos: -25.5,19.5 + parent: 1 + type: Transform + - uid: 1788 + components: + - pos: -24.5,19.5 + parent: 1 + type: Transform + - uid: 1792 + components: + - pos: -27.5,22.5 + parent: 1 + type: Transform +- proto: GravityGenerator + entities: + - uid: 7548 + components: + - pos: -37.5,22.5 + parent: 1 + type: Transform + - charge: 100 + type: GravityGenerator + - radius: 175.75 + type: PointLight +- proto: Grille + entities: + - uid: 30 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -14.5,16.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -16.5,6.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: -17.5,4.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -20.5,4.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -21.5,4.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -4.5,32.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: -3.5,33.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: -2.5,33.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 1 + type: Transform + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 1 + type: Transform + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 408 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 409 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 416 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - uid: 423 + components: + - pos: -0.5,33.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 427 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 471 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 474 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 488 + components: + - rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 489 + components: + - rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 490 + components: + - rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 491 + components: + - rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 493 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 494 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 522 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 533 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 580 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 1 + type: Transform + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 583 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 584 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 585 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-14.5 + parent: 1 + type: Transform + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 596 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 601 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 619 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 620 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 621 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 622 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 624 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 1 + type: Transform + - uid: 668 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 669 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 675 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 678 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 712 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 713 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 715 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 716 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 717 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 718 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 719 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 720 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 724 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 726 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 741 + components: + - rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 742 + components: + - rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 743 + components: + - rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 744 + components: + - rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 969 + components: + - pos: 28.5,31.5 + parent: 1 + type: Transform + - uid: 970 + components: + - pos: 27.5,31.5 + parent: 1 + type: Transform + - uid: 971 + components: + - pos: 26.5,31.5 + parent: 1 + type: Transform + - uid: 972 + components: + - pos: 25.5,31.5 + parent: 1 + type: Transform + - uid: 973 + components: + - pos: 24.5,31.5 + parent: 1 + type: Transform + - uid: 974 + components: + - pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 975 + components: + - pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 976 + components: + - pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 977 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 978 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 1029 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - uid: 1035 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 1052 + components: + - pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 1053 + components: + - pos: 17.5,-7.5 + parent: 1 + type: Transform + - uid: 1080 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 1081 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 1082 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 1087 + components: + - pos: 20.5,-9.5 + parent: 1 + type: Transform + - uid: 1088 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - uid: 1089 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - uid: 1101 + components: + - pos: 23.5,-12.5 + parent: 1 + type: Transform + - uid: 1129 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - uid: 1186 + components: + - pos: 24.5,-8.5 + parent: 1 + type: Transform + - uid: 1187 + components: + - pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 1188 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 1189 + components: + - pos: 24.5,-4.5 + parent: 1 + type: Transform + - uid: 1190 + components: + - pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 1191 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 1192 + components: + - pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 1193 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 1194 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 1257 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,3.5 + parent: 1 + type: Transform + - uid: 1260 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,10.5 + parent: 1 + type: Transform + - uid: 1269 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,9.5 + parent: 1 + type: Transform + - uid: 1273 + components: + - pos: 46.5,0.5 + parent: 1 + type: Transform + - uid: 1274 + components: + - pos: 47.5,0.5 + parent: 1 + type: Transform + - uid: 1275 + components: + - pos: 47.5,1.5 + parent: 1 + type: Transform + - uid: 1277 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,2.5 + parent: 1 + type: Transform + - uid: 1280 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 1 + type: Transform + - uid: 1289 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,7.5 + parent: 1 + type: Transform + - uid: 1291 + components: + - pos: 47.5,15.5 + parent: 1 + type: Transform + - uid: 1292 + components: + - pos: 47.5,16.5 + parent: 1 + type: Transform + - uid: 1300 + components: + - pos: 47.5,17.5 + parent: 1 + type: Transform + - uid: 1325 + components: + - pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 1326 + components: + - pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 1327 + components: + - pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 1328 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 1329 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 1330 + components: + - pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 1331 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 1332 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 1333 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 1334 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 1335 + components: + - pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 1336 + components: + - pos: 40.5,-14.5 + parent: 1 + type: Transform + - uid: 1337 + components: + - pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 1338 + components: + - pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 1339 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 1340 + components: + - pos: 40.5,-18.5 + parent: 1 + type: Transform + - uid: 1341 + components: + - pos: 40.5,-19.5 + parent: 1 + type: Transform + - uid: 1351 + components: + - pos: 31.5,-19.5 + parent: 1 + type: Transform + - uid: 1352 + components: + - pos: 32.5,-19.5 + parent: 1 + type: Transform + - uid: 1354 + components: + - pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 1355 + components: + - pos: 35.5,-19.5 + parent: 1 + type: Transform + - uid: 1356 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 1357 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 1358 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 1359 + components: + - pos: 39.5,-19.5 + parent: 1 + type: Transform + - uid: 1373 + components: + - pos: 37.5,-23.5 + parent: 1 + type: Transform + - uid: 1374 + components: + - pos: 37.5,-22.5 + parent: 1 + type: Transform + - uid: 1375 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 1376 + components: + - pos: 35.5,-21.5 + parent: 1 + type: Transform + - uid: 1377 + components: + - pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 1378 + components: + - pos: 33.5,-22.5 + parent: 1 + type: Transform + - uid: 1379 + components: + - pos: 33.5,-23.5 + parent: 1 + type: Transform + - uid: 1427 + components: + - pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 1428 + components: + - pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 1429 + components: + - pos: 42.5,-13.5 + parent: 1 + type: Transform + - uid: 1430 + components: + - pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 1431 + components: + - pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 1432 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 1433 + components: + - pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 1461 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 1475 + components: + - pos: 17.5,-24.5 + parent: 1 + type: Transform + - uid: 1493 + components: + - pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 1497 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - uid: 1501 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 1502 + components: + - pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 1514 + components: + - pos: 7.5,-25.5 + parent: 1 + type: Transform + - uid: 1515 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - uid: 1528 + components: + - pos: 17.5,-23.5 + parent: 1 + type: Transform + - uid: 1531 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 1534 + components: + - pos: 20.5,-28.5 + parent: 1 + type: Transform + - uid: 1553 + components: + - pos: 9.5,-29.5 + parent: 1 + type: Transform + - uid: 1554 + components: + - pos: 9.5,-30.5 + parent: 1 + type: Transform + - uid: 1555 + components: + - pos: 12.5,-30.5 + parent: 1 + type: Transform + - uid: 1556 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 1557 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 1558 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 1563 + components: + - pos: 24.5,-25.5 + parent: 1 + type: Transform + - uid: 1564 + components: + - pos: 26.5,-25.5 + parent: 1 + type: Transform + - uid: 1565 + components: + - pos: 27.5,-23.5 + parent: 1 + type: Transform + - uid: 1566 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - uid: 1572 + components: + - pos: 12.5,-23.5 + parent: 1 + type: Transform + - uid: 1573 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 1574 + components: + - pos: 11.5,-24.5 + parent: 1 + type: Transform + - uid: 1575 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - uid: 1617 + components: + - pos: 3.5,-30.5 + parent: 1 + type: Transform + - uid: 1618 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 1622 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 1623 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 1624 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 1629 + components: + - pos: -1.5,-23.5 + parent: 1 + type: Transform + - uid: 1630 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - uid: 1631 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 1632 + components: + - pos: -5.5,-23.5 + parent: 1 + type: Transform + - uid: 1686 + components: + - pos: 43.5,23.5 + parent: 1 + type: Transform + - uid: 1724 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 1725 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 1 + type: Transform + - uid: 1753 + components: + - pos: 19.5,-28.5 + parent: 1 + type: Transform + - uid: 1754 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 1785 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,25.5 + parent: 1 + type: Transform + - uid: 1800 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform + - uid: 1801 + components: + - pos: -23.5,19.5 + parent: 1 + type: Transform + - uid: 1953 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,8.5 + parent: 1 + type: Transform + - uid: 1958 + components: + - pos: 16.5,-9.5 + parent: 1 + type: Transform + - uid: 1959 + components: + - pos: 15.5,-9.5 + parent: 1 + type: Transform + - uid: 1991 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,4.5 + parent: 1 + type: Transform + - uid: 1992 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + type: Transform + - uid: 1993 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,4.5 + parent: 1 + type: Transform + - uid: 1994 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 1 + type: Transform + - uid: 2001 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 2068 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + type: Transform + - uid: 2069 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,12.5 + parent: 1 + type: Transform + - uid: 2070 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,14.5 + parent: 1 + type: Transform + - uid: 2072 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,12.5 + parent: 1 + type: Transform + - uid: 2073 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 2074 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,2.5 + parent: 1 + type: Transform + - uid: 2075 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,10.5 + parent: 1 + type: Transform + - uid: 2076 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 2078 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 2079 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 2080 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + type: Transform + - uid: 2093 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 2102 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 2109 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 2114 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 2115 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 1 + type: Transform + - uid: 2116 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 1 + type: Transform + - uid: 2117 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 2118 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,6.5 + parent: 1 + type: Transform + - uid: 2119 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,9.5 + parent: 1 + type: Transform + - uid: 2120 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 2121 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,2.5 + parent: 1 + type: Transform + - uid: 2122 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform + - uid: 2128 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 1 + type: Transform + - uid: 2129 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 2133 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 2152 + components: + - pos: -42.5,-9.5 + parent: 1 + type: Transform + - uid: 2221 + components: + - pos: 43.5,21.5 + parent: 1 + type: Transform + - uid: 2234 + components: + - pos: -42.5,-11.5 + parent: 1 + type: Transform + - uid: 2265 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-24.5 + parent: 1 + type: Transform + - uid: 2266 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-24.5 + parent: 1 + type: Transform + - uid: 2267 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 1 + type: Transform + - uid: 2268 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-24.5 + parent: 1 + type: Transform + - uid: 2270 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + type: Transform + - uid: 2272 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-24.5 + parent: 1 + type: Transform + - uid: 2285 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 2286 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,26.5 + parent: 1 + type: Transform + - uid: 2287 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 2288 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,26.5 + parent: 1 + type: Transform + - uid: 2293 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,31.5 + parent: 1 + type: Transform + - uid: 2294 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,31.5 + parent: 1 + type: Transform + - uid: 2295 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,31.5 + parent: 1 + type: Transform + - uid: 2296 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,31.5 + parent: 1 + type: Transform + - uid: 2298 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 1 + type: Transform + - uid: 2303 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 2304 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,24.5 + parent: 1 + type: Transform + - uid: 2325 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 2332 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 2339 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,37.5 + parent: 1 + type: Transform + - uid: 2377 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,37.5 + parent: 1 + type: Transform + - uid: 2382 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,38.5 + parent: 1 + type: Transform + - uid: 2383 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1 + type: Transform + - uid: 2384 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 2385 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 2386 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + type: Transform + - uid: 2387 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 2388 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 2389 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 2390 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,38.5 + parent: 1 + type: Transform + - uid: 2391 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 2392 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,37.5 + parent: 1 + type: Transform + - uid: 2393 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,38.5 + parent: 1 + type: Transform + - uid: 2394 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 2395 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,38.5 + parent: 1 + type: Transform + - uid: 2396 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 1 + type: Transform + - uid: 2397 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,38.5 + parent: 1 + type: Transform + - uid: 2405 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,36.5 + parent: 1 + type: Transform + - uid: 2410 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,36.5 + parent: 1 + type: Transform + - uid: 2411 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,36.5 + parent: 1 + type: Transform + - uid: 2412 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,36.5 + parent: 1 + type: Transform + - uid: 2415 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 1 + type: Transform + - uid: 2416 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 1 + type: Transform + - uid: 2417 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 2662 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 2690 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 2691 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,54.5 + parent: 1 + type: Transform + - uid: 2783 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-53.5 + parent: 1 + type: Transform + - uid: 2784 + components: + - pos: -16.5,-47.5 + parent: 1 + type: Transform + - uid: 2795 + components: + - pos: -14.5,-54.5 + parent: 1 + type: Transform + - uid: 2796 + components: + - pos: -15.5,-54.5 + parent: 1 + type: Transform + - uid: 2804 + components: + - pos: -13.5,-54.5 + parent: 1 + type: Transform + - uid: 2807 + components: + - pos: -16.5,-54.5 + parent: 1 + type: Transform + - uid: 2836 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-55.5 + parent: 1 + type: Transform + - uid: 2851 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-52.5 + parent: 1 + type: Transform + - uid: 2852 + components: + - pos: -12.5,-54.5 + parent: 1 + type: Transform + - uid: 2891 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-56.5 + parent: 1 + type: Transform + - uid: 2892 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-57.5 + parent: 1 + type: Transform + - uid: 2893 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-58.5 + parent: 1 + type: Transform + - uid: 2894 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-59.5 + parent: 1 + type: Transform + - uid: 2895 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-60.5 + parent: 1 + type: Transform + - uid: 2896 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-61.5 + parent: 1 + type: Transform + - uid: 2897 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-61.5 + parent: 1 + type: Transform + - uid: 2898 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-61.5 + parent: 1 + type: Transform + - uid: 2899 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-62.5 + parent: 1 + type: Transform + - uid: 2900 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-63.5 + parent: 1 + type: Transform + - uid: 2901 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-63.5 + parent: 1 + type: Transform + - uid: 2902 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-63.5 + parent: 1 + type: Transform + - uid: 2903 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-63.5 + parent: 1 + type: Transform + - uid: 2904 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-63.5 + parent: 1 + type: Transform + - uid: 2905 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-63.5 + parent: 1 + type: Transform + - uid: 2906 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-63.5 + parent: 1 + type: Transform + - uid: 2907 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-62.5 + parent: 1 + type: Transform + - uid: 2908 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-61.5 + parent: 1 + type: Transform + - uid: 2909 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-60.5 + parent: 1 + type: Transform + - uid: 2910 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-59.5 + parent: 1 + type: Transform + - uid: 2911 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-58.5 + parent: 1 + type: Transform + - uid: 2912 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-57.5 + parent: 1 + type: Transform + - uid: 2913 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-56.5 + parent: 1 + type: Transform + - uid: 2914 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-55.5 + parent: 1 + type: Transform + - uid: 2915 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-42.5 + parent: 1 + type: Transform + - uid: 2916 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-54.5 + parent: 1 + type: Transform + - uid: 2918 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-52.5 + parent: 1 + type: Transform + - uid: 2919 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-51.5 + parent: 1 + type: Transform + - uid: 2920 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-50.5 + parent: 1 + type: Transform + - uid: 2921 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-49.5 + parent: 1 + type: Transform + - uid: 2923 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 1 + type: Transform + - uid: 2924 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 1 + type: Transform + - uid: 2925 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 1 + type: Transform + - uid: 2933 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-49.5 + parent: 1 + type: Transform + - uid: 2935 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 1 + type: Transform + - uid: 2937 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 1 + type: Transform + - uid: 2938 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-38.5 + parent: 1 + type: Transform + - uid: 2940 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-36.5 + parent: 1 + type: Transform + - uid: 2942 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 1 + type: Transform + - uid: 2943 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 1 + type: Transform + - uid: 2945 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 1 + type: Transform + - uid: 2946 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 1 + type: Transform + - uid: 2947 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 1 + type: Transform + - uid: 2948 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 1 + type: Transform + - uid: 2949 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 1 + type: Transform + - uid: 2951 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-33.5 + parent: 1 + type: Transform + - uid: 2971 + components: + - pos: -22.5,-30.5 + parent: 1 + type: Transform + - uid: 2983 + components: + - pos: -24.5,-29.5 + parent: 1 + type: Transform + - uid: 2984 + components: + - pos: -21.5,-32.5 + parent: 1 + type: Transform + - uid: 2988 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 1 + type: Transform + - uid: 2989 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 1 + type: Transform + - uid: 2990 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 1 + type: Transform + - uid: 2992 + components: + - pos: -7.5,-34.5 + parent: 1 + type: Transform + - uid: 2993 + components: + - pos: -6.5,-34.5 + parent: 1 + type: Transform + - uid: 3007 + components: + - pos: -20.5,-32.5 + parent: 1 + type: Transform + - uid: 3008 + components: + - pos: -22.5,-32.5 + parent: 1 + type: Transform + - uid: 3009 + components: + - pos: -24.5,-32.5 + parent: 1 + type: Transform + - uid: 3016 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 1 + type: Transform + - uid: 3017 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 1 + type: Transform + - uid: 3019 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-34.5 + parent: 1 + type: Transform + - uid: 3021 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 1 + type: Transform + - uid: 3024 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-37.5 + parent: 1 + type: Transform + - uid: 3025 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-37.5 + parent: 1 + type: Transform + - uid: 3026 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 1 + type: Transform + - uid: 3027 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 1 + type: Transform + - uid: 3029 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-38.5 + parent: 1 + type: Transform + - uid: 3030 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-38.5 + parent: 1 + type: Transform + - uid: 3031 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-38.5 + parent: 1 + type: Transform + - uid: 3033 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-37.5 + parent: 1 + type: Transform + - uid: 3036 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 1 + type: Transform + - uid: 3037 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 1 + type: Transform + - uid: 3038 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 1 + type: Transform + - uid: 3039 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 1 + type: Transform + - uid: 3040 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-33.5 + parent: 1 + type: Transform + - uid: 3043 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-30.5 + parent: 1 + type: Transform + - uid: 3044 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 1 + type: Transform + - uid: 3045 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-28.5 + parent: 1 + type: Transform + - uid: 3089 + components: + - pos: -36.5,13.5 + parent: 1 + type: Transform + - uid: 3254 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - uid: 3815 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 1 + type: Transform + - uid: 4049 + components: + - rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 4050 + components: + - rot: 3.141592653589793 rad + pos: 4.5,32.5 + parent: 1 + type: Transform + - uid: 4051 + components: + - rot: 3.141592653589793 rad + pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 4817 + components: + - pos: 47.5,20.5 + parent: 1 + type: Transform + - uid: 4818 + components: + - pos: 47.5,19.5 + parent: 1 + type: Transform + - uid: 4822 + components: + - pos: 46.5,24.5 + parent: 1 + type: Transform + - uid: 4823 + components: + - pos: 44.5,24.5 + parent: 1 + type: Transform + - uid: 4827 + components: + - pos: 40.5,29.5 + parent: 1 + type: Transform + - uid: 4828 + components: + - pos: 39.5,29.5 + parent: 1 + type: Transform + - uid: 4833 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,28.5 + parent: 1 + type: Transform + - uid: 4838 + components: + - pos: 47.5,27.5 + parent: 1 + type: Transform + - uid: 4839 + components: + - pos: 47.5,26.5 + parent: 1 + type: Transform + - uid: 4841 + components: + - pos: 41.5,29.5 + parent: 1 + type: Transform + - uid: 4843 + components: + - pos: 45.5,29.5 + parent: 1 + type: Transform + - uid: 4844 + components: + - pos: 46.5,29.5 + parent: 1 + type: Transform + - uid: 4873 + components: + - rot: 3.141592653589793 rad + pos: 40.5,35.5 + parent: 1 + type: Transform + - uid: 4874 + components: + - rot: 3.141592653589793 rad + pos: 41.5,35.5 + parent: 1 + type: Transform + - uid: 4875 + components: + - rot: 3.141592653589793 rad + pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 4876 + components: + - rot: 3.141592653589793 rad + pos: 43.5,35.5 + parent: 1 + type: Transform + - uid: 4877 + components: + - rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 1 + type: Transform + - uid: 4878 + components: + - rot: 3.141592653589793 rad + pos: 45.5,35.5 + parent: 1 + type: Transform + - uid: 4881 + components: + - rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 1 + type: Transform + - uid: 4882 + components: + - rot: 3.141592653589793 rad + pos: 47.5,32.5 + parent: 1 + type: Transform + - uid: 4883 + components: + - rot: 3.141592653589793 rad + pos: 47.5,31.5 + parent: 1 + type: Transform + - uid: 6328 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 6329 + components: + - pos: -19.5,-15.5 + parent: 1 + type: Transform + - uid: 7067 + components: + - pos: 3.5,-31.5 + parent: 1 + type: Transform + - uid: 7068 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform + - uid: 7069 + components: + - pos: 3.5,-33.5 + parent: 1 + type: Transform + - uid: 7299 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 7303 + components: + - pos: 18.5,-24.5 + parent: 1 + type: Transform + - uid: 7572 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 7573 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 1 + type: Transform + - uid: 7576 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 1 + type: Transform + - uid: 7577 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 7578 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 1 + type: Transform + - uid: 7579 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 1 + type: Transform + - uid: 8258 + components: + - pos: -44.5,-18.5 + parent: 1 + type: Transform + - uid: 8266 + components: + - pos: -44.5,-17.5 + parent: 1 + type: Transform + - uid: 8271 + components: + - pos: -44.5,-16.5 + parent: 1 + type: Transform + - uid: 8273 + components: + - pos: -44.5,-19.5 + parent: 1 + type: Transform + - uid: 8321 + components: + - pos: 11.5,34.5 + parent: 1 + type: Transform + - uid: 8322 + components: + - pos: 9.5,34.5 + parent: 1 + type: Transform + - uid: 8328 + components: + - pos: 42.5,-21.5 + parent: 1 + type: Transform + - uid: 8491 + components: + - pos: -20.5,-55.5 + parent: 1 + type: Transform + - uid: 8492 + components: + - pos: -20.5,-53.5 + parent: 1 + type: Transform + - uid: 8493 + components: + - pos: -22.5,-51.5 + parent: 1 + type: Transform + - uid: 8497 + components: + - pos: -22.5,-50.5 + parent: 1 + type: Transform + - uid: 8501 + components: + - pos: -22.5,-48.5 + parent: 1 + type: Transform + - uid: 8502 + components: + - pos: -22.5,-47.5 + parent: 1 + type: Transform + - uid: 8503 + components: + - pos: -22.5,-46.5 + parent: 1 + type: Transform + - uid: 8504 + components: + - pos: -22.5,-45.5 + parent: 1 + type: Transform + - uid: 8505 + components: + - pos: -21.5,-45.5 + parent: 1 + type: Transform + - uid: 8507 + components: + - pos: -19.5,-45.5 + parent: 1 + type: Transform + - uid: 8509 + components: + - pos: -8.5,-36.5 + parent: 1 + type: Transform + - uid: 8510 + components: + - pos: -7.5,-36.5 + parent: 1 + type: Transform + - uid: 8511 + components: + - pos: -7.5,-37.5 + parent: 1 + type: Transform + - uid: 8512 + components: + - pos: -6.5,-37.5 + parent: 1 + type: Transform + - uid: 8514 + components: + - pos: -4.5,-37.5 + parent: 1 + type: Transform + - uid: 8515 + components: + - pos: -3.5,-37.5 + parent: 1 + type: Transform + - uid: 8517 + components: + - pos: -1.5,-37.5 + parent: 1 + type: Transform + - uid: 8519 + components: + - pos: 18.5,-31.5 + parent: 1 + type: Transform + - uid: 8520 + components: + - pos: 19.5,-31.5 + parent: 1 + type: Transform + - uid: 8521 + components: + - pos: 20.5,-31.5 + parent: 1 + type: Transform + - uid: 8524 + components: + - pos: 23.5,-31.5 + parent: 1 + type: Transform + - uid: 8526 + components: + - pos: 40.5,-26.5 + parent: 1 + type: Transform + - uid: 8528 + components: + - pos: 32.5,-27.5 + parent: 1 + type: Transform + - uid: 8529 + components: + - pos: 33.5,-27.5 + parent: 1 + type: Transform + - uid: 8530 + components: + - pos: 34.5,-27.5 + parent: 1 + type: Transform + - uid: 8532 + components: + - pos: 36.5,-27.5 + parent: 1 + type: Transform + - uid: 8534 + components: + - pos: 38.5,-27.5 + parent: 1 + type: Transform + - uid: 8536 + components: + - pos: 40.5,-24.5 + parent: 1 + type: Transform + - uid: 8537 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-23.5 + parent: 1 + type: Transform + - uid: 8539 + components: + - pos: 43.5,-21.5 + parent: 1 + type: Transform + - uid: 8541 + components: + - pos: 45.5,-21.5 + parent: 1 + type: Transform + - uid: 8542 + components: + - pos: 46.5,-21.5 + parent: 1 + type: Transform + - uid: 8544 + components: + - pos: -13.5,39.5 + parent: 1 + type: Transform + - uid: 8545 + components: + - pos: 48.5,-21.5 + parent: 1 + type: Transform + - uid: 8546 + components: + - pos: 49.5,-19.5 + parent: 1 + type: Transform + - uid: 8547 + components: + - pos: 49.5,-18.5 + parent: 1 + type: Transform + - uid: 8548 + components: + - pos: 49.5,-17.5 + parent: 1 + type: Transform + - uid: 8550 + components: + - pos: 49.5,-15.5 + parent: 1 + type: Transform + - uid: 8551 + components: + - pos: 49.5,-14.5 + parent: 1 + type: Transform + - uid: 8552 + components: + - pos: 49.5,-13.5 + parent: 1 + type: Transform + - uid: 8553 + components: + - pos: 49.5,-12.5 + parent: 1 + type: Transform + - uid: 8555 + components: + - pos: 49.5,-10.5 + parent: 1 + type: Transform + - uid: 8556 + components: + - pos: 49.5,-9.5 + parent: 1 + type: Transform + - uid: 8557 + components: + - pos: 49.5,-8.5 + parent: 1 + type: Transform + - uid: 8558 + components: + - pos: 49.5,-7.5 + parent: 1 + type: Transform + - uid: 8560 + components: + - pos: 49.5,-5.5 + parent: 1 + type: Transform + - uid: 8561 + components: + - pos: 49.5,-4.5 + parent: 1 + type: Transform + - uid: 8562 + components: + - pos: 49.5,-3.5 + parent: 1 + type: Transform + - uid: 8563 + components: + - pos: 49.5,-2.5 + parent: 1 + type: Transform + - uid: 8566 + components: + - pos: 49.5,27.5 + parent: 1 + type: Transform + - uid: 8567 + components: + - pos: 49.5,28.5 + parent: 1 + type: Transform + - uid: 8568 + components: + - pos: 49.5,29.5 + parent: 1 + type: Transform + - uid: 8569 + components: + - pos: 49.5,30.5 + parent: 1 + type: Transform + - uid: 8571 + components: + - pos: 49.5,32.5 + parent: 1 + type: Transform + - uid: 8572 + components: + - pos: 49.5,33.5 + parent: 1 + type: Transform + - uid: 8574 + components: + - pos: 49.5,35.5 + parent: 1 + type: Transform + - uid: 8576 + components: + - pos: 48.5,37.5 + parent: 1 + type: Transform + - uid: 8577 + components: + - pos: 47.5,37.5 + parent: 1 + type: Transform + - uid: 8579 + components: + - pos: 45.5,37.5 + parent: 1 + type: Transform + - uid: 8580 + components: + - pos: 44.5,37.5 + parent: 1 + type: Transform + - uid: 8581 + components: + - pos: 43.5,37.5 + parent: 1 + type: Transform + - uid: 8583 + components: + - pos: 41.5,37.5 + parent: 1 + type: Transform + - uid: 8584 + components: + - pos: 4.5,34.5 + parent: 1 + type: Transform + - uid: 8585 + components: + - pos: 4.5,35.5 + parent: 1 + type: Transform + - uid: 8587 + components: + - pos: 4.5,45.5 + parent: 1 + type: Transform + - uid: 8589 + components: + - pos: 3.5,39.5 + parent: 1 + type: Transform + - uid: 8590 + components: + - pos: 2.5,41.5 + parent: 1 + type: Transform + - uid: 8591 + components: + - pos: 2.5,42.5 + parent: 1 + type: Transform + - uid: 8593 + components: + - pos: 3.5,45.5 + parent: 1 + type: Transform + - uid: 8594 + components: + - pos: 7.5,51.5 + parent: 1 + type: Transform + - uid: 8595 + components: + - pos: 6.5,45.5 + parent: 1 + type: Transform + - uid: 8598 + components: + - pos: 7.5,48.5 + parent: 1 + type: Transform + - uid: 8599 + components: + - pos: 7.5,49.5 + parent: 1 + type: Transform + - uid: 8602 + components: + - pos: 7.5,52.5 + parent: 1 + type: Transform + - uid: 8603 + components: + - pos: 7.5,53.5 + parent: 1 + type: Transform + - uid: 8606 + components: + - pos: 7.5,56.5 + parent: 1 + type: Transform + - uid: 8607 + components: + - pos: 7.5,57.5 + parent: 1 + type: Transform + - uid: 8608 + components: + - pos: 7.5,58.5 + parent: 1 + type: Transform + - uid: 8611 + components: + - pos: 4.5,59.5 + parent: 1 + type: Transform + - uid: 8612 + components: + - pos: 3.5,59.5 + parent: 1 + type: Transform + - uid: 8613 + components: + - pos: 2.5,59.5 + parent: 1 + type: Transform + - uid: 8615 + components: + - pos: 0.5,59.5 + parent: 1 + type: Transform + - uid: 8617 + components: + - pos: -2.5,60.5 + parent: 1 + type: Transform + - uid: 8618 + components: + - pos: -3.5,60.5 + parent: 1 + type: Transform + - uid: 8619 + components: + - pos: -4.5,60.5 + parent: 1 + type: Transform + - uid: 8620 + components: + - pos: -5.5,60.5 + parent: 1 + type: Transform + - uid: 8622 + components: + - pos: -7.5,60.5 + parent: 1 + type: Transform + - uid: 8624 + components: + - pos: -9.5,60.5 + parent: 1 + type: Transform + - uid: 8625 + components: + - pos: -10.5,60.5 + parent: 1 + type: Transform + - uid: 8627 + components: + - pos: -12.5,60.5 + parent: 1 + type: Transform + - uid: 8629 + components: + - pos: -14.5,58.5 + parent: 1 + type: Transform + - uid: 8630 + components: + - pos: -14.5,57.5 + parent: 1 + type: Transform + - uid: 8631 + components: + - pos: -14.5,56.5 + parent: 1 + type: Transform + - uid: 8633 + components: + - pos: -14.5,54.5 + parent: 1 + type: Transform + - uid: 8634 + components: + - pos: -14.5,53.5 + parent: 1 + type: Transform + - uid: 8635 + components: + - pos: -14.5,52.5 + parent: 1 + type: Transform + - uid: 8636 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,45.5 + parent: 1 + type: Transform + - uid: 8638 + components: + - pos: -14.5,49.5 + parent: 1 + type: Transform + - uid: 8639 + components: + - pos: -14.5,48.5 + parent: 1 + type: Transform + - uid: 8640 + components: + - pos: -14.5,47.5 + parent: 1 + type: Transform + - uid: 8643 + components: + - pos: -12.5,44.5 + parent: 1 + type: Transform + - uid: 8645 + components: + - pos: -12.5,42.5 + parent: 1 + type: Transform + - uid: 8646 + components: + - pos: -12.5,41.5 + parent: 1 + type: Transform + - uid: 8648 + components: + - pos: -14.5,37.5 + parent: 1 + type: Transform + - uid: 8652 + components: + - pos: -17.5,36.5 + parent: 1 + type: Transform + - uid: 8653 + components: + - pos: -18.5,36.5 + parent: 1 + type: Transform + - uid: 8654 + components: + - pos: -19.5,36.5 + parent: 1 + type: Transform + - uid: 8655 + components: + - pos: -21.5,35.5 + parent: 1 + type: Transform + - uid: 8657 + components: + - pos: -21.5,37.5 + parent: 1 + type: Transform + - uid: 8658 + components: + - pos: -21.5,38.5 + parent: 1 + type: Transform + - uid: 8659 + components: + - pos: -21.5,39.5 + parent: 1 + type: Transform + - uid: 8661 + components: + - pos: -21.5,41.5 + parent: 1 + type: Transform + - uid: 8662 + components: + - pos: -21.5,42.5 + parent: 1 + type: Transform + - uid: 8664 + components: + - pos: -23.5,42.5 + parent: 1 + type: Transform + - uid: 8665 + components: + - pos: -24.5,42.5 + parent: 1 + type: Transform + - uid: 8666 + components: + - pos: -24.5,43.5 + parent: 1 + type: Transform + - uid: 8667 + components: + - pos: -24.5,44.5 + parent: 1 + type: Transform + - uid: 8668 + components: + - pos: -25.5,44.5 + parent: 1 + type: Transform + - uid: 8669 + components: + - pos: -26.5,44.5 + parent: 1 + type: Transform + - uid: 8670 + components: + - pos: -27.5,44.5 + parent: 1 + type: Transform + - uid: 8672 + components: + - pos: -29.5,44.5 + parent: 1 + type: Transform + - uid: 8673 + components: + - pos: -30.5,44.5 + parent: 1 + type: Transform + - uid: 8674 + components: + - pos: -30.5,43.5 + parent: 1 + type: Transform + - uid: 8675 + components: + - pos: -30.5,42.5 + parent: 1 + type: Transform + - uid: 8676 + components: + - pos: -31.5,42.5 + parent: 1 + type: Transform + - uid: 8678 + components: + - pos: -33.5,42.5 + parent: 1 + type: Transform + - uid: 8679 + components: + - pos: -33.5,40.5 + parent: 1 + type: Transform + - uid: 8680 + components: + - pos: -33.5,39.5 + parent: 1 + type: Transform + - uid: 8682 + components: + - pos: -33.5,37.5 + parent: 1 + type: Transform + - uid: 8683 + components: + - pos: -33.5,36.5 + parent: 1 + type: Transform + - uid: 8685 + components: + - pos: -33.5,34.5 + parent: 1 + type: Transform + - uid: 8687 + components: + - pos: -34.5,29.5 + parent: 1 + type: Transform + - uid: 8688 + components: + - pos: -32.5,31.5 + parent: 1 + type: Transform + - uid: 8689 + components: + - pos: -32.5,30.5 + parent: 1 + type: Transform + - uid: 8691 + components: + - pos: -32.5,28.5 + parent: 1 + type: Transform + - uid: 8693 + components: + - pos: -36.5,29.5 + parent: 1 + type: Transform + - uid: 8695 + components: + - pos: -38.5,29.5 + parent: 1 + type: Transform + - uid: 8696 + components: + - pos: -39.5,29.5 + parent: 1 + type: Transform + - uid: 8697 + components: + - pos: -40.5,29.5 + parent: 1 + type: Transform + - uid: 8699 + components: + - pos: -40.5,27.5 + parent: 1 + type: Transform + - uid: 8700 + components: + - pos: -40.5,26.5 + parent: 1 + type: Transform + - uid: 8702 + components: + - pos: -42.5,26.5 + parent: 1 + type: Transform + - uid: 8703 + components: + - pos: -44.5,25.5 + parent: 1 + type: Transform + - uid: 8705 + components: + - pos: -44.5,23.5 + parent: 1 + type: Transform + - uid: 8706 + components: + - pos: -44.5,22.5 + parent: 1 + type: Transform + - uid: 8708 + components: + - pos: -44.5,20.5 + parent: 1 + type: Transform + - uid: 8709 + components: + - pos: -44.5,19.5 + parent: 1 + type: Transform + - uid: 8711 + components: + - pos: -44.5,17.5 + parent: 1 + type: Transform + - uid: 8713 + components: + - pos: 13.5,36.5 + parent: 1 + type: Transform + - uid: 8714 + components: + - pos: 14.5,36.5 + parent: 1 + type: Transform + - uid: 8715 + components: + - pos: 15.5,36.5 + parent: 1 + type: Transform + - uid: 8717 + components: + - pos: 17.5,38.5 + parent: 1 + type: Transform + - uid: 8718 + components: + - pos: 18.5,38.5 + parent: 1 + type: Transform + - uid: 8720 + components: + - pos: 20.5,38.5 + parent: 1 + type: Transform + - uid: 8721 + components: + - pos: 36.5,38.5 + parent: 1 + type: Transform + - uid: 8723 + components: + - pos: 38.5,38.5 + parent: 1 + type: Transform + - uid: 8724 + components: + - pos: 39.5,38.5 + parent: 1 + type: Transform + - uid: 8730 + components: + - pos: -46.5,-13.5 + parent: 1 + type: Transform + - uid: 8732 + components: + - pos: -46.5,-15.5 + parent: 1 + type: Transform + - uid: 8733 + components: + - pos: -46.5,-16.5 + parent: 1 + type: Transform + - uid: 8734 + components: + - pos: -46.5,-17.5 + parent: 1 + type: Transform + - uid: 8736 + components: + - pos: -46.5,-19.5 + parent: 1 + type: Transform + - uid: 8738 + components: + - pos: -45.5,-23.5 + parent: 1 + type: Transform + - uid: 8740 + components: + - pos: -45.5,-25.5 + parent: 1 + type: Transform + - uid: 8741 + components: + - pos: -45.5,-26.5 + parent: 1 + type: Transform + - uid: 8742 + components: + - pos: -45.5,-27.5 + parent: 1 + type: Transform + - uid: 8743 + components: + - pos: -44.5,-27.5 + parent: 1 + type: Transform + - uid: 8745 + components: + - pos: -42.5,-27.5 + parent: 1 + type: Transform + - uid: 8746 + components: + - pos: -41.5,-27.5 + parent: 1 + type: Transform + - uid: 8748 + components: + - pos: -39.5,-27.5 + parent: 1 + type: Transform + - uid: 8750 + components: + - pos: -44.5,-6.5 + parent: 1 + type: Transform + - uid: 8751 + components: + - pos: -44.5,-5.5 + parent: 1 + type: Transform + - uid: 8753 + components: + - pos: -44.5,-3.5 + parent: 1 + type: Transform + - uid: 8754 + components: + - pos: -44.5,-2.5 + parent: 1 + type: Transform + - uid: 8755 + components: + - pos: -44.5,-1.5 + parent: 1 + type: Transform + - uid: 8757 + components: + - pos: -44.5,0.5 + parent: 1 + type: Transform + - uid: 10442 + components: + - rot: 3.141592653589793 rad + pos: 44.5,29.5 + parent: 1 + type: Transform + - uid: 12312 + components: + - rot: 3.141592653589793 rad + pos: -1.5,65.5 + parent: 1 + type: Transform + - uid: 12313 + components: + - rot: 3.141592653589793 rad + pos: -0.5,66.5 + parent: 1 + type: Transform + - uid: 12314 + components: + - rot: 3.141592653589793 rad + pos: 0.5,65.5 + parent: 1 + type: Transform + - uid: 12315 + components: + - rot: 3.141592653589793 rad + pos: -0.5,64.5 + parent: 1 + type: Transform + - uid: 12316 + components: + - rot: 3.141592653589793 rad + pos: -4.5,62.5 + parent: 1 + type: Transform + - uid: 12318 + components: + - rot: 3.141592653589793 rad + pos: -4.5,64.5 + parent: 1 + type: Transform + - uid: 12319 + components: + - rot: 3.141592653589793 rad + pos: -4.5,65.5 + parent: 1 + type: Transform + - uid: 12320 + components: + - rot: 3.141592653589793 rad + pos: -4.5,67.5 + parent: 1 + type: Transform + - uid: 12322 + components: + - rot: 3.141592653589793 rad + pos: -4.5,68.5 + parent: 1 + type: Transform + - uid: 12323 + components: + - rot: 3.141592653589793 rad + pos: -2.5,69.5 + parent: 1 + type: Transform + - uid: 12325 + components: + - rot: 3.141592653589793 rad + pos: -0.5,69.5 + parent: 1 + type: Transform + - uid: 12326 + components: + - rot: 3.141592653589793 rad + pos: 0.5,69.5 + parent: 1 + type: Transform + - uid: 12327 + components: + - rot: 3.141592653589793 rad + pos: 1.5,69.5 + parent: 1 + type: Transform + - uid: 12328 + components: + - rot: 3.141592653589793 rad + pos: 3.5,68.5 + parent: 1 + type: Transform + - uid: 12330 + components: + - rot: 3.141592653589793 rad + pos: 3.5,66.5 + parent: 1 + type: Transform + - uid: 12331 + components: + - rot: 3.141592653589793 rad + pos: 3.5,65.5 + parent: 1 + type: Transform + - uid: 12332 + components: + - rot: 3.141592653589793 rad + pos: 3.5,64.5 + parent: 1 + type: Transform + - uid: 12333 + components: + - rot: 3.141592653589793 rad + pos: 3.5,63.5 + parent: 1 + type: Transform + - uid: 12334 + components: + - rot: 3.141592653589793 rad + pos: 0.5,61.5 + parent: 1 + type: Transform + - uid: 12335 + components: + - rot: 3.141592653589793 rad + pos: 1.5,61.5 + parent: 1 + type: Transform + - uid: 12368 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 12461 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 12527 + components: + - pos: -26.5,-29.5 + parent: 1 + type: Transform + - uid: 12528 + components: + - pos: -26.5,-28.5 + parent: 1 + type: Transform +- proto: GrilleBroken + entities: + - uid: 1786 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,25.5 + parent: 1 + type: Transform + - uid: 1790 + components: + - rot: 3.141592653589793 rad + pos: -27.5,23.5 + parent: 1 + type: Transform + - uid: 2917 + components: + - pos: -8.5,-53.5 + parent: 1 + type: Transform + - uid: 2922 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-48.5 + parent: 1 + type: Transform + - uid: 2936 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-40.5 + parent: 1 + type: Transform + - uid: 2939 + components: + - pos: -12.5,-37.5 + parent: 1 + type: Transform + - uid: 2944 + components: + - pos: -20.5,-40.5 + parent: 1 + type: Transform + - uid: 2950 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-34.5 + parent: 1 + type: Transform + - uid: 2973 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 1 + type: Transform + - uid: 2981 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 1 + type: Transform + - uid: 3012 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 1 + type: Transform + - uid: 3018 + components: + - pos: -36.5,-27.5 + parent: 1 + type: Transform + - uid: 3020 + components: + - pos: -26.5,-35.5 + parent: 1 + type: Transform + - uid: 3022 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-31.5 + parent: 1 + type: Transform + - uid: 3023 + components: + - pos: -36.5,-32.5 + parent: 1 + type: Transform + - uid: 3028 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-36.5 + parent: 1 + type: Transform + - uid: 3032 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-38.5 + parent: 1 + type: Transform + - uid: 3034 + components: + - pos: -34.5,-36.5 + parent: 1 + type: Transform + - uid: 3035 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-38.5 + parent: 1 + type: Transform + - uid: 3041 + components: + - pos: -28.5,-36.5 + parent: 1 + type: Transform + - uid: 3042 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 1 + type: Transform + - uid: 3046 + components: + - pos: -20.5,-54.5 + parent: 1 + type: Transform + - uid: 8485 + components: + - pos: -22.5,-49.5 + parent: 1 + type: Transform + - uid: 8500 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-45.5 + parent: 1 + type: Transform + - uid: 8506 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 1 + type: Transform + - uid: 8508 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-37.5 + parent: 1 + type: Transform + - uid: 8513 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-37.5 + parent: 1 + type: Transform + - uid: 8516 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-31.5 + parent: 1 + type: Transform + - uid: 8518 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 1 + type: Transform + - uid: 8522 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-31.5 + parent: 1 + type: Transform + - uid: 8523 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 1 + type: Transform + - uid: 8525 + components: + - pos: 40.5,-22.5 + parent: 1 + type: Transform + - uid: 8527 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 1 + type: Transform + - uid: 8531 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 1 + type: Transform + - uid: 8533 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 1 + type: Transform + - uid: 8535 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-27.5 + parent: 1 + type: Transform + - uid: 8538 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-21.5 + parent: 1 + type: Transform + - uid: 8540 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-21.5 + parent: 1 + type: Transform + - uid: 8543 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 1 + type: Transform + - uid: 8549 + components: + - pos: 49.5,-11.5 + parent: 1 + type: Transform + - uid: 8554 + components: + - rot: 3.141592653589793 rad + pos: 49.5,-6.5 + parent: 1 + type: Transform + - uid: 8559 + components: + - pos: 49.5,-1.5 + parent: 1 + type: Transform + - uid: 8564 + components: + - pos: 49.5,31.5 + parent: 1 + type: Transform + - uid: 8565 + components: + - rot: 3.141592653589793 rad + pos: 49.5,34.5 + parent: 1 + type: Transform + - uid: 8570 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,37.5 + parent: 1 + type: Transform + - uid: 8573 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,37.5 + parent: 1 + type: Transform + - uid: 8575 + components: + - pos: 46.5,37.5 + parent: 1 + type: Transform + - uid: 8578 + components: + - rot: 3.141592653589793 rad + pos: -21.5,36.5 + parent: 1 + type: Transform + - uid: 8582 + components: + - pos: 4.5,36.5 + parent: 1 + type: Transform + - uid: 8586 + components: + - pos: 2.5,43.5 + parent: 1 + type: Transform + - uid: 8588 + components: + - rot: 3.141592653589793 rad + pos: 7.5,55.5 + parent: 1 + type: Transform + - uid: 8592 + components: + - pos: 7.5,54.5 + parent: 1 + type: Transform + - uid: 8597 + components: + - rot: 3.141592653589793 rad + pos: 7.5,47.5 + parent: 1 + type: Transform + - uid: 8600 + components: + - rot: 3.141592653589793 rad + pos: 7.5,50.5 + parent: 1 + type: Transform + - uid: 8601 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,45.5 + parent: 1 + type: Transform + - uid: 8604 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,60.5 + parent: 1 + type: Transform + - uid: 8605 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,59.5 + parent: 1 + type: Transform + - uid: 8610 + components: + - pos: 1.5,59.5 + parent: 1 + type: Transform + - uid: 8614 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 1 + type: Transform + - uid: 8616 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,60.5 + parent: 1 + type: Transform + - uid: 8621 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,60.5 + parent: 1 + type: Transform + - uid: 8623 + components: + - pos: -14.5,59.5 + parent: 1 + type: Transform + - uid: 8626 + components: + - pos: -14.5,55.5 + parent: 1 + type: Transform + - uid: 8628 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,50.5 + parent: 1 + type: Transform + - uid: 8632 + components: + - rot: 3.141592653589793 rad + pos: -14.5,51.5 + parent: 1 + type: Transform + - uid: 8637 + components: + - pos: -14.5,46.5 + parent: 1 + type: Transform + - uid: 8641 + components: + - pos: -12.5,43.5 + parent: 1 + type: Transform + - uid: 8642 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,36.5 + parent: 1 + type: Transform + - uid: 8644 + components: + - rot: 3.141592653589793 rad + pos: -13.5,38.5 + parent: 1 + type: Transform + - uid: 8647 + components: + - rot: 3.141592653589793 rad + pos: -33.5,41.5 + parent: 1 + type: Transform + - uid: 8649 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,36.5 + parent: 1 + type: Transform + - uid: 8650 + components: + - rot: 3.141592653589793 rad + pos: -33.5,33.5 + parent: 1 + type: Transform + - uid: 8651 + components: + - pos: -26.5,-30.5 + parent: 1 + type: Transform + - uid: 8656 + components: + - pos: -33.5,38.5 + parent: 1 + type: Transform + - uid: 8660 + components: + - pos: -21.5,40.5 + parent: 1 + type: Transform + - uid: 8663 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,42.5 + parent: 1 + type: Transform + - uid: 8671 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,44.5 + parent: 1 + type: Transform + - uid: 8677 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,35.5 + parent: 1 + type: Transform + - uid: 8681 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,42.5 + parent: 1 + type: Transform + - uid: 8684 + components: + - pos: -40.5,28.5 + parent: 1 + type: Transform + - uid: 8686 + components: + - pos: -37.5,29.5 + parent: 1 + type: Transform + - uid: 8690 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,29.5 + parent: 1 + type: Transform + - uid: 8692 + components: + - pos: -32.5,29.5 + parent: 1 + type: Transform + - uid: 8694 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,26.5 + parent: 1 + type: Transform + - uid: 8698 + components: + - rot: 3.141592653589793 rad + pos: -44.5,16.5 + parent: 1 + type: Transform + - uid: 8701 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,21.5 + parent: 1 + type: Transform + - uid: 8704 + components: + - rot: 3.141592653589793 rad + pos: -44.5,18.5 + parent: 1 + type: Transform + - uid: 8707 + components: + - pos: -44.5,24.5 + parent: 1 + type: Transform + - uid: 8710 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,36.5 + parent: 1 + type: Transform + - uid: 8712 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,38.5 + parent: 1 + type: Transform + - uid: 8716 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,38.5 + parent: 1 + type: Transform + - uid: 8719 + components: + - pos: -46.5,-14.5 + parent: 1 + type: Transform + - uid: 8722 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 1 + type: Transform + - uid: 8731 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-20.5 + parent: 1 + type: Transform + - uid: 8735 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 1 + type: Transform + - uid: 8737 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-24.5 + parent: 1 + type: Transform + - uid: 8739 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-27.5 + parent: 1 + type: Transform + - uid: 8744 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-7.5 + parent: 1 + type: Transform + - uid: 8747 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-4.5 + parent: 1 + type: Transform + - uid: 8749 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 1 + type: Transform + - uid: 8756 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 1 + type: Transform + - uid: 8767 + components: + - rot: 3.141592653589793 rad + pos: 3.5,38.5 + parent: 1 + type: Transform + - uid: 12317 + components: + - pos: -4.5,66.5 + parent: 1 + type: Transform + - uid: 12321 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,69.5 + parent: 1 + type: Transform + - uid: 12324 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,69.5 + parent: 1 + type: Transform + - uid: 12329 + components: + - pos: 3.5,67.5 + parent: 1 + type: Transform + - uid: 12336 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,61.5 + parent: 1 + type: Transform + - uid: 12337 + components: + - rot: 3.141592653589793 rad + pos: -4.5,63.5 + parent: 1 + type: Transform + - uid: 12338 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,62.5 + parent: 1 + type: Transform + - uid: 12341 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,61.5 + parent: 1 + type: Transform + - uid: 12529 + components: + - pos: -26.5,-27.5 + parent: 1 + type: Transform + - uid: 12530 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 1 + type: Transform +- proto: Handcuffs + entities: + - uid: 5063 + components: + - pos: -0.47162104,32.53128 + parent: 1 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 12545 + components: + - pos: 20.351448,-20.427984 + parent: 1 + type: Transform + - uid: 12546 + components: + - pos: 20.632698,-20.552984 + parent: 1 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 12428 + components: + - pos: -12.421777,-11.625296 + parent: 1 + type: Transform +- proto: HandLabeler + entities: + - uid: 5093 + components: + - pos: -4.5167303,19.595882 + parent: 1 + type: Transform + - uid: 12544 + components: + - pos: 11.496555,-20.355099 + parent: 1 + type: Transform +- proto: HarpInstrument + entities: + - uid: 2846 + components: + - pos: -18.5,-50.5 + parent: 1 + type: Transform +- proto: HeadSkeleton + entities: + - uid: 8257 + components: + - flags: SessionSpecific + desc: jim :) + name: jim :) + type: MetaData + - pos: 25.50356,16.52645 + parent: 1 + type: Transform +- proto: Hemostat + entities: + - uid: 8243 + components: + - pos: -24.61685,20.770723 + parent: 1 + type: Transform + - uid: 9627 + components: + - pos: 18.467201,27.515732 + parent: 1 + type: Transform +- proto: HighSecArmoryLocked + entities: + - uid: 3326 + components: + - pos: 35.5,11.5 + parent: 1 + type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 3283 + components: + - pos: -3.5,26.5 + parent: 1 + type: Transform + - uid: 3612 + components: + - pos: -6.5,47.5 + parent: 1 + type: Transform + - uid: 3613 + components: + - pos: -1.5,52.5 + parent: 1 + type: Transform + - uid: 3670 + components: + - pos: -40.5,17.5 + parent: 1 + type: Transform + - uid: 7081 + components: + - pos: -5.5,-32.5 + parent: 1 + type: Transform +- proto: HolofanProjector + entities: + - uid: 7144 + components: + - pos: 31.574986,-16.324593 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 794 + components: + - pos: 25.5,12.5 + parent: 1 + type: Transform + - uid: 1804 + components: + - pos: 28.5,5.5 + parent: 1 + type: Transform + - uid: 1843 + components: + - pos: -20.5,-3.5 + parent: 1 + type: Transform + - uid: 1852 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 1855 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 1 + type: Transform + - uid: 1856 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,7.5 + parent: 1 + type: Transform + - uid: 1857 + components: + - pos: -17.5,7.5 + parent: 1 + type: Transform + - uid: 1858 + components: + - pos: -18.5,7.5 + parent: 1 + type: Transform + - uid: 5371 + components: + - pos: -5.5,19.5 + parent: 1 + type: Transform + - uid: 5372 + components: + - pos: 3.5,31.5 + parent: 1 + type: Transform + - uid: 5376 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1 + type: Transform + - uid: 5672 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 1 + type: Transform + - uid: 7440 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 7718 + components: + - pos: -5.5,-29.5 + parent: 1 + type: Transform + - uid: 7719 + components: + - pos: -1.5,-29.5 + parent: 1 + type: Transform + - uid: 9638 + components: + - pos: 15.5,27.5 + parent: 1 + type: Transform + - uid: 12412 + components: + - pos: -10.5,-28.5 + parent: 1 + type: Transform + - uid: 12413 + components: + - pos: -10.5,-31.5 + parent: 1 + type: Transform + - uid: 12414 + components: + - pos: -13.5,-30.5 + parent: 1 + type: Transform + - uid: 12415 + components: + - pos: -17.5,-53.5 + parent: 1 + type: Transform + - uid: 12416 + components: + - pos: -38.5,-10.5 + parent: 1 + type: Transform + - uid: 12417 + components: + - pos: -31.5,13.5 + parent: 1 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 5462 + components: + - pos: 29.474905,24.50394 + parent: 1 + type: Transform + - uid: 12458 + components: + - pos: -2.512826,-0.5396495 + parent: 1 + type: Transform +- proto: HydroponicsToolHatchet + entities: + - uid: 12460 + components: + - pos: -2.2798755,-0.4458995 + parent: 1 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 5461 + components: + - pos: 29.474905,24.550816 + parent: 1 + type: Transform + - uid: 12457 + components: + - pos: -2.012826,-0.4458995 + parent: 1 + type: Transform +- proto: HydroponicsToolSpade + entities: + - uid: 5463 + components: + - pos: 29.506155,24.550816 + parent: 1 + type: Transform + - uid: 12459 + components: + - pos: -2.465951,-0.3052745 + parent: 1 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 4939 + components: + - pos: 31.5,28.5 + parent: 1 + type: Transform + - uid: 4940 + components: + - pos: 30.5,28.5 + parent: 1 + type: Transform + - uid: 4943 + components: + - pos: 29.5,28.5 + parent: 1 + type: Transform + - uid: 4944 + components: + - pos: 28.5,28.5 + parent: 1 + type: Transform + - uid: 5996 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 5997 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 5998 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 5999 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 6000 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 6001 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 6002 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 6003 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 6004 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 6005 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 6006 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: InflatableDoorStack + entities: + - uid: 7147 + components: + - pos: 32.62186,-18.512093 + parent: 1 + type: Transform +- proto: InflatableWallStack + entities: + - uid: 7146 + components: + - pos: 32.40311,-18.355843 + parent: 1 + type: Transform +- proto: IngotGold + entities: + - uid: 4131 + components: + - pos: -1.465405,25.0651 + parent: 1 + type: Transform +- proto: IngotSilver + entities: + - uid: 4137 + components: + - pos: -1.4981794,24.932814 + parent: 1 + type: Transform +- proto: IntercomAll + entities: + - uid: 5491 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 5492 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 1 + type: Transform +- proto: IntercomCommand + entities: + - uid: 5488 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 5489 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 5504 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 1 + type: Transform +- proto: IntercomCommon + entities: + - uid: 3910 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 3911 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,51.5 + parent: 1 + type: Transform + - uid: 3912 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,53.5 + parent: 1 + type: Transform + - uid: 3913 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,51.5 + parent: 1 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 9272 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 9273 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 9274 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-12.5 + parent: 1 + type: Transform + - uid: 9275 + components: + - pos: 22.5,-2.5 + parent: 1 + type: Transform + - uid: 9276 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 1 + type: Transform + - uid: 9277 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 9278 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 1 + type: Transform +- proto: IntercomMedical + entities: + - uid: 5702 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 9258 + components: + - rot: 3.141592653589793 rad + pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 9259 + components: + - pos: -12.5,22.5 + parent: 1 + type: Transform + - uid: 9260 + components: + - rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 1 + type: Transform + - uid: 9261 + components: + - pos: -22.5,17.5 + parent: 1 + type: Transform + - uid: 9262 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,21.5 + parent: 1 + type: Transform +- proto: IntercomScience + entities: + - uid: 24 + components: + - pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 9263 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 9265 + components: + - pos: -14.5,-11.5 + parent: 1 + type: Transform + - uid: 9266 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 9267 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 5302 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 5494 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - uid: 5496 + components: + - pos: 21.5,16.5 + parent: 1 + type: Transform + - uid: 5497 + components: + - rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 5499 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,14.5 + parent: 1 + type: Transform + - uid: 5500 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 5501 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1 + type: Transform + - uid: 10116 + components: + - pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 11606 + components: + - pos: 28.5,11.5 + parent: 1 + type: Transform +- proto: IntercomService + entities: + - uid: 9256 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform +- proto: IntercomSupply + entities: + - uid: 9268 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 9269 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 9270 + components: + - pos: 12.5,-24.5 + parent: 1 + type: Transform + - uid: 9271 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 12437 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 1 + type: Transform +- proto: JetpackBlueFilled + entities: + - uid: 5005 + components: + - flags: InContainer + type: MetaData + - parent: 4120 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: JetpackMiniFilled + entities: + - uid: 4926 + components: + - pos: 40.56656,21.748663 + parent: 1 + type: Transform + - uid: 4927 + components: + - pos: 40.50406,21.498663 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 4942 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 5968 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 4941 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - uid: 5870 + components: + - pos: -10.5,16.5 + parent: 1 + type: Transform + - uid: 5914 + components: + - pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 5967 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 5970 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: Lamp + entities: + - uid: 3986 + components: + - pos: -9.510255,48.896393 + parent: 1 + type: Transform + - uid: 3990 + components: + - pos: -8.49463,57.014515 + parent: 1 + type: Transform + - uid: 3991 + components: + - pos: -10.55713,54.97145 + parent: 1 + type: Transform + - uid: 4012 + components: + - pos: -7.5221167,46.845314 + parent: 1 + type: Transform + - uid: 5584 + components: + - pos: -40.604885,-5.037887 + parent: 1 + type: Transform + - uid: 6026 + components: + - pos: -12.614596,-0.4335618 + parent: 1 + type: Transform + - uid: 6048 + components: + - pos: -17.453178,-4.0584826 + parent: 1 + type: Transform + - uid: 7287 + components: + - pos: 16.489933,-23.942678 + parent: 1 + type: Transform + - uid: 8246 + components: + - pos: -9.624902,-11.094046 + parent: 1 + type: Transform + - uid: 9589 + components: + - pos: 40.264347,31.975986 + parent: 1 + type: Transform + - uid: 9590 + components: + - pos: 46.436222,31.944736 + parent: 1 + type: Transform + - uid: 9591 + components: + - pos: 39.451847,33.913486 + parent: 1 + type: Transform + - uid: 9635 + components: + - rot: 1.5707963267948966 rad + pos: 18.518274,26.145664 + parent: 1 + type: Transform +- proto: LampGold + entities: + - uid: 5583 + components: + - pos: -36.27676,-2.084762 + parent: 1 + type: Transform + - uid: 7418 + components: + - pos: 11.72576,-18.556658 + parent: 1 + type: Transform + - uid: 9016 + components: + - pos: -38.493835,-9.175766 + parent: 1 + type: Transform +- proto: LargeBeaker + entities: + - uid: 6087 + components: + - pos: -27.397102,-5.3872204 + parent: 1 + type: Transform +- proto: LightReplacer + entities: + - uid: 7668 + components: + - pos: 12.627049,-0.27726722 + parent: 1 + type: Transform +- proto: LockerAtmosphericsFilled + entities: + - uid: 7128 + components: + - pos: 33.5,-16.5 + parent: 1 + type: Transform + - uid: 7129 + components: + - pos: 32.5,-16.5 + parent: 1 + type: Transform +- proto: LockerBooze + entities: + - uid: 8297 + components: + - pos: -27.5,-13.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerBoozeFilled + entities: + - uid: 5951 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: LockerBotanistFilled + entities: + - uid: 3372 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 5994 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform +- proto: LockerCaptainFilled + entities: + - uid: 4090 + components: + - pos: 3.5,27.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5926 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerChemistryFilled + entities: + - uid: 5613 + components: + - pos: -13.5,13.5 + parent: 1 + type: Transform +- proto: LockerChiefEngineerFilled + entities: + - uid: 5669 + components: + - pos: 20.5,-15.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5670 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 1867 + components: + - pos: -20.5,16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1868 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerDetectiveFilled + entities: + - uid: 5356 + components: + - pos: 27.5,6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5357 + - 5358 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 3898 + components: + - pos: -2.5,46.5 + parent: 1 + type: Transform + - uid: 6762 + components: + - pos: 18.5,-5.5 + parent: 1 + type: Transform + - uid: 8827 + components: + - pos: -21.5,-24.5 + parent: 1 + type: Transform + - uid: 9138 + components: + - pos: 8.5,-15.5 + parent: 1 + type: Transform + - uid: 9355 + components: + - pos: 8.5,29.5 + parent: 1 + type: Transform + - uid: 9680 + components: + - pos: -28.5,27.5 + parent: 1 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 3797 + components: + - pos: 19.5,-3.5 + parent: 1 + type: Transform + - uid: 6770 + components: + - pos: 23.5,-4.5 + parent: 1 + type: Transform + - uid: 6771 + components: + - pos: 23.5,-5.5 + parent: 1 + type: Transform + - uid: 6772 + components: + - pos: 23.5,-6.5 + parent: 1 + type: Transform +- proto: LockerEvidence + entities: + - uid: 12065 + components: + - pos: 13.5,8.5 + parent: 1 + type: Transform + - uid: 12066 + components: + - pos: 16.5,8.5 + parent: 1 + type: Transform + - uid: 12067 + components: + - pos: 19.5,8.5 + parent: 1 + type: Transform +- proto: LockerFreezer + entities: + - uid: 4120 + components: + - pos: -4.5,23.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4829 + - 4842 + - 5005 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 4965 + components: + - pos: -4.5,21.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5928 + - 5927 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 5374 + components: + - pos: 29.5,12.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12478 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerMedicalFilled + entities: + - uid: 1908 + components: + - pos: -26.5,9.5 + parent: 1 + type: Transform + - uid: 1909 + components: + - pos: -25.5,9.5 + parent: 1 + type: Transform + - uid: 5917 + components: + - pos: -23.5,9.5 + parent: 1 + type: Transform + - uid: 12608 + components: + - pos: 21.5,5.5 + parent: 1 + type: Transform +- proto: LockerMedicineFilled + entities: + - uid: 1905 + components: + - pos: -19.5,11.5 + parent: 1 + type: Transform + - uid: 1910 + components: + - pos: -18.5,11.5 + parent: 1 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 7443 + components: + - pos: 4.5,-16.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 7444 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerResearchDirectorFilled + entities: + - uid: 1845 + components: + - pos: -21.5,-3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12418 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 3594 + components: + - pos: 19.5,-23.5 + parent: 1 + type: Transform + - uid: 7295 + components: + - pos: 18.5,-23.5 + parent: 1 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 3816 + components: + - pos: -18.5,-0.5 + parent: 1 + type: Transform + - uid: 3817 + components: + - pos: -17.5,-0.5 + parent: 1 + type: Transform + - uid: 3818 + components: + - pos: -16.5,-0.5 + parent: 1 + type: Transform + - uid: 5912 + components: + - pos: -15.5,-0.5 + parent: 1 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 764 + components: + - pos: 18.5,14.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 765 + components: + - pos: 18.5,13.5 + parent: 1 + type: Transform + - uid: 766 + components: + - pos: 18.5,12.5 + parent: 1 + type: Transform +- proto: LockerWallMedicalFilled + entities: + - uid: 10854 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,13.5 + parent: 1 + type: Transform + - uid: 10855 + components: + - rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 1 + type: Transform +- proto: LockerWardenFilled + entities: + - uid: 5368 + components: + - pos: 27.5,18.5 + parent: 1 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 6761 + components: + - pos: 18.5,-6.5 + parent: 1 + type: Transform + - uid: 8828 + components: + - pos: -21.5,-25.5 + parent: 1 + type: Transform + - uid: 8831 + components: + - pos: 14.5,-14.5 + parent: 1 + type: Transform + - uid: 9354 + components: + - pos: 8.5,30.5 + parent: 1 + type: Transform + - uid: 9681 + components: + - pos: -27.5,27.5 + parent: 1 + type: Transform +- proto: MachineAnomalyGenerator + entities: + - uid: 6063 + components: + - pos: -26.5,-2.5 + parent: 1 + type: Transform +- proto: MachineAnomalyVessel + entities: + - uid: 6097 + components: + - pos: -31.5,-7.5 + parent: 1 + type: Transform + - uid: 7153 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 1 + type: Transform +- proto: MachineAPE + entities: + - uid: 6093 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 1 + type: Transform + - uid: 6094 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 1 + type: Transform + - uid: 6095 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 1 + type: Transform + - uid: 6096 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-5.5 + parent: 1 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 6124 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 1 + type: Transform + - links: + - 6123 + type: DeviceLinkSink +- proto: MagazinePistol + entities: + - uid: 5403 + components: + - pos: 29.556211,16.447828 + parent: 1 + type: Transform +- proto: MagazinePistolSubMachineGunRubber + entities: + - uid: 5311 + components: + - pos: 18.504484,15.628139 + parent: 1 + type: Transform + - uid: 5312 + components: + - pos: 18.77011,15.612514 + parent: 1 + type: Transform +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 5386 + components: + - pos: 27.431211,14.508017 + parent: 1 + type: Transform + - uid: 5387 + components: + - pos: 27.431211,14.367392 + parent: 1 + type: Transform +- proto: MagazineRifle + entities: + - uid: 5432 + components: + - pos: 38.28125,11.49122 + parent: 1 + type: Transform + - uid: 5433 + components: + - pos: 38.421875,11.506845 + parent: 1 + type: Transform +- proto: MagazineRifleRubber + entities: + - uid: 5434 + components: + - pos: 38.59375,11.506845 + parent: 1 + type: Transform + - uid: 5435 + components: + - pos: 38.75,11.506845 + parent: 1 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 8830 + components: + - pos: -25.5,-24.5 + parent: 1 + type: Transform + - uid: 8907 + components: + - pos: -33.5,-5.5 + parent: 1 + type: Transform + - uid: 8914 + components: + - pos: -26.5,-16.5 + parent: 1 + type: Transform + - uid: 8915 + components: + - pos: -33.5,-8.5 + parent: 1 + type: Transform + - uid: 8916 + components: + - pos: -31.5,-2.5 + parent: 1 + type: Transform + - uid: 8920 + components: + - pos: -15.5,-22.5 + parent: 1 + type: Transform + - uid: 8921 + components: + - pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 8922 + components: + - pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 8923 + components: + - pos: -1.5,-15.5 + parent: 1 + type: Transform + - uid: 8926 + components: + - pos: -27.5,-21.5 + parent: 1 + type: Transform + - uid: 9049 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 9146 + components: + - pos: 18.5,-18.5 + parent: 1 + type: Transform + - uid: 9150 + components: + - pos: 9.5,-12.5 + parent: 1 + type: Transform + - uid: 9154 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 9167 + components: + - pos: 22.5,-0.5 + parent: 1 + type: Transform + - uid: 9255 + components: + - pos: -36.5,-9.5 + parent: 1 + type: Transform + - uid: 9329 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 9330 + components: + - pos: 16.5,23.5 + parent: 1 + type: Transform + - uid: 9471 + components: + - pos: 14.5,30.5 + parent: 1 + type: Transform + - uid: 9472 + components: + - pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 9477 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 9478 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 9481 + components: + - pos: 18.5,17.5 + parent: 1 + type: Transform + - uid: 9482 + components: + - pos: 19.5,22.5 + parent: 1 + type: Transform + - uid: 9485 + components: + - pos: 27.5,35.5 + parent: 1 + type: Transform + - uid: 9486 + components: + - pos: 29.5,35.5 + parent: 1 + type: Transform + - uid: 9551 + components: + - pos: 36.5,23.5 + parent: 1 + type: Transform + - uid: 9557 + components: + - pos: 41.5,11.5 + parent: 1 + type: Transform + - uid: 9558 + components: + - pos: 37.5,7.5 + parent: 1 + type: Transform + - uid: 9559 + components: + - pos: 42.5,7.5 + parent: 1 + type: Transform + - uid: 9714 + components: + - pos: -35.5,18.5 + parent: 1 + type: Transform + - uid: 9716 + components: + - pos: -32.5,18.5 + parent: 1 + type: Transform + - uid: 9717 + components: + - pos: -24.5,26.5 + parent: 1 + type: Transform + - uid: 9721 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 9722 + components: + - pos: -19.5,21.5 + parent: 1 + type: Transform + - uid: 9727 + components: + - pos: -31.5,21.5 + parent: 1 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 10641 + components: + - pos: -28.5,24.5 + parent: 1 + type: Transform + - uid: 10642 + components: + - pos: 28.5,-18.5 + parent: 1 + type: Transform + - uid: 10643 + components: + - pos: 20.5,35.5 + parent: 1 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 8832 + components: + - pos: -23.5,-25.5 + parent: 1 + type: Transform + - uid: 8903 + components: + - pos: -41.5,-9.5 + parent: 1 + type: Transform + - uid: 8905 + components: + - pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 8906 + components: + - pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 8912 + components: + - pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 8913 + components: + - pos: -26.5,-15.5 + parent: 1 + type: Transform + - uid: 8918 + components: + - pos: -18.5,-20.5 + parent: 1 + type: Transform + - uid: 8919 + components: + - pos: -14.5,-22.5 + parent: 1 + type: Transform + - uid: 8924 + components: + - pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 8925 + components: + - pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 9145 + components: + - pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 9147 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 9148 + components: + - pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 9153 + components: + - pos: 26.5,-21.5 + parent: 1 + type: Transform + - uid: 9168 + components: + - pos: 42.5,-1.5 + parent: 1 + type: Transform + - uid: 9169 + components: + - pos: 32.5,-3.5 + parent: 1 + type: Transform + - uid: 9473 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 9474 + components: + - pos: 12.5,30.5 + parent: 1 + type: Transform + - uid: 9476 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 9479 + components: + - pos: 16.5,17.5 + parent: 1 + type: Transform + - uid: 9480 + components: + - pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 9552 + components: + - pos: 36.5,25.5 + parent: 1 + type: Transform + - uid: 9553 + components: + - pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 9554 + components: + - pos: 38.5,7.5 + parent: 1 + type: Transform + - uid: 9555 + components: + - pos: 42.5,6.5 + parent: 1 + type: Transform + - uid: 9713 + components: + - pos: -34.5,18.5 + parent: 1 + type: Transform + - uid: 9719 + components: + - pos: -22.5,29.5 + parent: 1 + type: Transform + - uid: 9720 + components: + - pos: -7.5,23.5 + parent: 1 + type: Transform + - uid: 9723 + components: + - pos: -28.5,20.5 + parent: 1 + type: Transform + - uid: 9728 + components: + - pos: -32.5,21.5 + parent: 1 + type: Transform + - uid: 9729 + components: + - pos: -28.5,11.5 + parent: 1 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 8834 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - uid: 8910 + components: + - pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 9144 + components: + - pos: 20.5,-18.5 + parent: 1 + type: Transform + - uid: 9170 + components: + - pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 9470 + components: + - pos: 21.5,30.5 + parent: 1 + type: Transform + - uid: 9483 + components: + - pos: 19.5,23.5 + parent: 1 + type: Transform + - uid: 9484 + components: + - pos: 23.5,32.5 + parent: 1 + type: Transform + - uid: 9549 + components: + - pos: 36.5,26.5 + parent: 1 + type: Transform + - uid: 9715 + components: + - pos: -22.5,26.5 + parent: 1 + type: Transform + - uid: 9724 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform +- proto: MaterialCloth + entities: + - uid: 5089 + components: + - pos: 0.3902992,21.580257 + parent: 1 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 5090 + components: + - pos: 0.4215492,21.564632 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 7289 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform +- proto: MaterialReclaimerMachineCircuitboard + entities: + - uid: 9518 + components: + - pos: -2.569489,-34.556107 + parent: 1 + type: Transform +- proto: MaterialWoodPlank + entities: + - uid: 8495 + components: + - pos: -30.470095,-14.477021 + parent: 1 + type: Transform +- proto: MedicalBed + entities: + - uid: 1853 + components: + - pos: -18.5,5.5 + parent: 1 + type: Transform + - uid: 1854 + components: + - pos: -15.5,5.5 + parent: 1 + type: Transform + - uid: 1862 + components: + - pos: -18.5,16.5 + parent: 1 + type: Transform + - uid: 5339 + components: + - pos: 23.5,6.5 + parent: 1 + type: Transform + - uid: 5607 + components: + - pos: -10.5,18.5 + parent: 1 + type: Transform + - uid: 5618 + components: + - pos: -10.5,21.5 + parent: 1 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 5597 + components: + - pos: -23.5,7.5 + parent: 1 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 4118 + components: + - pos: -2.430763,27.440598 + parent: 1 + type: Transform + - uid: 5900 + components: + - pos: -26.652166,11.588954 + parent: 1 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 5893 + components: + - pos: -24.902317,11.678088 + parent: 1 + type: Transform + - uid: 5897 + components: + - pos: -24.902166,11.526454 + parent: 1 + type: Transform + - uid: 8819 + components: + - pos: -40.48545,-16.453053 + parent: 1 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 5891 + components: + - pos: -25.409866,11.671727 + parent: 1 + type: Transform + - uid: 5898 + components: + - pos: -25.402166,11.510829 + parent: 1 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 4119 + components: + - pos: -2.4295425,27.687153 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 5059 + components: + - pos: 5.540815,19.460373 + parent: 1 + type: Transform + - uid: 5347 + components: + - pos: 23.535002,7.498471 + parent: 1 + type: Transform + - uid: 5895 + components: + - pos: -24.402317,11.678088 + parent: 1 + type: Transform + - uid: 5896 + components: + - pos: -24.386541,11.526454 + parent: 1 + type: Transform + - uid: 7419 + components: + - pos: 11.436758,-19.113333 + parent: 1 + type: Transform + - uid: 9579 + components: + - pos: 44.521946,6.5499096 + parent: 1 + type: Transform + - uid: 9641 + components: + - pos: -26.512701,21.421293 + parent: 1 + type: Transform +- proto: MedkitO2 + entities: + - uid: 5066 + components: + - pos: -3.487246,31.609404 + parent: 1 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 5352 + components: + - pos: 23.535002,7.373471 + parent: 1 + type: Transform + - uid: 5890 + components: + - pos: -25.909866,11.671727 + parent: 1 + type: Transform + - uid: 5899 + components: + - pos: -25.902166,11.510829 + parent: 1 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 5892 + components: + - pos: -26.402166,11.656432 + parent: 1 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 5894 + components: + - pos: -26.394794,11.510829 + parent: 1 + type: Transform +- proto: Mirror + entities: + - uid: 7888 + components: + - pos: -18.5,-23.5 + parent: 1 + type: Transform + - uid: 7889 + components: + - pos: -17.5,-23.5 + parent: 1 + type: Transform + - uid: 7890 + components: + - pos: -16.5,-23.5 + parent: 1 + type: Transform +- proto: MonkeyCube + entities: + - uid: 5990 + components: + - pos: -2.5931392,3.6905057 + parent: 1 + type: Transform +- proto: MonkeyCubeBox + entities: + - uid: 6333 + components: + - pos: -14.498325,-10.477551 + parent: 1 + type: Transform +- proto: MopBucketFull + entities: + - uid: 8847 + components: + - pos: 17.627773,-0.48197973 + parent: 1 + type: Transform + - uid: 9652 + components: + - pos: 13.5359125,24.626709 + parent: 1 + type: Transform + - uid: 11938 + components: + - pos: 13.5359125,25.564209 + parent: 1 + type: Transform +- proto: MopItem + entities: + - uid: 8848 + components: + - pos: 17.455898,-0.46635473 + parent: 1 + type: Transform + - uid: 9654 + components: + - pos: 13.2546625,23.517334 + parent: 1 + type: Transform + - uid: 9657 + components: + - pos: 13.4890375,23.501709 + parent: 1 + type: Transform +- proto: Morgue + entities: + - uid: 1913 + components: + - rot: 3.141592653589793 rad + pos: -25.5,13.5 + parent: 1 + type: Transform + - uid: 1914 + components: + - rot: 3.141592653589793 rad + pos: -26.5,13.5 + parent: 1 + type: Transform + - uid: 1915 + components: + - rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 1 + type: Transform + - uid: 1916 + components: + - pos: -26.5,16.5 + parent: 1 + type: Transform + - uid: 1917 + components: + - pos: -25.5,16.5 + parent: 1 + type: Transform + - uid: 1918 + components: + - pos: -24.5,16.5 + parent: 1 + type: Transform + - uid: 3476 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,16.5 + parent: 1 + type: Transform + - uid: 5343 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 1 + type: Transform +- proto: MouseTimedSpawner + entities: + - uid: 11909 + components: + - pos: -37.5,-13.5 + parent: 1 + type: Transform + - uid: 11910 + components: + - pos: -28.5,26.5 + parent: 1 + type: Transform + - uid: 11911 + components: + - pos: 18.5,29.5 + parent: 1 + type: Transform + - uid: 11912 + components: + - pos: 18.5,-17.5 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 6072 + components: + - pos: -5.580178,-15.315853 + parent: 1 + type: Transform + - uid: 6335 + components: + - pos: -14.30331,-8.459229 + parent: 1 + type: Transform +- proto: NanoManipulatorStockPart + entities: + - uid: 9501 + components: + - pos: -3.015568,-31.493607 + parent: 1 + type: Transform + - uid: 9502 + components: + - pos: -3.960114,-31.306107 + parent: 1 + type: Transform +- proto: NetworkConfigurator + entities: + - uid: 5602 + components: + - pos: -23.538898,5.5020247 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 6803 + components: + - pos: 43.5,-5.5 + parent: 1 + type: Transform + - uid: 6996 + components: + - pos: 36.5,-4.5 + parent: 1 + type: Transform + - uid: 6998 + components: + - pos: 35.5,-4.5 + parent: 1 + type: Transform + - uid: 8864 + components: + - pos: -13.5,-20.5 + parent: 1 + type: Transform + - uid: 8865 + components: + - pos: -29.5,-10.5 + parent: 1 + type: Transform + - uid: 8869 + components: + - pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 9127 + components: + - pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 9182 + components: + - pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 9251 + components: + - pos: 31.5,32.5 + parent: 1 + type: Transform + - uid: 9342 + components: + - pos: 35.5,16.5 + parent: 1 + type: Transform + - uid: 9343 + components: + - pos: 21.5,23.5 + parent: 1 + type: Transform + - uid: 9344 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 9693 + components: + - pos: -15.5,23.5 + parent: 1 + type: Transform + - uid: 9694 + components: + - pos: -7.5,20.5 + parent: 1 + type: Transform +- proto: NitrogenTankFilled + entities: + - uid: 8927 + components: + - pos: -33.671288,-7.446391 + parent: 1 + type: Transform + - uid: 9730 + components: + - pos: -28.673817,12.610113 + parent: 1 + type: Transform +- proto: NitrousOxideCanister + entities: + - uid: 6324 + components: + - pos: -18.5,-18.5 + parent: 1 + type: Transform + - uid: 6810 + components: + - pos: 43.5,-11.5 + parent: 1 + type: Transform + - uid: 7003 + components: + - pos: 36.5,-2.5 + parent: 1 + type: Transform +- proto: NuclearBomb + entities: + - uid: 4128 + components: + - pos: -4.5,25.5 + parent: 1 + type: Transform +- proto: Ointment + entities: + - uid: 9630 + components: + - pos: 18.654701,27.734482 + parent: 1 + type: Transform +- proto: Omnitool + entities: + - uid: 4829 + components: + - flags: InContainer + type: MetaData + - parent: 4120 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OperatingTable + entities: + - uid: 5521 + components: + - pos: -24.5,22.5 + parent: 1 + type: Transform +- proto: OreProcessor + entities: + - uid: 7286 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform +- proto: OreProcessorMachineCircuitboard + entities: + - uid: 9517 + components: + - pos: -2.366364,-34.35298 + parent: 1 + type: Transform +- proto: OrganHumanHeart + entities: + - uid: 12288 + components: + - pos: -11.34931,-33.29647 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 3356 + components: + - pos: 28.5,-20.5 + parent: 1 + type: Transform + - uid: 4924 + components: + - pos: 41.5,21.5 + parent: 1 + type: Transform + - uid: 6802 + components: + - pos: 43.5,-7.5 + parent: 1 + type: Transform + - uid: 6995 + components: + - pos: 36.5,-3.5 + parent: 1 + type: Transform + - uid: 6997 + components: + - pos: 35.5,-3.5 + parent: 1 + type: Transform + - uid: 7283 + components: + - pos: 26.5,-23.5 + parent: 1 + type: Transform + - uid: 8805 + components: + - pos: -34.5,-23.5 + parent: 1 + type: Transform + - uid: 8863 + components: + - pos: -14.5,-20.5 + parent: 1 + type: Transform + - uid: 8866 + components: + - pos: -28.5,-10.5 + parent: 1 + type: Transform + - uid: 8870 + components: + - pos: -33.5,-19.5 + parent: 1 + type: Transform + - uid: 9128 + components: + - pos: 23.5,-18.5 + parent: 1 + type: Transform + - uid: 9181 + components: + - pos: 27.5,-0.5 + parent: 1 + type: Transform + - uid: 9252 + components: + - pos: 32.5,32.5 + parent: 1 + type: Transform + - uid: 9339 + components: + - pos: 7.5,22.5 + parent: 1 + type: Transform + - uid: 9340 + components: + - pos: 21.5,24.5 + parent: 1 + type: Transform + - uid: 9341 + components: + - pos: 35.5,17.5 + parent: 1 + type: Transform + - uid: 9662 + components: + - pos: -29.5,29.5 + parent: 1 + type: Transform + - uid: 9664 + components: + - pos: -18.5,31.5 + parent: 1 + type: Transform + - uid: 9695 + components: + - pos: -16.5,23.5 + parent: 1 + type: Transform + - uid: 9696 + components: + - pos: -7.5,21.5 + parent: 1 + type: Transform +- proto: PaintingMonkey + entities: + - uid: 5040 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 5585 + components: + - pos: -39.604885,-5.4378414 + parent: 1 + type: Transform + - uid: 5586 + components: + - pos: -40.448635,-5.8909664 + parent: 1 + type: Transform + - uid: 5587 + components: + - pos: -39.55801,-6.2972164 + parent: 1 + type: Transform + - uid: 5588 + components: + - pos: -40.104885,-6.3753414 + parent: 1 + type: Transform + - uid: 5589 + components: + - pos: -40.011135,-5.7034664 + parent: 1 + type: Transform +- proto: PaperBin10 + entities: + - uid: 4110 + components: + - pos: -10.5,31.5 + parent: 1 + type: Transform + - uid: 5073 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 5581 + components: + - pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 6053 + components: + - pos: -17.5,-3.5 + parent: 1 + type: Transform + - uid: 7400 + components: + - pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 7447 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 7782 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 1 + type: Transform + - uid: 9588 + components: + - pos: 39.5,31.5 + parent: 1 + type: Transform +- proto: PaperBin5 + entities: + - uid: 3985 + components: + - pos: -10.5,52.5 + parent: 1 + type: Transform + - uid: 3994 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - uid: 4974 + components: + - pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 5331 + components: + - pos: 27.5,10.5 + parent: 1 + type: Transform + - uid: 7405 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + type: Transform +- proto: PaperCaptainsThoughts + entities: + - uid: 4977 + components: + - pos: 4.359273,27.643576 + parent: 1 + type: Transform + - uid: 4978 + components: + - pos: 4.437398,27.643576 + parent: 1 + type: Transform + - uid: 4979 + components: + - pos: 4.515523,27.643576 + parent: 1 + type: Transform + - uid: 4980 + components: + - pos: 4.593648,27.643576 + parent: 1 + type: Transform +- proto: PaperOffice + entities: + - uid: 3999 + components: + - rot: 3.141592653589793 rad + pos: -8.849914,48.62344 + parent: 1 + type: Transform + - uid: 4000 + components: + - rot: 3.141592653589793 rad + pos: -8.928039,48.62344 + parent: 1 + type: Transform + - uid: 4001 + components: + - rot: 3.141592653589793 rad + pos: -8.943664,48.62344 + parent: 1 + type: Transform + - uid: 4002 + components: + - rot: 3.141592653589793 rad + pos: -3.4749136,48.607815 + parent: 1 + type: Transform + - uid: 4003 + components: + - rot: 3.141592653589793 rad + pos: -3.3967886,48.576565 + parent: 1 + type: Transform + - uid: 4004 + components: + - pos: -7.5999136,56.62344 + parent: 1 + type: Transform + - uid: 4005 + components: + - pos: -7.5061636,56.62344 + parent: 1 + type: Transform + - uid: 4006 + components: + - pos: -7.4592886,56.62344 + parent: 1 + type: Transform + - uid: 4112 + components: + - pos: -9.663862,28.018454 + parent: 1 + type: Transform + - uid: 4113 + components: + - pos: -9.585737,27.940329 + parent: 1 + type: Transform + - uid: 4114 + components: + - pos: -9.304487,29.049704 + parent: 1 + type: Transform + - uid: 4115 + components: + - pos: -9.460737,28.955954 + parent: 1 + type: Transform + - uid: 5074 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5075 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5076 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5077 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5078 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5079 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5080 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5081 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5082 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5083 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5084 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5085 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5086 + components: + - pos: -4.5159507,19.627132 + parent: 1 + type: Transform + - uid: 5087 + components: + - pos: -4.5472007,19.595882 + parent: 1 + type: Transform + - uid: 5088 + components: + - pos: -4.5472007,19.595882 + parent: 1 + type: Transform + - uid: 5391 + components: + - pos: 27.337461,13.773642 + parent: 1 + type: Transform + - uid: 5392 + components: + - pos: 27.368711,13.758017 + parent: 1 + type: Transform + - uid: 5393 + components: + - pos: 27.415586,13.711142 + parent: 1 + type: Transform + - uid: 5394 + components: + - pos: 27.478086,13.679892 + parent: 1 + type: Transform + - uid: 5398 + components: + - pos: 28.493711,16.557203 + parent: 1 + type: Transform + - uid: 5399 + components: + - pos: 28.540586,16.557203 + parent: 1 + type: Transform + - uid: 5400 + components: + - pos: 28.587461,16.557203 + parent: 1 + type: Transform + - uid: 5401 + components: + - pos: 28.618711,16.557203 + parent: 1 + type: Transform + - uid: 5678 + components: + - pos: 18.339497,-14.389538 + parent: 1 + type: Transform + - uid: 5679 + components: + - pos: 18.339497,-14.295788 + parent: 1 + type: Transform + - uid: 5680 + components: + - pos: 18.339497,-14.186413 + parent: 1 + type: Transform + - uid: 5681 + components: + - pos: 18.355122,-14.061413 + parent: 1 + type: Transform + - uid: 5875 + components: + - pos: -22.6214,16.518099 + parent: 1 + type: Transform + - uid: 5876 + components: + - pos: -22.605776,16.455599 + parent: 1 + type: Transform + - uid: 5877 + components: + - pos: -22.59015,16.377474 + parent: 1 + type: Transform + - uid: 5878 + components: + - pos: -22.574526,16.268099 + parent: 1 + type: Transform + - uid: 5884 + components: + - pos: -14.637211,5.5536256 + parent: 1 + type: Transform + - uid: 5885 + components: + - pos: -17.62719,5.5455227 + parent: 1 + type: Transform + - uid: 5886 + components: + - pos: -17.62719,5.5455227 + parent: 1 + type: Transform + - uid: 5888 + components: + - pos: -14.637211,5.5536256 + parent: 1 + type: Transform + - uid: 6058 + components: + - pos: -16.855633,-2.6907523 + parent: 1 + type: Transform + - uid: 6059 + components: + - pos: -16.855633,-2.5970023 + parent: 1 + type: Transform + - uid: 6060 + components: + - pos: -16.855633,-2.5188773 + parent: 1 + type: Transform + - uid: 6061 + components: + - pos: -16.855633,-2.4720023 + parent: 1 + type: Transform + - uid: 6062 + components: + - pos: -16.855633,-2.3938773 + parent: 1 + type: Transform + - uid: 6789 + components: + - pos: 12.221728,-12.274454 + parent: 1 + type: Transform + - uid: 6790 + components: + - pos: 12.221728,-12.352579 + parent: 1 + type: Transform + - uid: 6791 + components: + - pos: 12.221728,-12.415079 + parent: 1 + type: Transform + - uid: 6792 + components: + - pos: 12.221728,-12.493204 + parent: 1 + type: Transform + - uid: 7306 + components: + - pos: 13.624326,-23.419518 + parent: 1 + type: Transform + - uid: 7394 + components: + - pos: 13.561826,-23.419518 + parent: 1 + type: Transform + - uid: 7396 + components: + - pos: 13.499326,-23.419518 + parent: 1 + type: Transform + - uid: 7406 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7407 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7408 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7409 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7410 + components: + - pos: 5.516494,-21.287186 + parent: 1 + type: Transform + - uid: 7411 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7412 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7413 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7414 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7415 + components: + - pos: 11.453994,-18.162186 + parent: 1 + type: Transform + - uid: 7450 + components: + - pos: 5.1056714,-15.299889 + parent: 1 + type: Transform + - uid: 7451 + components: + - pos: 5.1056714,-15.299889 + parent: 1 + type: Transform + - uid: 7452 + components: + - pos: 5.1056714,-15.299889 + parent: 1 + type: Transform + - uid: 7453 + components: + - pos: 5.1056714,-15.299889 + parent: 1 + type: Transform + - uid: 8247 + components: + - pos: -9.640527,-11.922171 + parent: 1 + type: Transform + - uid: 9592 + components: + - pos: 40.748722,31.554111 + parent: 1 + type: Transform + - uid: 9593 + components: + - pos: 40.826847,31.554111 + parent: 1 + type: Transform + - uid: 9594 + components: + - pos: 40.904972,31.554111 + parent: 1 + type: Transform + - uid: 9595 + components: + - pos: 40.951847,31.554111 + parent: 1 + type: Transform + - uid: 9596 + components: + - pos: 44.951847,31.538486 + parent: 1 + type: Transform + - uid: 9597 + components: + - pos: 45.029972,31.538486 + parent: 1 + type: Transform + - uid: 9598 + components: + - pos: 45.108097,31.538486 + parent: 1 + type: Transform + - uid: 9599 + components: + - pos: 45.170597,31.538486 + parent: 1 + type: Transform + - uid: 9602 + components: + - rot: 3.141592653589793 rad + pos: 43.576847,33.600986 + parent: 1 + type: Transform + - uid: 9603 + components: + - rot: 3.141592653589793 rad + pos: 43.451847,33.600986 + parent: 1 + type: Transform + - uid: 9604 + components: + - rot: 3.141592653589793 rad + pos: 43.279972,33.58536 + parent: 1 + type: Transform + - uid: 9605 + components: + - rot: 3.141592653589793 rad + pos: 43.186222,33.58536 + parent: 1 + type: Transform + - uid: 9612 + components: + - rot: 3.141592653589793 rad + pos: 39.826847,33.632236 + parent: 1 + type: Transform + - uid: 9613 + components: + - rot: 3.141592653589793 rad + pos: 39.795597,33.632236 + parent: 1 + type: Transform + - uid: 9614 + components: + - rot: 3.141592653589793 rad + pos: 39.748722,33.632236 + parent: 1 + type: Transform + - uid: 12431 + components: + - pos: -9.562402,-11.984671 + parent: 1 + type: Transform + - uid: 12432 + components: + - pos: -9.468652,-12.094046 + parent: 1 + type: Transform + - uid: 12433 + components: + - pos: -9.624902,-12.109671 + parent: 1 + type: Transform + - uid: 12434 + components: + - pos: -9.640527,-12.015921 + parent: 1 + type: Transform +- proto: PartRodMetal + entities: + - uid: 6092 + components: + - pos: -24.506477,-0.38722038 + parent: 1 + type: Transform + - uid: 6798 + components: + - pos: 18.539476,-8.350777 + parent: 1 + type: Transform + - uid: 6799 + components: + - pos: 18.539476,-8.350777 + parent: 1 + type: Transform + - uid: 7142 + components: + - pos: 32.46561,-18.402718 + parent: 1 + type: Transform + - uid: 7143 + components: + - pos: 32.46561,-18.402718 + parent: 1 + type: Transform + - uid: 11934 + components: + - pos: 12.1296625,23.642334 + parent: 1 + type: Transform + - uid: 11935 + components: + - pos: 11.9734125,23.657959 + parent: 1 + type: Transform +- proto: Pen + entities: + - uid: 1881 + components: + - pos: -19.882591,14.621025 + parent: 1 + type: Transform + - uid: 1882 + components: + - pos: -21.958109,-1.4018333 + parent: 1 + type: Transform + - uid: 3995 + components: + - pos: -8.015554,56.563858 + parent: 1 + type: Transform + - uid: 3996 + components: + - pos: -10.312429,54.548233 + parent: 1 + type: Transform + - uid: 3997 + components: + - rot: 3.141592653589793 rad + pos: -8.959289,48.52969 + parent: 1 + type: Transform + - uid: 3998 + components: + - rot: 3.141592653589793 rad + pos: -3.2874136,48.56094 + parent: 1 + type: Transform + - uid: 4106 + components: + - pos: -9.741987,27.659079 + parent: 1 + type: Transform + - uid: 4107 + components: + - pos: -9.304487,29.627829 + parent: 1 + type: Transform + - uid: 5354 + components: + - rot: -1.5707963267948966 rad + pos: 25.429817,10.545956 + parent: 1 + type: Transform + - uid: 5355 + components: + - rot: -1.5707963267948966 rad + pos: 25.773567,10.670956 + parent: 1 + type: Transform + - uid: 5395 + components: + - rot: -1.5707963267948966 rad + pos: 27.587461,13.804892 + parent: 1 + type: Transform + - uid: 5402 + components: + - rot: -1.5707963267948966 rad + pos: 28.821836,16.650953 + parent: 1 + type: Transform + - uid: 5593 + components: + - pos: -40.77676,-5.6722164 + parent: 1 + type: Transform + - uid: 5594 + components: + - pos: -39.21426,-6.2659664 + parent: 1 + type: Transform + - uid: 5595 + components: + - pos: -39.229885,-5.2659664 + parent: 1 + type: Transform + - uid: 5682 + components: + - rot: -1.5707963267948966 rad + pos: 18.651997,-14.061413 + parent: 1 + type: Transform + - uid: 5879 + components: + - rot: 3.141592653589793 rad + pos: -22.355776,16.299349 + parent: 1 + type: Transform + - uid: 6047 + components: + - pos: -16.293133,-2.3157523 + parent: 1 + type: Transform + - uid: 6793 + components: + - pos: 12.143603,-12.633829 + parent: 1 + type: Transform + - uid: 7416 + components: + - pos: 11.610244,-18.45906 + parent: 1 + type: Transform + - uid: 7417 + components: + - pos: 5.313369,-21.14656 + parent: 1 + type: Transform + - uid: 7454 + components: + - pos: 5.6369214,-15.503014 + parent: 1 + type: Transform + - uid: 9046 + components: + - pos: 16.646183,-24.473928 + parent: 1 + type: Transform + - uid: 9606 + components: + - pos: 45.826847,31.663486 + parent: 1 + type: Transform + - uid: 9607 + components: + - pos: 45.670597,31.522861 + parent: 1 + type: Transform + - uid: 9608 + components: + - rot: -1.5707963267948966 rad + pos: 41.670597,31.694736 + parent: 1 + type: Transform + - uid: 9609 + components: + - rot: -1.5707963267948966 rad + pos: 41.420597,31.725986 + parent: 1 + type: Transform + - uid: 9610 + components: + - rot: 3.141592653589793 rad + pos: 42.545597,33.58536 + parent: 1 + type: Transform + - uid: 9611 + components: + - rot: 1.5707963267948966 rad + pos: 39.873722,33.600986 + parent: 1 + type: Transform + - uid: 9637 + components: + - pos: 18.330774,25.583164 + parent: 1 + type: Transform + - uid: 10640 + components: + - pos: 16.333683,-24.473928 + parent: 1 + type: Transform + - uid: 12435 + components: + - pos: -9.253772,-11.803861 + parent: 1 + type: Transform + - uid: 12436 + components: + - pos: -13.198837,-28.688225 + parent: 1 + type: Transform +- proto: PenCap + entities: + - uid: 4976 + components: + - pos: 4.328023,27.581076 + parent: 1 + type: Transform +- proto: PersonalAI + entities: + - uid: 7651 + components: + - flags: SessionSpecific + type: MetaData + - pos: -40.503788,1.6275148 + parent: 1 + type: Transform + - uid: 8231 + components: + - flags: SessionSpecific + type: MetaData + - pos: -5.47295,-28.48368 + parent: 1 + type: Transform + - uid: 8253 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.3764815,-31.488258 + parent: 1 + type: Transform + - uid: 8254 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.3845835,10.568368 + parent: 1 + type: Transform + - uid: 8255 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.33936208,31.760487 + parent: 1 + type: Transform + - uid: 12429 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.687402,-12.500296 + parent: 1 + type: Transform + - uid: 12430 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.296777,-12.500296 + parent: 1 + type: Transform +- proto: PhoneInstrument + entities: + - uid: 4104 + components: + - pos: -9.523237,28.490625 + parent: 1 + type: Transform +- proto: PianoInstrument + entities: + - uid: 5042 + components: + - rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 + type: Transform +- proto: Pickaxe + entities: + - uid: 1519 + components: + - pos: 20.414032,-20.475288 + parent: 1 + type: Transform + - uid: 7302 + components: + - pos: 20.648407,-20.490913 + parent: 1 + type: Transform +- proto: PinpointerNuclear + entities: + - uid: 4134 + components: + - pos: -2.6820543,23.560793 + parent: 1 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 6320 + components: + - pos: -20.5,-18.5 + parent: 1 + type: Transform + - uid: 6812 + components: + - pos: 43.5,-15.5 + parent: 1 + type: Transform + - uid: 7002 + components: + - pos: 35.5,-2.5 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 1743 + components: + - pos: 7.5,-23.5 + parent: 1 + type: Transform + - uid: 1744 + components: + - pos: 10.5,-31.5 + parent: 1 + type: Transform + - uid: 1745 + components: + - pos: 10.5,-28.5 + parent: 1 + type: Transform + - uid: 1746 + components: + - pos: 14.5,-28.5 + parent: 1 + type: Transform + - uid: 1747 + components: + - pos: 14.5,-31.5 + parent: 1 + type: Transform + - uid: 3562 + components: + - pos: -35.5,25.5 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 2046 + components: + - pos: -38.5,19.5 + parent: 1 + type: Transform +- proto: PlushieLamp + entities: + - uid: 5991 + components: + - pos: 5.7439585,10.615243 + parent: 1 + type: Transform + - uid: 7808 + components: + - pos: -7.528466,-28.402908 + parent: 1 + type: Transform + - uid: 8263 + components: + - pos: -17.703978,-52.27695 + parent: 1 + type: Transform +- proto: PlushieRGBee + entities: + - uid: 2201 + components: + - pos: -24.499949,-19.444412 + parent: 1 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 12542 + components: + - pos: -14.489916,-61.54038 + parent: 1 + type: Transform +- proto: PonderingOrb + entities: + - uid: 12340 + components: + - desc: It shines a brilliant irradiating blue. + name: demon core + type: MetaData + - pos: -0.50479734,65.52099 + parent: 1 + type: Transform + - slope: 0.32 + intensity: 2 + type: RadiationSource +- proto: PortableGeneratorJrPacman + entities: + - uid: 5965 + components: + - pos: 25.5,-8.5 + parent: 1 + type: Transform + - uid: 5987 + components: + - pos: 8.5,-14.5 + parent: 1 + type: Transform + - uid: 5988 + components: + - pos: -32.5,-10.5 + parent: 1 + type: Transform + - uid: 5989 + components: + - pos: -29.5,9.5 + parent: 1 + type: Transform + - uid: 6013 + components: + - pos: -7.5,19.5 + parent: 1 + type: Transform + - uid: 6067 + components: + - pos: 35.5,5.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 2857 + components: + - pos: -11.5,-53.5 + parent: 1 + type: Transform + - uid: 5958 + components: + - pos: 25.5,-3.5 + parent: 1 + type: Transform +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 9515 + components: + - pos: -7.3825207,-32.322838 + parent: 1 + type: Transform + - uid: 9516 + components: + - pos: -7.6012707,-32.572838 + parent: 1 + type: Transform +- proto: PortableScrubber + entities: + - uid: 12462 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 12463 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform +- proto: PosterBroken + entities: + - uid: 1298 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,19.5 + parent: 1 + type: Transform + - uid: 2159 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1 + type: Transform +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 11974 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 11966 + components: + - pos: -10.5,-27.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 11956 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 11970 + components: + - pos: -3.5,-19.5 + parent: 1 + type: Transform +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 11964 + components: + - pos: -5.5,24.5 + parent: 1 + type: Transform +- proto: PosterContrabandTools + entities: + - uid: 11969 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform +- proto: PosterLegitCarbonDioxide + entities: + - uid: 11973 + components: + - pos: 33.5,-8.5 + parent: 1 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 11965 + components: + - pos: -19.5,12.5 + parent: 1 + type: Transform +- proto: PosterLegitIan + entities: + - uid: 11961 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 11960 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform +- proto: PosterLegitObey + entities: + - uid: 11957 + components: + - pos: 16.5,6.5 + parent: 1 + type: Transform +- proto: PosterLegitReportCrimes + entities: + - uid: 11958 + components: + - pos: 20.5,16.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 11972 + components: + - pos: 11.5,-13.5 + parent: 1 + type: Transform +- proto: PosterLegitSafetyInternals + entities: + - uid: 11971 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform +- proto: PosterLegitScience + entities: + - uid: 11979 + components: + - pos: -18.5,-7.5 + parent: 1 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 11962 + components: + - pos: 17.5,13.5 + parent: 1 + type: Transform +- proto: PosterLegitSpaceCops + entities: + - uid: 11959 + components: + - pos: 30.5,12.5 + parent: 1 + type: Transform +- proto: PosterLegitStateLaws + entities: + - uid: 11999 + components: + - pos: 10.5,25.5 + parent: 1 + type: Transform + - uid: 12105 + components: + - pos: -4.5,57.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 1841 + components: + - pos: 13.5,-8.5 + parent: 1 + type: Transform + - uid: 2800 + components: + - pos: -12.5,-48.5 + parent: 1 + type: Transform + - uid: 3957 + components: + - pos: -7.5,48.5 + parent: 1 + type: Transform + - uid: 3958 + components: + - pos: -5.5,48.5 + parent: 1 + type: Transform + - uid: 3959 + components: + - pos: -7.5,44.5 + parent: 1 + type: Transform + - uid: 3960 + components: + - pos: -5.5,44.5 + parent: 1 + type: Transform + - uid: 3961 + components: + - pos: -2.5,51.5 + parent: 1 + type: Transform + - uid: 3962 + components: + - pos: -2.5,53.5 + parent: 1 + type: Transform + - uid: 3963 + components: + - pos: -9.5,56.5 + parent: 1 + type: Transform + - uid: 3964 + components: + - pos: -3.5,56.5 + parent: 1 + type: Transform + - uid: 3965 + components: + - pos: 3.5,54.5 + parent: 1 + type: Transform + - uid: 3966 + components: + - pos: -0.5,54.5 + parent: 1 + type: Transform + - uid: 3967 + components: + - pos: -0.5,50.5 + parent: 1 + type: Transform + - uid: 3968 + components: + - pos: 3.5,50.5 + parent: 1 + type: Transform + - uid: 4060 + components: + - pos: -11.5,31.5 + parent: 1 + type: Transform + - uid: 4061 + components: + - pos: -7.5,31.5 + parent: 1 + type: Transform + - uid: 4947 + components: + - pos: 27.5,28.5 + parent: 1 + type: Transform + - uid: 4950 + components: + - pos: 31.5,25.5 + parent: 1 + type: Transform + - uid: 4996 + components: + - pos: 5.5,25.5 + parent: 1 + type: Transform + - uid: 4997 + components: + - pos: 5.5,21.5 + parent: 1 + type: Transform + - uid: 4998 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - uid: 4999 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 5378 + components: + - pos: 11.5,9.5 + parent: 1 + type: Transform + - uid: 5379 + components: + - pos: 27.5,8.5 + parent: 1 + type: Transform + - uid: 5380 + components: + - pos: 28.5,10.5 + parent: 1 + type: Transform + - uid: 5381 + components: + - pos: 33.5,10.5 + parent: 1 + type: Transform + - uid: 5384 + components: + - pos: 20.5,8.5 + parent: 1 + type: Transform + - uid: 5558 + components: + - pos: 44.5,21.5 + parent: 1 + type: Transform + - uid: 5560 + components: + - pos: 39.5,30.5 + parent: 1 + type: Transform + - uid: 5561 + components: + - pos: 46.5,30.5 + parent: 1 + type: Transform + - uid: 5664 + components: + - pos: 16.5,-20.5 + parent: 1 + type: Transform + - uid: 7637 + components: + - pos: -39.5,18.5 + parent: 1 + type: Transform + - uid: 7638 + components: + - pos: -39.5,14.5 + parent: 1 + type: Transform + - uid: 7639 + components: + - pos: -41.5,21.5 + parent: 1 + type: Transform + - uid: 7648 + components: + - pos: -41.5,10.5 + parent: 1 + type: Transform + - uid: 7649 + components: + - pos: -41.5,6.5 + parent: 1 + type: Transform + - uid: 7674 + components: + - pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 7675 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 7676 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 7677 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 7678 + components: + - pos: 2.5,-13.5 + parent: 1 + type: Transform + - uid: 7679 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 7680 + components: + - pos: 8.5,-27.5 + parent: 1 + type: Transform + - uid: 7682 + components: + - pos: 22.5,-25.5 + parent: 1 + type: Transform + - uid: 7683 + components: + - pos: 2.5,-26.5 + parent: 1 + type: Transform + - uid: 7684 + components: + - pos: -6.5,-24.5 + parent: 1 + type: Transform + - uid: 7698 + components: + - pos: -13.5,-24.5 + parent: 1 + type: Transform + - uid: 9524 + components: + - pos: 2.5,-33.5 + parent: 1 + type: Transform + - uid: 9525 + components: + - pos: 0.5,-33.5 + parent: 1 + type: Transform + - uid: 9573 + components: + - pos: 46.5,21.5 + parent: 1 + type: Transform + - uid: 9576 + components: + - pos: 44.5,5.5 + parent: 1 + type: Transform + - uid: 10639 + components: + - pos: 26.5,-11.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 5696 + components: + - pos: -10.5,19.5 + parent: 1 + type: Transform + - uid: 5697 + components: + - pos: -10.5,20.5 + parent: 1 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 5414 + components: + - pos: -20.5,-0.5 + parent: 1 + type: Transform +- proto: PowerCellHigh + entities: + - uid: 7145 + components: + - pos: 33.68436,-18.590218 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 785 + components: + - pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 3821 + components: + - pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 4117 + components: + - pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 5353 + components: + - pos: 30.5,8.5 + parent: 1 + type: Transform + - uid: 5901 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 5902 + components: + - pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 5972 + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 6524 + components: + - pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 6555 + components: + - pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 7241 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 9047 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 9048 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 49 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3918 + components: + - rot: 3.141592653589793 rad + pos: -5.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3919 + components: + - rot: 3.141592653589793 rad + pos: -2.5,44.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3920 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,52.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3921 + components: + - pos: -6.5,56.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3923 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,53.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3924 + components: + - rot: 3.141592653589793 rad + pos: -5.5,48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3926 + components: + - pos: 1.5,55.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3927 + components: + - rot: 3.141592653589793 rad + pos: 1.5,49.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4982 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4983 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4984 + components: + - rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4985 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4986 + components: + - pos: 4.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4987 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4988 + components: + - pos: -0.5,21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4989 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4990 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4991 + components: + - pos: -14.5,31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4993 + components: + - rot: 3.141592653589793 rad + pos: -6.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4994 + components: + - rot: 3.141592653589793 rad + pos: -14.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4995 + components: + - rot: 3.141592653589793 rad + pos: 2.5,33.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5468 + components: + - pos: 25.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5469 + components: + - rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5470 + components: + - rot: 3.141592653589793 rad + pos: 28.5,24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5471 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5472 + components: + - rot: 3.141592653589793 rad + pos: 34.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5473 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5474 + components: + - rot: 3.141592653589793 rad + pos: 28.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5475 + components: + - rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5476 + components: + - pos: 30.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5477 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5478 + components: + - rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5479 + components: + - rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5480 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5481 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5482 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5483 + components: + - pos: 9.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5484 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5485 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5486 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5522 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5523 + components: + - rot: 3.141592653589793 rad + pos: 25.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5929 + components: + - rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5930 + components: + - pos: -22.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5931 + components: + - rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5932 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5933 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5934 + components: + - pos: -8.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5935 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5936 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5937 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5938 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5939 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5940 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5941 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5942 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5943 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5944 + components: + - rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 5995 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6406 + components: + - rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6407 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6408 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6409 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6410 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6411 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6412 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6413 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6414 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6743 + components: + - pos: -26.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6744 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6745 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6746 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6747 + components: + - pos: -14.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6748 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6749 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6750 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6751 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6752 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6753 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6754 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6755 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6756 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6757 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7050 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7051 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7052 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7053 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7054 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7055 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7206 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7207 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7208 + components: + - pos: 21.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7209 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7210 + components: + - pos: 27.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7211 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7212 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7213 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7214 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7215 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7216 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7217 + components: + - pos: 33.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7218 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7219 + components: + - rot: 3.141592653589793 rad + pos: 36.5,-23.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7220 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7221 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7222 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7223 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7224 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7462 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7463 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7464 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7465 + components: + - pos: 13.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7466 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7467 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7468 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7469 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7470 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7471 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7472 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7473 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7474 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-8.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7891 + components: + - pos: -10.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7892 + components: + - rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7893 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7896 + components: + - rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7897 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7898 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7899 + components: + - pos: -32.5,16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7900 + components: + - pos: -35.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7901 + components: + - pos: -37.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7902 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7903 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 7904 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8001 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8002 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,13.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8003 + components: + - rot: 3.141592653589793 rad + pos: -43.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8004 + components: + - pos: -43.5,5.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8005 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8006 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8007 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-26.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8008 + components: + - pos: -9.5,-24.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8009 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8010 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8011 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8012 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8014 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8015 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-29.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8016 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8017 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8018 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8019 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9043 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9044 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9052 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9053 + components: + - rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9054 + components: + - pos: 26.5,3.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9055 + components: + - rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9056 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,4.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9057 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9059 + components: + - rot: 3.141592653589793 rad + pos: 41.5,21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9061 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,28.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9062 + components: + - pos: 39.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9063 + components: + - rot: 3.141592653589793 rad + pos: 43.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9064 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11929 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 11930 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredlightSodium + entities: + - uid: 7461 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PoweredSmallLight + entities: + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 1794 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,22.5 + parent: 1 + type: Transform + - uid: 2781 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-51.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2928 + components: + - pos: -14.5,-48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 2929 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-48.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 3928 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,45.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 4992 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,30.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 6742 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8316 + components: + - pos: -34.5,-15.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8807 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-17.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8932 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9060 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9065 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,34.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9066 + components: + - rot: 3.141592653589793 rad + pos: 9.5,32.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9155 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-21.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9156 + components: + - pos: -31.5,-22.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9157 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 9331 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 1 + type: Transform + - uid: 9649 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12126 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12476 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 12518 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 1 + type: Transform +- proto: PoweredSmallLightEmpty + entities: + - uid: 8317 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 1 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 8806 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 1 + type: Transform +- proto: Protolathe + entities: + - uid: 3806 + components: + - pos: -10.5,-0.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 559 + components: + - pos: -24.5,-7.5 + parent: 1 + type: Transform + - uid: 657 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 1 + type: Transform + - uid: 775 + components: + - pos: 16.5,15.5 + parent: 1 + type: Transform + - uid: 2761 + components: + - pos: -2.5,50.5 + parent: 1 + type: Transform + - uid: 2762 + components: + - pos: -2.5,54.5 + parent: 1 + type: Transform + - uid: 2934 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-48.5 + parent: 1 + type: Transform + - uid: 4920 + components: + - pos: 39.5,21.5 + parent: 1 + type: Transform + - uid: 4921 + components: + - pos: 40.5,21.5 + parent: 1 + type: Transform + - uid: 5333 + components: + - pos: 28.5,8.5 + parent: 1 + type: Transform + - uid: 5342 + components: + - pos: 23.5,7.5 + parent: 1 + type: Transform + - uid: 5555 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,2.5 + parent: 1 + type: Transform + - uid: 5556 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,20.5 + parent: 1 + type: Transform + - uid: 5598 + components: + - pos: -23.5,5.5 + parent: 1 + type: Transform + - uid: 7074 + components: + - pos: -4.5,-34.5 + parent: 1 + type: Transform + - uid: 7075 + components: + - pos: -3.5,-34.5 + parent: 1 + type: Transform + - uid: 7076 + components: + - pos: -2.5,-34.5 + parent: 1 + type: Transform + - uid: 7077 + components: + - pos: -1.5,-34.5 + parent: 1 + type: Transform + - uid: 7134 + components: + - pos: 31.5,-16.5 + parent: 1 + type: Transform + - uid: 7293 + components: + - pos: 20.5,-20.5 + parent: 1 + type: Transform + - uid: 7713 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform + - uid: 7806 + components: + - pos: -5.5,-28.5 + parent: 1 + type: Transform + - uid: 8240 + components: + - pos: -26.5,24.5 + parent: 1 + type: Transform + - uid: 8241 + components: + - pos: -25.5,24.5 + parent: 1 + type: Transform + - uid: 8283 + components: + - pos: -25.5,-24.5 + parent: 1 + type: Transform + - uid: 8287 + components: + - pos: -23.5,-26.5 + parent: 1 + type: Transform + - uid: 8484 + components: + - pos: -7.5,-33.5 + parent: 1 + type: Transform + - uid: 8490 + components: + - pos: -7.5,-32.5 + parent: 1 + type: Transform + - uid: 8496 + components: + - pos: -7.5,-31.5 + parent: 1 + type: Transform + - uid: 8764 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-24.5 + parent: 1 + type: Transform + - uid: 8808 + components: + - pos: -43.5,-16.5 + parent: 1 + type: Transform + - uid: 8880 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 1 + type: Transform + - uid: 8883 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 1 + type: Transform + - uid: 8884 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 1 + type: Transform + - uid: 8885 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-20.5 + parent: 1 + type: Transform + - uid: 8891 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + type: Transform + - uid: 8900 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-9.5 + parent: 1 + type: Transform + - uid: 8901 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 1 + type: Transform + - uid: 9130 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 1 + type: Transform + - uid: 9134 + components: + - pos: 20.5,-18.5 + parent: 1 + type: Transform + - uid: 9254 + components: + - pos: -36.5,-9.5 + parent: 1 + type: Transform + - uid: 9314 + components: + - pos: 14.5,21.5 + parent: 1 + type: Transform + - uid: 9323 + components: + - pos: -13.5,28.5 + parent: 1 + type: Transform + - uid: 9351 + components: + - pos: 14.5,17.5 + parent: 1 + type: Transform + - uid: 9358 + components: + - pos: 12.5,33.5 + parent: 1 + type: Transform + - uid: 9359 + components: + - pos: 12.5,32.5 + parent: 1 + type: Transform + - uid: 9368 + components: + - pos: 13.5,30.5 + parent: 1 + type: Transform + - uid: 9369 + components: + - pos: 14.5,32.5 + parent: 1 + type: Transform + - uid: 9371 + components: + - pos: 14.5,33.5 + parent: 1 + type: Transform + - uid: 9543 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,11.5 + parent: 1 + type: Transform + - uid: 9544 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,26.5 + parent: 1 + type: Transform + - uid: 9618 + components: + - rot: 3.141592653589793 rad + pos: 15.5,25.5 + parent: 1 + type: Transform + - uid: 9619 + components: + - rot: 3.141592653589793 rad + pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 9684 + components: + - pos: -28.5,23.5 + parent: 1 + type: Transform + - uid: 9687 + components: + - pos: -22.5,26.5 + parent: 1 + type: Transform + - uid: 9699 + components: + - pos: -34.5,18.5 + parent: 1 + type: Transform + - uid: 12425 + components: + - pos: -12.5,-12.5 + parent: 1 + type: Transform + - uid: 12426 + components: + - pos: -12.5,-11.5 + parent: 1 + type: Transform +- proto: RadarConsoleCircuitboard + entities: + - uid: 9522 + components: + - pos: -7.3932076,-33.368607 + parent: 1 + type: Transform +- proto: RadioHandheld + entities: + - uid: 12547 + components: + - pos: 20.335823,-20.56861 + parent: 1 + type: Transform + - uid: 12548 + components: + - pos: 20.679573,-20.66236 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 437 + components: + - pos: -7.5,20.5 + parent: 1 + type: Transform + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: -7.5,22.5 + parent: 1 + type: Transform + - uid: 647 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 1 + type: Transform + - uid: 648 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 1 + type: Transform + - uid: 649 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1 + type: Transform + - uid: 651 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 1 + type: Transform + - uid: 3015 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-10.5 + parent: 1 + type: Transform + - uid: 7017 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-2.5 + parent: 1 + type: Transform + - uid: 7018 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 1 + type: Transform + - uid: 7019 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 1 + type: Transform + - uid: 7664 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 8596 + components: + - pos: -43.5,-16.5 + parent: 1 + type: Transform + - uid: 8609 + components: + - pos: -42.5,-16.5 + parent: 1 + type: Transform + - uid: 8758 + components: + - pos: -40.5,-16.5 + parent: 1 + type: Transform + - uid: 8872 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 1 + type: Transform + - uid: 8873 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 1 + type: Transform + - uid: 9124 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1 + type: Transform + - uid: 9125 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 1 + type: Transform + - uid: 9175 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 1 + type: Transform + - uid: 9176 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 1 + type: Transform + - uid: 9333 + components: + - rot: 3.141592653589793 rad + pos: 21.5,25.5 + parent: 1 + type: Transform + - uid: 9334 + components: + - rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 1 + type: Transform + - uid: 9335 + components: + - pos: 7.5,21.5 + parent: 1 + type: Transform + - uid: 12491 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 12492 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 652 + components: + - pos: -8.5,-14.5 + parent: 1 + type: Transform + - uid: 653 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1 + type: Transform + - uid: 12489 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 12490 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 1 + type: Transform +- proto: RandomArcade + entities: + - uid: 8795 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-23.5 + parent: 1 + type: Transform + - uid: 8796 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-23.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 6321 + components: + - pos: -20.5,-13.5 + parent: 1 + type: Transform + - uid: 6325 + components: + - pos: -20.5,-9.5 + parent: 1 + type: Transform +- proto: RandomArtifactSpawner20 + entities: + - uid: 8233 + components: + - pos: -15.5,-29.5 + parent: 1 + type: Transform + - uid: 8234 + components: + - pos: 42.5,19.5 + parent: 1 + type: Transform + - uid: 8235 + components: + - pos: -25.5,23.5 + parent: 1 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 5982 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 5980 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 7653 + components: + - pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 7654 + components: + - pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 8311 + components: + - pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 8312 + components: + - pos: -32.5,-17.5 + parent: 1 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 5984 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform +- proto: RandomFoodMeal + entities: + - uid: 5983 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 7655 + components: + - pos: 34.5,3.5 + parent: 1 + type: Transform + - uid: 8313 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform +- proto: RandomFoodSingle + entities: + - uid: 5981 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 7652 + components: + - pos: -25.5,3.5 + parent: 1 + type: Transform + - uid: 8314 + components: + - pos: -29.5,-14.5 + parent: 1 + type: Transform +- proto: RandomInstruments + entities: + - uid: 4951 + components: + - pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 4952 + components: + - pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 6399 + components: + - pos: -15.5,-24.5 + parent: 1 + type: Transform + - uid: 7801 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - uid: 7802 + components: + - pos: -12.5,-31.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 11981 + components: + - pos: -32.5,-11.5 + parent: 1 + type: Transform + - uid: 11984 + components: + - pos: -23.5,-20.5 + parent: 1 + type: Transform + - uid: 11985 + components: + - pos: -14.5,-23.5 + parent: 1 + type: Transform + - uid: 11986 + components: + - pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 11987 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 11988 + components: + - pos: 21.5,-16.5 + parent: 1 + type: Transform + - uid: 11989 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - uid: 11990 + components: + - pos: 33.5,-1.5 + parent: 1 + type: Transform + - uid: 11991 + components: + - pos: 40.5,8.5 + parent: 1 + type: Transform + - uid: 11992 + components: + - pos: 37.5,15.5 + parent: 1 + type: Transform + - uid: 11993 + components: + - pos: 30.5,32.5 + parent: 1 + type: Transform + - uid: 11994 + components: + - pos: 18.5,31.5 + parent: 1 + type: Transform + - uid: 11996 + components: + - pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 11997 + components: + - pos: 14.5,19.5 + parent: 1 + type: Transform + - uid: 12106 + components: + - pos: -33.5,20.5 + parent: 1 + type: Transform + - uid: 12107 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - uid: 12108 + components: + - pos: -15.5,26.5 + parent: 1 + type: Transform + - uid: 12109 + components: + - pos: -9.5,22.5 + parent: 1 + type: Transform + - uid: 12122 + components: + - pos: -32.5,-21.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 11983 + components: + - pos: -44.5,-15.5 + parent: 1 + type: Transform + - uid: 11995 + components: + - pos: 19.5,26.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 29 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 11939 + components: + - pos: -5.5,26.5 + parent: 1 + type: Transform + - uid: 11940 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 11941 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 11942 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 11943 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 11944 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 11945 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 11946 + components: + - pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 11947 + components: + - pos: 28.5,4.5 + parent: 1 + type: Transform + - uid: 11948 + components: + - pos: 39.5,0.5 + parent: 1 + type: Transform + - uid: 11949 + components: + - pos: 43.5,7.5 + parent: 1 + type: Transform + - uid: 11951 + components: + - pos: 40.5,24.5 + parent: 1 + type: Transform + - uid: 11952 + components: + - pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 11953 + components: + - pos: -30.5,4.5 + parent: 1 + type: Transform + - uid: 11954 + components: + - pos: -38.5,11.5 + parent: 1 + type: Transform + - uid: 11955 + components: + - pos: -40.5,-8.5 + parent: 1 + type: Transform + - uid: 11967 + components: + - pos: 16.5,-19.5 + parent: 1 + type: Transform + - uid: 11968 + components: + - pos: 17.5,-28.5 + parent: 1 + type: Transform + - uid: 11975 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 11976 + components: + - pos: -0.5,-27.5 + parent: 1 + type: Transform + - uid: 11977 + components: + - pos: -12.5,-23.5 + parent: 1 + type: Transform + - uid: 11978 + components: + - pos: -13.5,-12.5 + parent: 1 + type: Transform + - uid: 11980 + components: + - pos: -29.5,-5.5 + parent: 1 + type: Transform + - uid: 11998 + components: + - pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 12101 + components: + - pos: -14.5,29.5 + parent: 1 + type: Transform + - uid: 12102 + components: + - pos: -2.5,47.5 + parent: 1 + type: Transform + - uid: 12103 + components: + - pos: -11.5,51.5 + parent: 1 + type: Transform + - uid: 12104 + components: + - pos: 4.5,53.5 + parent: 1 + type: Transform + - uid: 12110 + components: + - pos: -38.5,20.5 + parent: 1 + type: Transform +- proto: RandomSoap + entities: + - uid: 12498 + components: + - pos: -19.5,-27.5 + parent: 1 + type: Transform + - uid: 12499 + components: + - pos: -17.5,-27.5 + parent: 1 + type: Transform + - uid: 12500 + components: + - pos: -15.5,-27.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 11734 + components: + - pos: -11.5,27.5 + parent: 1 + type: Transform + - uid: 11735 + components: + - pos: -2.5,29.5 + parent: 1 + type: Transform + - uid: 11736 + components: + - pos: 0.5,25.5 + parent: 1 + type: Transform + - uid: 11737 + components: + - pos: 5.5,23.5 + parent: 1 + type: Transform + - uid: 11738 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 11739 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 11740 + components: + - pos: 7.5,12.5 + parent: 1 + type: Transform + - uid: 11741 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - uid: 11742 + components: + - pos: -5.5,13.5 + parent: 1 + type: Transform + - uid: 11743 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 11744 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 11745 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 11746 + components: + - pos: -8.5,-7.5 + parent: 1 + type: Transform + - uid: 11747 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 11748 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 11750 + components: + - pos: 12.5,-8.5 + parent: 1 + type: Transform + - uid: 11751 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 11752 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 11753 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 11754 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 11755 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 11756 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 11757 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 11758 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 11759 + components: + - pos: 21.5,3.5 + parent: 1 + type: Transform + - uid: 11760 + components: + - pos: 29.5,2.5 + parent: 1 + type: Transform + - uid: 11761 + components: + - pos: 37.5,1.5 + parent: 1 + type: Transform + - uid: 11762 + components: + - pos: 40.5,3.5 + parent: 1 + type: Transform + - uid: 11763 + components: + - pos: 45.5,1.5 + parent: 1 + type: Transform + - uid: 11764 + components: + - pos: 46.5,8.5 + parent: 1 + type: Transform + - uid: 11765 + components: + - pos: 46.5,16.5 + parent: 1 + type: Transform + - uid: 11766 + components: + - pos: 44.5,22.5 + parent: 1 + type: Transform + - uid: 11767 + components: + - pos: 40.5,26.5 + parent: 1 + type: Transform + - uid: 11768 + components: + - pos: 45.5,28.5 + parent: 1 + type: Transform + - uid: 11769 + components: + - pos: 32.5,26.5 + parent: 1 + type: Transform + - uid: 11770 + components: + - pos: 27.5,26.5 + parent: 1 + type: Transform + - uid: 11771 + components: + - pos: 33.5,21.5 + parent: 1 + type: Transform + - uid: 11772 + components: + - pos: 31.5,16.5 + parent: 1 + type: Transform + - uid: 11773 + components: + - pos: 33.5,11.5 + parent: 1 + type: Transform + - uid: 11774 + components: + - pos: 26.5,8.5 + parent: 1 + type: Transform + - uid: 11775 + components: + - pos: 20.5,10.5 + parent: 1 + type: Transform + - uid: 11776 + components: + - pos: 14.5,8.5 + parent: 1 + type: Transform + - uid: 11777 + components: + - pos: 12.5,13.5 + parent: 1 + type: Transform + - uid: 11778 + components: + - pos: 21.5,14.5 + parent: 1 + type: Transform + - uid: 11779 + components: + - pos: 21.5,6.5 + parent: 1 + type: Transform + - uid: 11780 + components: + - pos: 32.5,6.5 + parent: 1 + type: Transform + - uid: 11781 + components: + - pos: 42.5,15.5 + parent: 1 + type: Transform + - uid: 11782 + components: + - pos: 41.5,6.5 + parent: 1 + type: Transform + - uid: 11783 + components: + - pos: 36.5,19.5 + parent: 1 + type: Transform + - uid: 11784 + components: + - pos: 37.5,29.5 + parent: 1 + type: Transform + - uid: 11785 + components: + - pos: 33.5,34.5 + parent: 1 + type: Transform + - uid: 11786 + components: + - pos: 26.5,33.5 + parent: 1 + type: Transform + - uid: 11787 + components: + - pos: 21.5,35.5 + parent: 1 + type: Transform + - uid: 11788 + components: + - pos: 20.5,29.5 + parent: 1 + type: Transform + - uid: 11789 + components: + - pos: 16.5,30.5 + parent: 1 + type: Transform + - uid: 11790 + components: + - pos: 9.5,28.5 + parent: 1 + type: Transform + - uid: 11791 + components: + - pos: 8.5,22.5 + parent: 1 + type: Transform + - uid: 11792 + components: + - pos: 13.5,18.5 + parent: 1 + type: Transform + - uid: 11793 + components: + - pos: 21.5,18.5 + parent: 1 + type: Transform + - uid: 11794 + components: + - pos: 26.5,20.5 + parent: 1 + type: Transform + - uid: 11795 + components: + - pos: 20.5,26.5 + parent: 1 + type: Transform + - uid: 11796 + components: + - pos: 15.5,21.5 + parent: 1 + type: Transform + - uid: 11799 + components: + - pos: 17.5,26.5 + parent: 1 + type: Transform + - uid: 11800 + components: + - pos: -8.5,18.5 + parent: 1 + type: Transform + - uid: 11801 + components: + - pos: -9.5,24.5 + parent: 1 + type: Transform + - uid: 11802 + components: + - pos: -16.5,24.5 + parent: 1 + type: Transform + - uid: 11803 + components: + - pos: -17.5,28.5 + parent: 1 + type: Transform + - uid: 11804 + components: + - pos: -27.5,26.5 + parent: 1 + type: Transform + - uid: 11805 + components: + - pos: -23.5,22.5 + parent: 1 + type: Transform + - uid: 11806 + components: + - pos: -25.5,21.5 + parent: 1 + type: Transform + - uid: 11807 + components: + - pos: -29.5,22.5 + parent: 1 + type: Transform + - uid: 11808 + components: + - pos: -34.5,23.5 + parent: 1 + type: Transform + - uid: 11809 + components: + - pos: -36.5,18.5 + parent: 1 + type: Transform + - uid: 11810 + components: + - pos: -40.5,19.5 + parent: 1 + type: Transform + - uid: 11811 + components: + - pos: -39.5,15.5 + parent: 1 + type: Transform + - uid: 11812 + components: + - pos: -41.5,12.5 + parent: 1 + type: Transform + - uid: 11813 + components: + - pos: -40.5,9.5 + parent: 1 + type: Transform + - uid: 11814 + components: + - pos: -41.5,3.5 + parent: 1 + type: Transform + - uid: 11815 + components: + - pos: -35.5,1.5 + parent: 1 + type: Transform + - uid: 11816 + components: + - pos: -30.5,3.5 + parent: 1 + type: Transform + - uid: 11817 + components: + - pos: -24.5,1.5 + parent: 1 + type: Transform + - uid: 11818 + components: + - pos: -17.5,3.5 + parent: 1 + type: Transform + - uid: 11819 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 11820 + components: + - pos: -11.5,6.5 + parent: 1 + type: Transform + - uid: 11821 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 11822 + components: + - pos: -13.5,10.5 + parent: 1 + type: Transform + - uid: 11823 + components: + - pos: -20.5,8.5 + parent: 1 + type: Transform + - uid: 11824 + components: + - pos: -16.5,15.5 + parent: 1 + type: Transform + - uid: 11825 + components: + - pos: -13.5,18.5 + parent: 1 + type: Transform + - uid: 11826 + components: + - pos: -11.5,15.5 + parent: 1 + type: Transform + - uid: 11827 + components: + - pos: -25.5,10.5 + parent: 1 + type: Transform + - uid: 11828 + components: + - pos: -24.5,15.5 + parent: 1 + type: Transform + - uid: 11829 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - uid: 11830 + components: + - pos: -18.5,10.5 + parent: 1 + type: Transform + - uid: 11831 + components: + - pos: -28.5,8.5 + parent: 1 + type: Transform + - uid: 11832 + components: + - pos: -29.5,15.5 + parent: 1 + type: Transform + - uid: 11833 + components: + - pos: -23.5,18.5 + parent: 1 + type: Transform + - uid: 11834 + components: + - pos: -22.5,27.5 + parent: 1 + type: Transform + - uid: 11835 + components: + - pos: -33.5,5.5 + parent: 1 + type: Transform + - uid: 11836 + components: + - pos: -37.5,10.5 + parent: 1 + type: Transform + - uid: 11837 + components: + - pos: -37.5,-1.5 + parent: 1 + type: Transform + - uid: 11838 + components: + - pos: -40.5,-7.5 + parent: 1 + type: Transform + - uid: 11839 + components: + - pos: -40.5,-10.5 + parent: 1 + type: Transform + - uid: 11840 + components: + - pos: -32.5,-2.5 + parent: 1 + type: Transform + - uid: 11841 + components: + - pos: -34.5,-9.5 + parent: 1 + type: Transform + - uid: 11842 + components: + - pos: -28.5,-9.5 + parent: 1 + type: Transform + - uid: 11843 + components: + - pos: -25.5,-13.5 + parent: 1 + type: Transform + - uid: 11844 + components: + - pos: -26.5,-18.5 + parent: 1 + type: Transform + - uid: 11845 + components: + - pos: -22.5,-20.5 + parent: 1 + type: Transform + - uid: 11846 + components: + - pos: -15.5,-21.5 + parent: 1 + type: Transform + - uid: 11847 + components: + - pos: -17.5,-25.5 + parent: 1 + type: Transform + - uid: 11848 + components: + - pos: -9.5,-21.5 + parent: 1 + type: Transform + - uid: 11849 + components: + - pos: -12.5,-17.5 + parent: 1 + type: Transform + - uid: 11850 + components: + - pos: -3.5,-18.5 + parent: 1 + type: Transform + - uid: 11852 + components: + - pos: -1.5,-13.5 + parent: 1 + type: Transform + - uid: 11853 + components: + - pos: -12.5,-10.5 + parent: 1 + type: Transform + - uid: 11854 + components: + - pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 11855 + components: + - pos: -15.5,-2.5 + parent: 1 + type: Transform + - uid: 11856 + components: + - pos: -22.5,-6.5 + parent: 1 + type: Transform + - uid: 11857 + components: + - pos: -26.5,-5.5 + parent: 1 + type: Transform + - uid: 11858 + components: + - pos: -28.5,-3.5 + parent: 1 + type: Transform + - uid: 11859 + components: + - pos: -17.5,-10.5 + parent: 1 + type: Transform + - uid: 11860 + components: + - pos: -15.5,-16.5 + parent: 1 + type: Transform + - uid: 11861 + components: + - pos: -20.5,-17.5 + parent: 1 + type: Transform + - uid: 11862 + components: + - pos: -22.5,-25.5 + parent: 1 + type: Transform + - uid: 11863 + components: + - pos: -32.5,-20.5 + parent: 1 + type: Transform + - uid: 11864 + components: + - pos: -37.5,-19.5 + parent: 1 + type: Transform + - uid: 11865 + components: + - pos: -38.5,-15.5 + parent: 1 + type: Transform + - uid: 11866 + components: + - pos: -33.5,-16.5 + parent: 1 + type: Transform + - uid: 11867 + components: + - pos: -29.5,-13.5 + parent: 1 + type: Transform + - uid: 11868 + components: + - pos: -35.5,-12.5 + parent: 1 + type: Transform + - uid: 11869 + components: + - pos: -41.5,-15.5 + parent: 1 + type: Transform + - uid: 11870 + components: + - pos: -42.5,-18.5 + parent: 1 + type: Transform + - uid: 11871 + components: + - pos: -40.5,-23.5 + parent: 1 + type: Transform + - uid: 11872 + components: + - pos: -9.5,-26.5 + parent: 1 + type: Transform + - uid: 11873 + components: + - pos: -2.5,-24.5 + parent: 1 + type: Transform + - uid: 11874 + components: + - pos: -5.5,-25.5 + parent: 1 + type: Transform + - uid: 11875 + components: + - pos: -4.5,-21.5 + parent: 1 + type: Transform + - uid: 11876 + components: + - pos: 0.5,-31.5 + parent: 1 + type: Transform + - uid: 11877 + components: + - pos: 2.5,-23.5 + parent: 1 + type: Transform + - uid: 11878 + components: + - pos: 0.5,-15.5 + parent: 1 + type: Transform + - uid: 11879 + components: + - pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 11880 + components: + - pos: 7.5,-11.5 + parent: 1 + type: Transform + - uid: 11881 + components: + - pos: 10.5,-14.5 + parent: 1 + type: Transform + - uid: 11882 + components: + - pos: 16.5,-18.5 + parent: 1 + type: Transform + - uid: 11883 + components: + - pos: 23.5,-17.5 + parent: 1 + type: Transform + - uid: 11884 + components: + - pos: 29.5,-17.5 + parent: 1 + type: Transform + - uid: 11885 + components: + - pos: 30.5,-13.5 + parent: 1 + type: Transform + - uid: 11886 + components: + - pos: 31.5,-11.5 + parent: 1 + type: Transform + - uid: 11887 + components: + - pos: 26.5,-6.5 + parent: 1 + type: Transform + - uid: 11888 + components: + - pos: 28.5,-3.5 + parent: 1 + type: Transform + - uid: 11889 + components: + - pos: 21.5,-6.5 + parent: 1 + type: Transform + - uid: 11890 + components: + - pos: 16.5,-4.5 + parent: 1 + type: Transform + - uid: 11891 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 11892 + components: + - pos: 14.5,-11.5 + parent: 1 + type: Transform + - uid: 11893 + components: + - pos: 22.5,-10.5 + parent: 1 + type: Transform + - uid: 11894 + components: + - pos: 18.5,-1.5 + parent: 1 + type: Transform + - uid: 11895 + components: + - pos: 28.5,-1.5 + parent: 1 + type: Transform + - uid: 11896 + components: + - pos: 34.5,-0.5 + parent: 1 + type: Transform + - uid: 11897 + components: + - pos: 43.5,-0.5 + parent: 1 + type: Transform + - uid: 11898 + components: + - pos: 31.5,-6.5 + parent: 1 + type: Transform + - uid: 11899 + components: + - pos: 22.5,-27.5 + parent: 1 + type: Transform + - uid: 11900 + components: + - pos: 13.5,-25.5 + parent: 1 + type: Transform + - uid: 11901 + components: + - pos: 8.5,-26.5 + parent: 1 + type: Transform + - uid: 11902 + components: + - pos: 5.5,-25.5 + parent: 1 + type: Transform + - uid: 11903 + components: + - pos: 10.5,-22.5 + parent: 1 + type: Transform + - uid: 11904 + components: + - pos: 4.5,-20.5 + parent: 1 + type: Transform + - uid: 11905 + components: + - pos: 9.5,-17.5 + parent: 1 + type: Transform + - uid: 11906 + components: + - pos: 15.5,-21.5 + parent: 1 + type: Transform + - uid: 11907 + components: + - pos: 20.5,-21.5 + parent: 1 + type: Transform + - uid: 11908 + components: + - pos: -2.5,-32.5 + parent: 1 + type: Transform + - uid: 12423 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 12538 + components: + - pos: -22.5,-28.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 7525 + components: + - pos: -41.5,16.5 + parent: 1 + type: Transform + - uid: 7534 + components: + - pos: -32.5,0.5 + parent: 1 + type: Transform + - uid: 7541 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 7685 + components: + - pos: 8.5,-9.5 + parent: 1 + type: Transform + - uid: 7686 + components: + - pos: 9.5,-9.5 + parent: 1 + type: Transform + - uid: 9241 + components: + - pos: 19.5,34.5 + parent: 1 + type: Transform + - uid: 9565 + components: + - pos: 20.5,1.5 + parent: 1 + type: Transform + - uid: 9570 + components: + - pos: 41.5,4.5 + parent: 1 + type: Transform + - uid: 9572 + components: + - pos: 44.5,14.5 + parent: 1 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 5050 + components: + - pos: 1.5,23.5 + parent: 1 + type: Transform + - uid: 7529 + components: + - pos: -41.5,15.5 + parent: 1 + type: Transform + - uid: 7531 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 7532 + components: + - pos: -34.5,0.5 + parent: 1 + type: Transform + - uid: 7536 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 7687 + components: + - pos: -12.5,-24.5 + parent: 1 + type: Transform + - uid: 9240 + components: + - pos: 19.5,33.5 + parent: 1 + type: Transform + - uid: 9527 + components: + - pos: 2.5,-28.5 + parent: 1 + type: Transform + - uid: 9564 + components: + - pos: 22.5,1.5 + parent: 1 + type: Transform + - uid: 9568 + components: + - pos: 39.5,4.5 + parent: 1 + type: Transform + - uid: 9569 + components: + - pos: 44.5,11.5 + parent: 1 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 5049 + components: + - pos: 0.5,23.5 + parent: 1 + type: Transform + - uid: 7528 + components: + - pos: -39.5,11.5 + parent: 1 + type: Transform + - uid: 7535 + components: + - pos: -31.5,0.5 + parent: 1 + type: Transform + - uid: 7537 + components: + - pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 7538 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 7540 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 7688 + components: + - pos: -11.5,-24.5 + parent: 1 + type: Transform + - uid: 9243 + components: + - pos: 19.5,32.5 + parent: 1 + type: Transform + - uid: 9244 + components: + - pos: 26.5,32.5 + parent: 1 + type: Transform + - uid: 9526 + components: + - pos: 2.5,-29.5 + parent: 1 + type: Transform + - uid: 9566 + components: + - pos: 21.5,1.5 + parent: 1 + type: Transform + - uid: 9567 + components: + - pos: 40.5,4.5 + parent: 1 + type: Transform + - uid: 9571 + components: + - pos: 44.5,12.5 + parent: 1 + type: Transform +- proto: RCD + entities: + - uid: 7135 + components: + - pos: 31.574986,-16.418343 + parent: 1 + type: Transform + - uid: 12468 + components: + - pos: 18.51267,-13.338883 + parent: 1 + type: Transform +- proto: RCDAmmo + entities: + - uid: 7136 + components: + - pos: 31.27811,-16.605843 + parent: 1 + type: Transform + - uid: 12469 + components: + - pos: 18.278296,-13.526383 + parent: 1 + type: Transform + - uid: 12470 + components: + - pos: 18.434546,-13.526383 + parent: 1 + type: Transform +- proto: ReagentContainerFlour + entities: + - uid: 6016 + components: + - pos: 0.46557093,1.1092224 + parent: 1 + type: Transform +- proto: ReagentContainerSugar + entities: + - uid: 6017 + components: + - pos: 0.6191431,1.0935974 + parent: 1 + type: Transform +- proto: Recycler + entities: + - uid: 3570 + components: + - rot: 3.141592653589793 rad + pos: -33.5,24.5 + parent: 1 + type: Transform + - links: + - 9199 + type: DeviceLinkSink +- proto: ReinforcedPlasmaWindow + entities: + - uid: 521 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 1 + type: Transform + - uid: 1434 + components: + - pos: 42.5,-5.5 + parent: 1 + type: Transform + - uid: 1435 + components: + - pos: 42.5,-7.5 + parent: 1 + type: Transform + - uid: 1437 + components: + - pos: 42.5,-11.5 + parent: 1 + type: Transform + - uid: 1438 + components: + - pos: 42.5,-13.5 + parent: 1 + type: Transform + - uid: 1439 + components: + - pos: 42.5,-15.5 + parent: 1 + type: Transform + - uid: 1440 + components: + - pos: 42.5,-17.5 + parent: 1 + type: Transform + - uid: 6822 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 1 + type: Transform + - uid: 12308 + components: + - rot: 3.141592653589793 rad + pos: -0.5,64.5 + parent: 1 + type: Transform + - uid: 12309 + components: + - rot: 3.141592653589793 rad + pos: -1.5,65.5 + parent: 1 + type: Transform + - uid: 12310 + components: + - rot: 3.141592653589793 rad + pos: -0.5,66.5 + parent: 1 + type: Transform + - uid: 12311 + components: + - rot: 3.141592653589793 rad + pos: 0.5,65.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 32 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 3.5,20.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 3.5,17.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 5.5,17.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: 5.5,20.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: -7.5,13.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: -7.5,14.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -13.5,12.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -11.5,12.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -14.5,16.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -14.5,14.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -17.5,14.5 + parent: 1 + type: Transform + - uid: 211 + components: + - rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 3.141592653589793 rad + pos: -11.5,4.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: -18.5,4.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 1 + type: Transform + - uid: 231 + components: + - rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: -21.5,4.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -26.5,8.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -25.5,8.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -23.5,8.5 + parent: 1 + type: Transform + - uid: 332 + components: + - rot: 3.141592653589793 rad + pos: 3.5,32.5 + parent: 1 + type: Transform + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 4.5,32.5 + parent: 1 + type: Transform + - uid: 334 + components: + - rot: 3.141592653589793 rad + pos: 5.5,32.5 + parent: 1 + type: Transform + - uid: 362 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,32.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: -4.5,33.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 0.5,32.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 0.5,33.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: -2.5,33.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,32.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -3.5,33.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: -0.5,33.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -1.5,33.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -4.5,32.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 1 + type: Transform + - uid: 380 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,28.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,31.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,32.5 + parent: 1 + type: Transform + - uid: 401 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 1 + type: Transform + - uid: 403 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 1 + type: Transform + - uid: 404 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 1 + type: Transform + - uid: 426 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,32.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -13.5,32.5 + parent: 1 + type: Transform + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 446 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 450 + components: + - rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 452 + components: + - rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 455 + components: + - rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + type: Transform + - uid: 473 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + type: Transform + - uid: 504 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 1 + type: Transform + - uid: 578 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 1 + type: Transform + - uid: 579 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-7.5 + parent: 1 + type: Transform + - uid: 582 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 1 + type: Transform + - uid: 589 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-11.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: -19.5,-15.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: -20.5,-15.5 + parent: 1 + type: Transform + - uid: 595 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-12.5 + parent: 1 + type: Transform + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-11.5 + parent: 1 + type: Transform + - uid: 600 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-14.5 + parent: 1 + type: Transform + - uid: 602 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 1 + type: Transform + - uid: 611 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 1 + type: Transform + - uid: 667 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 671 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 1 + type: Transform + - uid: 674 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1 + type: Transform + - uid: 703 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 1 + type: Transform + - uid: 704 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 1 + type: Transform + - uid: 705 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 1 + type: Transform + - uid: 706 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 707 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 708 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 709 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + type: Transform + - uid: 710 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + type: Transform + - uid: 711 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + type: Transform + - uid: 721 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + type: Transform + - uid: 723 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 1 + type: Transform + - uid: 725 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1 + type: Transform + - uid: 737 + components: + - rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 1 + type: Transform + - uid: 738 + components: + - rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 1 + type: Transform + - uid: 739 + components: + - rot: 3.141592653589793 rad + pos: 22.5,11.5 + parent: 1 + type: Transform + - uid: 740 + components: + - rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 1 + type: Transform + - uid: 792 + components: + - pos: 30.5,14.5 + parent: 1 + type: Transform + - uid: 960 + components: + - pos: 28.5,31.5 + parent: 1 + type: Transform + - uid: 965 + components: + - pos: 27.5,31.5 + parent: 1 + type: Transform + - uid: 966 + components: + - pos: 26.5,31.5 + parent: 1 + type: Transform + - uid: 967 + components: + - pos: 25.5,31.5 + parent: 1 + type: Transform + - uid: 968 + components: + - pos: 24.5,31.5 + parent: 1 + type: Transform + - uid: 979 + components: + - pos: 32.5,29.5 + parent: 1 + type: Transform + - uid: 980 + components: + - pos: 31.5,29.5 + parent: 1 + type: Transform + - uid: 981 + components: + - pos: 30.5,29.5 + parent: 1 + type: Transform + - uid: 982 + components: + - pos: 29.5,29.5 + parent: 1 + type: Transform + - uid: 983 + components: + - pos: 28.5,29.5 + parent: 1 + type: Transform + - uid: 1030 + components: + - pos: 13.5,-9.5 + parent: 1 + type: Transform + - uid: 1031 + components: + - pos: 11.5,-9.5 + parent: 1 + type: Transform + - uid: 1037 + components: + - pos: 14.5,-4.5 + parent: 1 + type: Transform + - uid: 1048 + components: + - pos: 17.5,-6.5 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: 17.5,-7.5 + parent: 1 + type: Transform + - uid: 1072 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - uid: 1077 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - uid: 1078 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - uid: 1079 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - uid: 1084 + components: + - pos: 18.5,-9.5 + parent: 1 + type: Transform + - uid: 1085 + components: + - pos: 19.5,-9.5 + parent: 1 + type: Transform + - uid: 1086 + components: + - pos: 20.5,-9.5 + parent: 1 + type: Transform + - uid: 1099 + components: + - pos: 23.5,-12.5 + parent: 1 + type: Transform + - uid: 1176 + components: + - pos: 24.5,-8.5 + parent: 1 + type: Transform + - uid: 1178 + components: + - pos: 25.5,-9.5 + parent: 1 + type: Transform + - uid: 1179 + components: + - pos: 26.5,-9.5 + parent: 1 + type: Transform + - uid: 1180 + components: + - pos: 24.5,-6.5 + parent: 1 + type: Transform + - uid: 1181 + components: + - pos: 24.5,-5.5 + parent: 1 + type: Transform + - uid: 1182 + components: + - pos: 24.5,-4.5 + parent: 1 + type: Transform + - uid: 1183 + components: + - pos: 24.5,-3.5 + parent: 1 + type: Transform + - uid: 1184 + components: + - pos: 28.5,-9.5 + parent: 1 + type: Transform + - uid: 1185 + components: + - pos: 29.5,-9.5 + parent: 1 + type: Transform + - uid: 1253 + components: + - pos: 46.5,0.5 + parent: 1 + type: Transform + - uid: 1254 + components: + - pos: 47.5,0.5 + parent: 1 + type: Transform + - uid: 1255 + components: + - pos: 47.5,1.5 + parent: 1 + type: Transform + - uid: 1258 + components: + - pos: 47.5,16.5 + parent: 1 + type: Transform + - uid: 1259 + components: + - pos: 47.5,15.5 + parent: 1 + type: Transform + - uid: 1264 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,2.5 + parent: 1 + type: Transform + - uid: 1265 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,3.5 + parent: 1 + type: Transform + - uid: 1266 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,10.5 + parent: 1 + type: Transform + - uid: 1267 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,9.5 + parent: 1 + type: Transform + - uid: 1270 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 1 + type: Transform + - uid: 1284 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,8.5 + parent: 1 + type: Transform + - uid: 1285 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,7.5 + parent: 1 + type: Transform + - uid: 1293 + components: + - pos: 47.5,17.5 + parent: 1 + type: Transform + - uid: 1295 + components: + - pos: 43.5,21.5 + parent: 1 + type: Transform + - uid: 1296 + components: + - pos: 43.5,23.5 + parent: 1 + type: Transform + - uid: 1308 + components: + - pos: 40.5,-19.5 + parent: 1 + type: Transform + - uid: 1309 + components: + - pos: 40.5,-18.5 + parent: 1 + type: Transform + - uid: 1310 + components: + - pos: 40.5,-17.5 + parent: 1 + type: Transform + - uid: 1311 + components: + - pos: 40.5,-16.5 + parent: 1 + type: Transform + - uid: 1312 + components: + - pos: 40.5,-15.5 + parent: 1 + type: Transform + - uid: 1313 + components: + - pos: 40.5,-14.5 + parent: 1 + type: Transform + - uid: 1314 + components: + - pos: 40.5,-13.5 + parent: 1 + type: Transform + - uid: 1315 + components: + - pos: 40.5,-12.5 + parent: 1 + type: Transform + - uid: 1316 + components: + - pos: 40.5,-11.5 + parent: 1 + type: Transform + - uid: 1317 + components: + - pos: 40.5,-10.5 + parent: 1 + type: Transform + - uid: 1318 + components: + - pos: 40.5,-9.5 + parent: 1 + type: Transform + - uid: 1319 + components: + - pos: 40.5,-8.5 + parent: 1 + type: Transform + - uid: 1320 + components: + - pos: 40.5,-7.5 + parent: 1 + type: Transform + - uid: 1321 + components: + - pos: 40.5,-6.5 + parent: 1 + type: Transform + - uid: 1322 + components: + - pos: 40.5,-5.5 + parent: 1 + type: Transform + - uid: 1323 + components: + - pos: 40.5,-4.5 + parent: 1 + type: Transform + - uid: 1324 + components: + - pos: 40.5,-3.5 + parent: 1 + type: Transform + - uid: 1342 + components: + - pos: 39.5,-19.5 + parent: 1 + type: Transform + - uid: 1343 + components: + - pos: 38.5,-19.5 + parent: 1 + type: Transform + - uid: 1344 + components: + - pos: 37.5,-19.5 + parent: 1 + type: Transform + - uid: 1345 + components: + - pos: 36.5,-19.5 + parent: 1 + type: Transform + - uid: 1346 + components: + - pos: 35.5,-19.5 + parent: 1 + type: Transform + - uid: 1347 + components: + - pos: 34.5,-19.5 + parent: 1 + type: Transform + - uid: 1349 + components: + - pos: 32.5,-19.5 + parent: 1 + type: Transform + - uid: 1350 + components: + - pos: 31.5,-19.5 + parent: 1 + type: Transform + - uid: 1363 + components: + - pos: 33.5,-23.5 + parent: 1 + type: Transform + - uid: 1367 + components: + - pos: 33.5,-22.5 + parent: 1 + type: Transform + - uid: 1368 + components: + - pos: 34.5,-21.5 + parent: 1 + type: Transform + - uid: 1369 + components: + - pos: 35.5,-21.5 + parent: 1 + type: Transform + - uid: 1370 + components: + - pos: 36.5,-21.5 + parent: 1 + type: Transform + - uid: 1371 + components: + - pos: 37.5,-22.5 + parent: 1 + type: Transform + - uid: 1372 + components: + - pos: 37.5,-23.5 + parent: 1 + type: Transform + - uid: 1458 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - uid: 1492 + components: + - pos: 7.5,-19.5 + parent: 1 + type: Transform + - uid: 1494 + components: + - pos: 7.5,-22.5 + parent: 1 + type: Transform + - uid: 1499 + components: + - pos: 6.5,-24.5 + parent: 1 + type: Transform + - uid: 1500 + components: + - pos: 4.5,-24.5 + parent: 1 + type: Transform + - uid: 1508 + components: + - pos: 7.5,-27.5 + parent: 1 + type: Transform + - uid: 1509 + components: + - pos: 7.5,-25.5 + parent: 1 + type: Transform + - uid: 1513 + components: + - pos: 17.5,-20.5 + parent: 1 + type: Transform + - uid: 1517 + components: + - pos: 17.5,-24.5 + parent: 1 + type: Transform + - uid: 1518 + components: + - pos: 17.5,-23.5 + parent: 1 + type: Transform + - uid: 1524 + components: + - pos: 27.5,-23.5 + parent: 1 + type: Transform + - uid: 1535 + components: + - pos: 20.5,-28.5 + parent: 1 + type: Transform + - uid: 1536 + components: + - pos: 19.5,-28.5 + parent: 1 + type: Transform + - uid: 1540 + components: + - pos: 15.5,-30.5 + parent: 1 + type: Transform + - uid: 1541 + components: + - pos: 9.5,-30.5 + parent: 1 + type: Transform + - uid: 1542 + components: + - pos: 9.5,-29.5 + parent: 1 + type: Transform + - uid: 1548 + components: + - pos: 15.5,-29.5 + parent: 1 + type: Transform + - uid: 1549 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 1 + type: Transform + - uid: 1550 + components: + - pos: 12.5,-30.5 + parent: 1 + type: Transform + - uid: 1551 + components: + - pos: 12.5,-29.5 + parent: 1 + type: Transform + - uid: 1552 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 1559 + components: + - pos: 27.5,-24.5 + parent: 1 + type: Transform + - uid: 1561 + components: + - pos: 24.5,-25.5 + parent: 1 + type: Transform + - uid: 1562 + components: + - pos: 26.5,-25.5 + parent: 1 + type: Transform + - uid: 1568 + components: + - pos: 8.5,-24.5 + parent: 1 + type: Transform + - uid: 1569 + components: + - pos: 11.5,-24.5 + parent: 1 + type: Transform + - uid: 1570 + components: + - pos: 12.5,-23.5 + parent: 1 + type: Transform + - uid: 1571 + components: + - pos: 12.5,-20.5 + parent: 1 + type: Transform + - uid: 1608 + components: + - pos: 3.5,-29.5 + parent: 1 + type: Transform + - uid: 1614 + components: + - pos: 3.5,-30.5 + parent: 1 + type: Transform + - uid: 1654 + components: + - pos: 3.5,-32.5 + parent: 1 + type: Transform + - uid: 1755 + components: + - pos: 21.5,-28.5 + parent: 1 + type: Transform + - uid: 1956 + components: + - pos: 15.5,-9.5 + parent: 1 + type: Transform + - uid: 1957 + components: + - pos: 16.5,-9.5 + parent: 1 + type: Transform + - uid: 2045 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 1 + type: Transform + - uid: 2057 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,24.5 + parent: 1 + type: Transform + - uid: 2067 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,14.5 + parent: 1 + type: Transform + - uid: 2071 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,12.5 + parent: 1 + type: Transform + - uid: 2081 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 1 + type: Transform + - uid: 2082 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 1 + type: Transform + - uid: 2083 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 1 + type: Transform + - uid: 2084 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,2.5 + parent: 1 + type: Transform + - uid: 2085 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 1 + type: Transform + - uid: 2086 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 1 + type: Transform + - uid: 2087 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,9.5 + parent: 1 + type: Transform + - uid: 2088 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,12.5 + parent: 1 + type: Transform + - uid: 2089 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,10.5 + parent: 1 + type: Transform + - uid: 2103 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 1 + type: Transform + - uid: 2104 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 1 + type: Transform + - uid: 2105 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 1 + type: Transform + - uid: 2106 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 1 + type: Transform + - uid: 2107 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 1 + type: Transform + - uid: 2108 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 1 + type: Transform + - uid: 2123 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,12.5 + parent: 1 + type: Transform + - uid: 2124 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,10.5 + parent: 1 + type: Transform + - uid: 2125 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,6.5 + parent: 1 + type: Transform + - uid: 2126 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,6.5 + parent: 1 + type: Transform + - uid: 2127 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 1 + type: Transform + - uid: 2130 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,2.5 + parent: 1 + type: Transform + - uid: 2131 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,2.5 + parent: 1 + type: Transform + - uid: 2132 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 1 + type: Transform + - uid: 2134 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 1 + type: Transform + - uid: 2135 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 1 + type: Transform + - uid: 2217 + components: + - pos: -44.5,-19.5 + parent: 1 + type: Transform + - uid: 2219 + components: + - pos: -44.5,-18.5 + parent: 1 + type: Transform + - uid: 2233 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-24.5 + parent: 1 + type: Transform + - uid: 2235 + components: + - pos: -42.5,-11.5 + parent: 1 + type: Transform + - uid: 2255 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-24.5 + parent: 1 + type: Transform + - uid: 2262 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-24.5 + parent: 1 + type: Transform + - uid: 2263 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 1 + type: Transform + - uid: 2269 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-23.5 + parent: 1 + type: Transform + - uid: 2277 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-24.5 + parent: 1 + type: Transform + - uid: 2279 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,26.5 + parent: 1 + type: Transform + - uid: 2280 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,26.5 + parent: 1 + type: Transform + - uid: 2281 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,26.5 + parent: 1 + type: Transform + - uid: 2282 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,26.5 + parent: 1 + type: Transform + - uid: 2289 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,31.5 + parent: 1 + type: Transform + - uid: 2290 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,31.5 + parent: 1 + type: Transform + - uid: 2291 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,31.5 + parent: 1 + type: Transform + - uid: 2292 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,31.5 + parent: 1 + type: Transform + - uid: 2302 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,30.5 + parent: 1 + type: Transform + - uid: 2321 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,36.5 + parent: 1 + type: Transform + - uid: 2328 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,36.5 + parent: 1 + type: Transform + - uid: 2331 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,36.5 + parent: 1 + type: Transform + - uid: 2333 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,38.5 + parent: 1 + type: Transform + - uid: 2334 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,38.5 + parent: 1 + type: Transform + - uid: 2335 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,36.5 + parent: 1 + type: Transform + - uid: 2336 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,36.5 + parent: 1 + type: Transform + - uid: 2337 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,38.5 + parent: 1 + type: Transform + - uid: 2338 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,36.5 + parent: 1 + type: Transform + - uid: 2340 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,37.5 + parent: 1 + type: Transform + - uid: 2341 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 1 + type: Transform + - uid: 2342 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,36.5 + parent: 1 + type: Transform + - uid: 2363 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 1 + type: Transform + - uid: 2374 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,36.5 + parent: 1 + type: Transform + - uid: 2375 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,38.5 + parent: 1 + type: Transform + - uid: 2376 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,37.5 + parent: 1 + type: Transform + - uid: 2398 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,36.5 + parent: 1 + type: Transform + - uid: 2399 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,37.5 + parent: 1 + type: Transform + - uid: 2400 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,36.5 + parent: 1 + type: Transform + - uid: 2401 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,36.5 + parent: 1 + type: Transform + - uid: 2402 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,36.5 + parent: 1 + type: Transform + - uid: 2403 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,38.5 + parent: 1 + type: Transform + - uid: 2404 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,38.5 + parent: 1 + type: Transform + - uid: 2406 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,37.5 + parent: 1 + type: Transform + - uid: 2407 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,37.5 + parent: 1 + type: Transform + - uid: 2408 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,36.5 + parent: 1 + type: Transform + - uid: 2409 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,37.5 + parent: 1 + type: Transform + - uid: 2413 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 1 + type: Transform + - uid: 2414 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 1 + type: Transform + - uid: 2438 + components: + - pos: -44.5,-16.5 + parent: 1 + type: Transform + - uid: 2659 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 1 + type: Transform + - uid: 2675 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,54.5 + parent: 1 + type: Transform + - uid: 2689 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 2769 + components: + - pos: -14.5,-54.5 + parent: 1 + type: Transform + - uid: 2772 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-53.5 + parent: 1 + type: Transform + - uid: 2778 + components: + - pos: -12.5,-54.5 + parent: 1 + type: Transform + - uid: 2794 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 1 + type: Transform + - uid: 2806 + components: + - pos: -13.5,-54.5 + parent: 1 + type: Transform + - uid: 2847 + components: + - pos: -15.5,-54.5 + parent: 1 + type: Transform + - uid: 2853 + components: + - pos: -16.5,-54.5 + parent: 1 + type: Transform + - uid: 2871 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-52.5 + parent: 1 + type: Transform + - uid: 2927 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-49.5 + parent: 1 + type: Transform + - uid: 2970 + components: + - pos: -22.5,-30.5 + parent: 1 + type: Transform + - uid: 2991 + components: + - pos: -7.5,-34.5 + parent: 1 + type: Transform + - uid: 2995 + components: + - pos: -6.5,-34.5 + parent: 1 + type: Transform + - uid: 2999 + components: + - pos: 3.5,-33.5 + parent: 1 + type: Transform + - uid: 3071 + components: + - pos: -44.5,-17.5 + parent: 1 + type: Transform + - uid: 3073 + components: + - pos: -42.5,-9.5 + parent: 1 + type: Transform + - uid: 3255 + components: + - pos: 19.5,-24.5 + parent: 1 + type: Transform + - uid: 4809 + components: + - pos: 47.5,19.5 + parent: 1 + type: Transform + - uid: 4810 + components: + - pos: 47.5,20.5 + parent: 1 + type: Transform + - uid: 4824 + components: + - pos: 39.5,29.5 + parent: 1 + type: Transform + - uid: 4825 + components: + - pos: 40.5,29.5 + parent: 1 + type: Transform + - uid: 4826 + components: + - pos: 41.5,29.5 + parent: 1 + type: Transform + - uid: 4830 + components: + - pos: 45.5,29.5 + parent: 1 + type: Transform + - uid: 4831 + components: + - pos: 46.5,29.5 + parent: 1 + type: Transform + - uid: 4834 + components: + - pos: 47.5,26.5 + parent: 1 + type: Transform + - uid: 4835 + components: + - pos: 47.5,27.5 + parent: 1 + type: Transform + - uid: 4836 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,28.5 + parent: 1 + type: Transform + - uid: 4837 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 1 + type: Transform + - uid: 4859 + components: + - rot: 3.141592653589793 rad + pos: 47.5,31.5 + parent: 1 + type: Transform + - uid: 4860 + components: + - rot: 3.141592653589793 rad + pos: 47.5,32.5 + parent: 1 + type: Transform + - uid: 4861 + components: + - rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 1 + type: Transform + - uid: 4864 + components: + - rot: 3.141592653589793 rad + pos: 40.5,35.5 + parent: 1 + type: Transform + - uid: 4865 + components: + - rot: 3.141592653589793 rad + pos: 41.5,35.5 + parent: 1 + type: Transform + - uid: 4866 + components: + - rot: 3.141592653589793 rad + pos: 42.5,35.5 + parent: 1 + type: Transform + - uid: 4867 + components: + - rot: 3.141592653589793 rad + pos: 43.5,35.5 + parent: 1 + type: Transform + - uid: 4868 + components: + - rot: 3.141592653589793 rad + pos: 44.5,35.5 + parent: 1 + type: Transform + - uid: 4869 + components: + - rot: 3.141592653589793 rad + pos: 45.5,35.5 + parent: 1 + type: Transform + - uid: 5006 + components: + - rot: 3.141592653589793 rad + pos: 44.5,29.5 + parent: 1 + type: Transform + - uid: 5858 + components: + - pos: -24.5,-29.5 + parent: 1 + type: Transform + - uid: 7066 + components: + - pos: 3.5,-31.5 + parent: 1 + type: Transform + - uid: 7294 + components: + - pos: 18.5,-24.5 + parent: 1 + type: Transform + - uid: 7298 + components: + - pos: 22.5,-24.5 + parent: 1 + type: Transform + - uid: 8319 + components: + - pos: 9.5,34.5 + parent: 1 + type: Transform + - uid: 8320 + components: + - pos: 11.5,34.5 + parent: 1 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 1848 + components: + - pos: -22.5,-3.5 + parent: 1 + type: Transform +- proto: RightArmBorg + entities: + - uid: 6070 + components: + - pos: -5.1487813,-15.441898 + parent: 1 + type: Transform +- proto: RubberStampApproved + entities: + - uid: 4013 + components: + - pos: -5.3658667,46.70469 + parent: 1 + type: Transform + - uid: 5091 + components: + - pos: -4.3448553,19.674007 + parent: 1 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 4014 + components: + - pos: -5.6314917,46.532814 + parent: 1 + type: Transform + - uid: 5092 + components: + - pos: -4.7042303,19.424007 + parent: 1 + type: Transform +- proto: RubberStampMime + entities: + - uid: 7786 + components: + - pos: -13.33112,-29.043272 + parent: 1 + type: Transform +- proto: SalvageMagnet + entities: + - uid: 7284 + components: + - pos: 24.5,-26.5 + parent: 1 + type: Transform +- proto: Saw + entities: + - uid: 8245 + components: + - pos: -25.476225,20.817598 + parent: 1 + type: Transform + - uid: 9625 + components: + - pos: 17.482826,27.671982 + parent: 1 + type: Transform +- proto: Scalpel + entities: + - uid: 9640 + components: + - pos: -25.484652,20.468168 + parent: 1 + type: Transform +- proto: ScalpelLaser + entities: + - uid: 9626 + components: + - pos: 16.498451,27.468857 + parent: 1 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 5417 + components: + - pos: 36.5,10.5 + parent: 1 + type: Transform +- proto: SeedExtractor + entities: + - uid: 6012 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 5600 + components: + - pos: -23.623562,5.5177503 + parent: 1 + type: Transform + - uid: 6022 + components: + - pos: -12.208346,-0.4335618 + parent: 1 + type: Transform + - uid: 6023 + components: + - pos: -12.208346,-0.4335618 + parent: 1 + type: Transform + - uid: 6091 + components: + - pos: -28.475227,-0.46534538 + parent: 1 + type: Transform + - uid: 6796 + components: + - pos: 19.039476,-8.444527 + parent: 1 + type: Transform + - uid: 6797 + components: + - pos: 19.039476,-8.444527 + parent: 1 + type: Transform + - uid: 7420 + components: + - pos: 11.514883,-19.457083 + parent: 1 + type: Transform + - uid: 8223 + components: + - pos: -4.0320415,-20.432213 + parent: 1 + type: Transform + - uid: 8917 + components: + - pos: -38.36674,-18.403994 + parent: 1 + type: Transform + - uid: 11230 + components: + - pos: -28.604006,22.484268 + parent: 1 + type: Transform +- proto: SheetPaper + entities: + - uid: 8904 + components: + - pos: -40.572815,-9.497994 + parent: 1 + type: Transform + - uid: 9159 + components: + - pos: -40.510315,-9.497994 + parent: 1 + type: Transform + - uid: 9160 + components: + - pos: -40.43219,-9.482369 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 6081 + components: + - pos: -24.49349,-7.4965954 + parent: 1 + type: Transform + - uid: 6082 + components: + - pos: -24.49349,-7.4965954 + parent: 1 + type: Transform + - uid: 12522 + components: + - flags: InContainer + type: MetaData + - parent: 12521 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: SheetPlasteel + entities: + - uid: 1134 + components: + - pos: 19.570726,-8.444527 + parent: 1 + type: Transform + - uid: 1135 + components: + - pos: 19.570726,-8.444527 + parent: 1 + type: Transform + - uid: 3979 + components: + - pos: -3.2598429,44.57834 + parent: 1 + type: Transform + - uid: 7645 + components: + - pos: -41.491985,20.438309 + parent: 1 + type: Transform + - uid: 11936 + components: + - pos: 11.3171625,23.595459 + parent: 1 + type: Transform + - uid: 11937 + components: + - pos: 11.4577875,23.595459 + parent: 1 + type: Transform +- proto: SheetPlastic + entities: + - uid: 5419 + components: + - pos: 38.4375,10.569345 + parent: 1 + type: Transform + - uid: 5599 + components: + - pos: -23.404812,5.5177503 + parent: 1 + type: Transform + - uid: 6020 + components: + - pos: -11.864596,-0.4179368 + parent: 1 + type: Transform + - uid: 6021 + components: + - pos: -11.864596,-0.4179368 + parent: 1 + type: Transform + - uid: 7422 + components: + - pos: 11.514883,-19.660208 + parent: 1 + type: Transform + - uid: 8829 + components: + - pos: -27.411745,-25.34438 + parent: 1 + type: Transform + - uid: 9725 + components: + - pos: -28.37981,22.482435 + parent: 1 + type: Transform +- proto: SheetRGlass + entities: + - uid: 11932 + components: + - pos: 10.3796625,23.595459 + parent: 1 + type: Transform + - uid: 11933 + components: + - pos: 10.6609125,23.595459 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 3978 + components: + - pos: -3.5098429,44.57834 + parent: 1 + type: Transform + - uid: 5420 + components: + - pos: 38.59375,10.569345 + parent: 1 + type: Transform + - uid: 6018 + components: + - pos: -11.458346,-0.4179368 + parent: 1 + type: Transform + - uid: 6019 + components: + - pos: -11.458346,-0.4179368 + parent: 1 + type: Transform + - uid: 6066 + components: + - pos: -4.457944,-13.5120735 + parent: 1 + type: Transform + - uid: 6794 + components: + - pos: 19.289476,-8.444527 + parent: 1 + type: Transform + - uid: 6795 + components: + - pos: 19.289476,-8.444527 + parent: 1 + type: Transform + - uid: 7140 + components: + - pos: 32.668736,-18.433968 + parent: 1 + type: Transform + - uid: 7141 + components: + - pos: 32.668736,-18.433968 + parent: 1 + type: Transform + - uid: 7421 + components: + - pos: 11.514883,-19.566458 + parent: 1 + type: Transform + - uid: 7644 + components: + - pos: -41.491985,20.110184 + parent: 1 + type: Transform + - uid: 8224 + components: + - pos: -4.2976665,-20.432213 + parent: 1 + type: Transform + - uid: 8318 + components: + - pos: -38.612484,-18.388916 + parent: 1 + type: Transform + - uid: 8826 + components: + - pos: -27.567995,-25.37563 + parent: 1 + type: Transform + - uid: 9648 + components: + - pos: 10.4109125,24.486084 + parent: 1 + type: Transform + - uid: 11931 + components: + - pos: 10.6452875,24.486084 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 3430 + components: + - pos: -8.5,-10.5 + parent: 1 + type: Transform + - links: + - 1799 + type: DeviceLinkSink + - uid: 3432 + components: + - pos: -7.5,-10.5 + parent: 1 + type: Transform + - links: + - 1799 + type: DeviceLinkSink + - uid: 3433 + components: + - pos: -6.5,-10.5 + parent: 1 + type: Transform + - links: + - 1799 + type: DeviceLinkSink + - uid: 3436 + components: + - pos: -29.5,-6.5 + parent: 1 + type: Transform + - links: + - 9264 + type: DeviceLinkSink + - uid: 5459 + components: + - pos: 14.5,0.5 + parent: 1 + type: Transform + - links: + - 7670 + type: DeviceLinkSink + - uid: 5460 + components: + - pos: 15.5,0.5 + parent: 1 + type: Transform + - links: + - 7670 + type: DeviceLinkSink +- proto: ShuttersNormalOpen + entities: + - uid: 1796 + components: + - pos: 14.5,4.5 + parent: 1 + type: Transform + - links: + - 5448 + type: DeviceLinkSink + - uid: 1797 + components: + - pos: 15.5,4.5 + parent: 1 + type: Transform + - links: + - 5448 + type: DeviceLinkSink + - uid: 1798 + components: + - pos: 17.5,4.5 + parent: 1 + type: Transform + - links: + - 5449 + type: DeviceLinkSink + - uid: 1824 + components: + - pos: 11.5,4.5 + parent: 1 + type: Transform + - links: + - 5447 + type: DeviceLinkSink + - uid: 1847 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - links: + - 5447 + type: DeviceLinkSink + - uid: 1866 + components: + - pos: 18.5,4.5 + parent: 1 + type: Transform + - links: + - 5449 + type: DeviceLinkSink + - uid: 1936 + components: + - pos: -21.5,4.5 + parent: 1 + type: Transform + - links: + - 1896 + type: DeviceLinkSink + - uid: 1937 + components: + - pos: -20.5,4.5 + parent: 1 + type: Transform + - links: + - 1896 + type: DeviceLinkSink + - uid: 1938 + components: + - pos: -18.5,4.5 + parent: 1 + type: Transform + - links: + - 1897 + type: DeviceLinkSink + - uid: 1939 + components: + - pos: -17.5,4.5 + parent: 1 + type: Transform + - links: + - 1897 + type: DeviceLinkSink + - uid: 1940 + components: + - pos: -15.5,4.5 + parent: 1 + type: Transform + - links: + - 1898 + type: DeviceLinkSink + - uid: 1941 + components: + - pos: -14.5,4.5 + parent: 1 + type: Transform + - links: + - 1898 + type: DeviceLinkSink + - uid: 3618 + components: + - pos: -6.5,50.5 + parent: 1 + type: Transform + - uid: 3619 + components: + - pos: -6.5,54.5 + parent: 1 + type: Transform + - uid: 3620 + components: + - pos: -7.5,52.5 + parent: 1 + type: Transform + - uid: 3621 + components: + - pos: -5.5,52.5 + parent: 1 + type: Transform + - uid: 5067 + components: + - pos: -2.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 5068 + components: + - pos: -1.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 5069 + components: + - pos: -0.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 5070 + components: + - pos: 1.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 5450 + components: + - pos: 11.5,7.5 + parent: 1 + type: Transform + - links: + - 5447 + type: DeviceLinkSink + - uid: 5451 + components: + - pos: 14.5,7.5 + parent: 1 + type: Transform + - links: + - 5448 + type: DeviceLinkSink + - uid: 5452 + components: + - pos: 17.5,7.5 + parent: 1 + type: Transform + - links: + - 5449 + type: DeviceLinkSink + - uid: 5683 + components: + - pos: 18.5,-12.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 5684 + components: + - pos: 19.5,-12.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 5685 + components: + - pos: 20.5,-12.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 5686 + components: + - pos: 16.5,-12.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 5687 + components: + - pos: 21.5,-15.5 + parent: 1 + type: Transform + - links: + - 5671 + type: DeviceLinkSink + - uid: 7438 + components: + - pos: 5.5,-18.5 + parent: 1 + type: Transform + - links: + - 7439 + type: DeviceLinkSink + - uid: 7485 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 11721 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11722 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11723 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11724 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11725 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11726 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11727 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11730 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11731 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11732 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11733 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 12444 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12445 + components: + - pos: 10.5,10.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12446 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12447 + components: + - pos: 10.5,8.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12448 + components: + - pos: 13.5,12.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12449 + components: + - pos: 13.5,15.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink +- proto: ShuttersWindowOpen + entities: + - uid: 5071 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - links: + - 5072 + type: DeviceLinkSink + - uid: 11728 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 11729 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - links: + - 11713 + type: DeviceLinkSink + - uid: 12450 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink + - uid: 12451 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - links: + - 7484 + type: DeviceLinkSink +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 9523 + components: + - pos: -7.5807076,-33.60298 + parent: 1 + type: Transform +- proto: SignAi + entities: + - uid: 3006 + components: + - pos: -12.5,31.5 + parent: 1 + type: Transform + - uid: 3617 + components: + - pos: -8.5,43.5 + parent: 1 + type: Transform + - uid: 4010 + components: + - pos: -7.5,47.5 + parent: 1 + type: Transform + - uid: 4011 + components: + - pos: -5.5,47.5 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 1799 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 1 + type: Transform + - linkedPorts: + 3430: + - Pressed: Toggle + 3432: + - Pressed: Toggle + 3433: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1896 + components: + - rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 1937: + - Pressed: Toggle + 1936: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1897 + components: + - rot: 3.141592653589793 rad + pos: -16.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 1939: + - Pressed: Toggle + 1938: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1898 + components: + - rot: 3.141592653589793 rad + pos: -13.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 1941: + - Pressed: Toggle + 1940: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 1978 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 3561: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 4100 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1 + type: Transform + - linkedPorts: + 4064: + - Pressed: Toggle + 4065: + - Pressed: Toggle + 4066: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5072 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 + type: Transform + - linkedPorts: + 5070: + - Pressed: Toggle + 5071: + - Pressed: Toggle + 5069: + - Pressed: Toggle + 5068: + - Pressed: Toggle + 5067: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5388 + components: + - pos: 28.5,15.5 + parent: 1 + type: Transform + - linkedPorts: + 3218: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 5389 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,17.5 + parent: 1 + type: Transform + - state: True + type: SignalSwitch + - linkedPorts: + 3218: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown + - uid: 5447 + components: + - rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5450: + - Pressed: Toggle + 1824: + - Pressed: Toggle + 1847: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5448 + components: + - rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5451: + - Pressed: Toggle + 1796: + - Pressed: Toggle + 1797: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5449 + components: + - rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 1 + type: Transform + - linkedPorts: + 5452: + - Pressed: Toggle + 1798: + - Pressed: Toggle + 1866: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 5671 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 1 + type: Transform + - linkedPorts: + 5687: + - Pressed: Toggle + 5685: + - Pressed: Toggle + 5684: + - Pressed: Toggle + 5683: + - Pressed: Toggle + 5686: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6337 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 1 + type: Transform + - linkedPorts: + 3435: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 6338 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 1 + type: Transform + - linkedPorts: + 3434: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7436 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 1 + type: Transform + - linkedPorts: + 7432: + - Pressed: Toggle + 7433: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7437 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-28.5 + parent: 1 + type: Transform + - linkedPorts: + 7435: + - Pressed: Toggle + 7434: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7439 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 1 + type: Transform + - linkedPorts: + 7438: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7484 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 1 + type: Transform + - linkedPorts: + 12448: + - Pressed: Toggle + 12451: + - Pressed: Toggle + 12450: + - Pressed: Toggle + 12449: + - Pressed: Toggle + 7485: + - Pressed: Toggle + 12444: + - Pressed: Toggle + 12445: + - Pressed: Toggle + 12446: + - Pressed: Toggle + 12447: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 7670 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 5459: + - Pressed: Toggle + 5460: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 9264 + components: + - pos: -25.5,-4.5 + parent: 1 + type: Transform + - linkedPorts: + 3436: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 11713 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - linkedPorts: + 11733: + - Pressed: Toggle + 11732: + - Pressed: Toggle + 11729: + - Pressed: Toggle + 11727: + - Pressed: Toggle + 11726: + - Pressed: Toggle + 11725: + - Pressed: Toggle + 11724: + - Pressed: Toggle + 11723: + - Pressed: Toggle + 11722: + - Pressed: Toggle + 11721: + - Pressed: Toggle + 11728: + - Pressed: Toggle + 11730: + - Pressed: Toggle + 11731: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 6077 + components: + - pos: -14.5,-7.5 + parent: 1 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 6076 + components: + - pos: -19.5,-4.5 + parent: 1 + type: Transform +- proto: SignArmory + entities: + - uid: 5305 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 1 + type: Transform + - uid: 5307 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 1 + type: Transform +- proto: SignBridge + entities: + - uid: 4067 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform +- proto: SignCargoDock + entities: + - uid: 1721 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 1 + type: Transform + - uid: 1722 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 1 + type: Transform +- proto: SignChem + entities: + - uid: 5700 + components: + - pos: -14.5,12.5 + parent: 1 + type: Transform + - uid: 5701 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform +- proto: SignCloning + entities: + - uid: 1924 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform +- proto: SignConference + entities: + - uid: 4068 + components: + - pos: -6.5,30.5 + parent: 1 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 12028 + components: + - rot: 3.141592653589793 rad + pos: -0.48991406,-12.586099 + parent: 1 + type: Transform + - uid: 12030 + components: + - rot: -1.5707963267948966 rad + pos: 43.500732,4.885596 + parent: 1 + type: Transform + - uid: 12041 + components: + - rot: 3.141592653589793 rad + pos: -0.46916193,-19.753078 + parent: 1 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 12014 + components: + - rot: 3.141592653589793 rad + pos: 10.548269,5.4918203 + parent: 1 + type: Transform + - uid: 12020 + components: + - rot: 3.141592653589793 rad + pos: -7.4735146,0.6779753 + parent: 1 + type: Transform + - uid: 12027 + components: + - rot: 3.141592653589793 rad + pos: -0.48991406,-12.367349 + parent: 1 + type: Transform + - uid: 12031 + components: + - rot: -1.5707963267948966 rad + pos: 43.500732,4.682471 + parent: 1 + type: Transform + - uid: 12042 + components: + - rot: 3.141592653589793 rad + pos: -0.46916193,-19.546629 + parent: 1 + type: Transform +- proto: SignDirectionalChapel + entities: + - uid: 12035 + components: + - rot: -1.5707963267948966 rad + pos: -13.484905,0.5560063 + parent: 1 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 12009 + components: + - pos: 10.501394,0.38287616 + parent: 1 + type: Transform + - uid: 12025 + components: + - pos: -0.4927984,-10.414679 + parent: 1 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 12007 + components: + - pos: 10.501394,0.78912616 + parent: 1 + type: Transform + - uid: 12022 + components: + - pos: -7.4735146,0.2561003 + parent: 1 + type: Transform + - uid: 12033 + components: + - rot: -1.5707963267948966 rad + pos: 43.500732,4.260596 + parent: 1 + type: Transform + - uid: 12037 + components: + - rot: 3.141592653589793 rad + pos: -0.46722627,-23.206203 + parent: 1 + type: Transform + - uid: 12044 + components: + - rot: 1.5707963267948966 rad + pos: 5.4593363,-10.397989 + parent: 1 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 12015 + components: + - rot: 3.141592653589793 rad + pos: 10.548269,5.6793203 + parent: 1 + type: Transform + - uid: 12016 + components: + - pos: -6.456008,15.288413 + parent: 1 + type: Transform + - uid: 12019 + components: + - rot: -1.5707963267948966 rad + pos: -7.4735146,0.8654753 + parent: 1 + type: Transform +- proto: SignDirectionalGravity + entities: + - uid: 12034 + components: + - rot: -1.5707963267948966 rad + pos: -13.488332,0.7605958 + parent: 1 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 12010 + components: + - pos: 13.517019,0.82037616 + parent: 1 + type: Transform +- proto: SignDirectionalLibrary + entities: + - uid: 12036 + components: + - rot: -1.5707963267948966 rad + pos: -13.484905,0.3372563 + parent: 1 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 12013 + components: + - rot: 3.141592653589793 rad + pos: 10.548269,5.2886953 + parent: 1 + type: Transform + - uid: 12026 + components: + - rot: 3.141592653589793 rad + pos: -0.48820066,-10.617804 + parent: 1 + type: Transform + - uid: 12040 + components: + - rot: 3.141592653589793 rad + pos: -0.46722627,-23.831203 + parent: 1 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 12011 + components: + - pos: 10.501394,0.19537616 + parent: 1 + type: Transform + - uid: 12017 + components: + - pos: -6.456008,15.507163 + parent: 1 + type: Transform + - uid: 12038 + components: + - rot: 3.141592653589793 rad + pos: -0.46722627,-23.409328 + parent: 1 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 12012 + components: + - rot: 3.141592653589793 rad + pos: 10.548269,5.1011953 + parent: 1 + type: Transform + - uid: 12021 + components: + - rot: 3.141592653589793 rad + pos: -7.4735146,0.4592253 + parent: 1 + type: Transform + - uid: 12032 + components: + - rot: -1.5707963267948966 rad + pos: 43.500732,4.463721 + parent: 1 + type: Transform + - uid: 12039 + components: + - rot: 3.141592653589793 rad + pos: -0.46722627,-23.628078 + parent: 1 + type: Transform + - uid: 12043 + components: + - rot: 3.141592653589793 rad + pos: 5.4593363,-10.210489 + parent: 1 + type: Transform +- proto: SignDirectionalSolar + entities: + - uid: 11982 + components: + - pos: -29.486988,-21.20969 + parent: 1 + type: Transform + - uid: 12024 + components: + - rot: -1.5707963267948966 rad + pos: -0.4927984,-12.149054 + parent: 1 + type: Transform + - uid: 12113 + components: + - rot: 3.141592653589793 rad + pos: -24.472755,28.702217 + parent: 1 + type: Transform + - uid: 12114 + components: + - rot: 3.141592653589793 rad + pos: -29.444752,5.7120094 + parent: 1 + type: Transform + - uid: 12115 + components: + - rot: 1.5707963267948966 rad + pos: -38.46161,16.234806 + parent: 1 + type: Transform + - uid: 12116 + components: + - rot: 3.141592653589793 rad + pos: -27.46682,17.811657 + parent: 1 + type: Transform + - uid: 12117 + components: + - pos: -31.445858,-0.22823012 + parent: 1 + type: Transform + - uid: 12118 + components: + - rot: -1.5707963267948966 rad + pos: -35.514,-11.739195 + parent: 1 + type: Transform + - uid: 12119 + components: + - rot: 1.5707963267948966 rad + pos: -37.451214,-21.220106 + parent: 1 + type: Transform + - uid: 12120 + components: + - rot: -1.5707963267948966 rad + pos: -10.486212,-20.751356 + parent: 1 + type: Transform + - uid: 12121 + components: + - rot: 3.141592653589793 rad + pos: -9.470587,-23.708044 + parent: 1 + type: Transform +- proto: SignDirectionalSupply + entities: + - uid: 9288 + components: + - pos: -0.4927984,-10.195929 + parent: 1 + type: Transform + - uid: 12008 + components: + - pos: 10.501394,0.58600116 + parent: 1 + type: Transform + - uid: 12018 + components: + - pos: -6.458366,15.721934 + parent: 1 + type: Transform +- proto: SignDirectionalWash + entities: + - uid: 12029 + components: + - rot: -1.5707963267948966 rad + pos: -14.500072,-24.746931 + parent: 1 + type: Transform +- proto: SignDisposalSpace + entities: + - uid: 2976 + components: + - pos: -26.5,-26.5 + parent: 1 + type: Transform +- proto: SignDrones + entities: + - uid: 9653 + components: + - pos: 10.5,27.5 + parent: 1 + type: Transform +- proto: SignEscapePods + entities: + - uid: 25 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 0.5,-34.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -39.5,-13.5 + parent: 1 + type: Transform + - uid: 6395 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform +- proto: SignEVA + entities: + - uid: 4908 + components: + - rot: 3.141592653589793 rad + pos: 43.5,20.5 + parent: 1 + type: Transform +- proto: SignGravity + entities: + - uid: 7646 + components: + - pos: -41.5,17.5 + parent: 1 + type: Transform +- proto: SignHead + entities: + - uid: 4069 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform +- proto: SignInterrogation + entities: + - uid: 9307 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + type: Transform +- proto: SignMedical + entities: + - uid: 5301 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,7.5 + parent: 1 + type: Transform + - uid: 9257 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + type: Transform +- proto: SignMorgue + entities: + - uid: 1923 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform +- proto: SignPrison + entities: + - uid: 5341 + components: + - pos: 31.5,19.5 + parent: 1 + type: Transform + - uid: 5487 + components: + - pos: 31.5,24.5 + parent: 1 + type: Transform +- proto: SignRadiationMed + entities: + - uid: 12342 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,63.5 + parent: 1 + type: Transform + - uid: 12343 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,65.5 + parent: 1 + type: Transform + - uid: 12344 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,67.5 + parent: 1 + type: Transform + - uid: 12345 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,65.5 + parent: 1 + type: Transform +- proto: SignRobo + entities: + - uid: 6078 + components: + - pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 6079 + components: + - pos: -5.5,-10.5 + parent: 1 + type: Transform +- proto: SignScience + entities: + - uid: 6080 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform +- proto: SignSecureMed + entities: + - uid: 5304 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 1 + type: Transform +- proto: SignSecureMedRed + entities: + - uid: 12346 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,64.5 + parent: 1 + type: Transform + - uid: 12347 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,66.5 + parent: 1 + type: Transform + - uid: 12348 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,67.5 + parent: 1 + type: Transform + - uid: 12349 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,67.5 + parent: 1 + type: Transform + - uid: 12350 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,66.5 + parent: 1 + type: Transform + - uid: 12351 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,64.5 + parent: 1 + type: Transform + - uid: 12352 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,63.5 + parent: 1 + type: Transform + - uid: 12353 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,63.5 + parent: 1 + type: Transform +- proto: SignSecurity + entities: + - uid: 5493 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + type: Transform +- proto: SignSurgery + entities: + - uid: 4884 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 1 + type: Transform +- proto: SignTelecomms + entities: + - uid: 3969 + components: + - pos: -1.5,53.5 + parent: 1 + type: Transform + - uid: 3971 + components: + - pos: -1.5,51.5 + parent: 1 + type: Transform +- proto: SignVirology + entities: + - uid: 12097 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 6400 + components: + - pos: -18.5,-24.5 + parent: 1 + type: Transform + - uid: 6401 + components: + - pos: -17.5,-24.5 + parent: 1 + type: Transform + - uid: 6402 + components: + - pos: -16.5,-24.5 + parent: 1 + type: Transform + - uid: 12482 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,14.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 5945 + components: + - rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 5946 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 8835 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 1 + type: Transform + - uid: 9110 + components: + - pos: 18.5,-0.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 1097 + components: + - name: SMES Bank 1 + type: MetaData + - pos: 23.5,-14.5 + parent: 1 + type: Transform + - uid: 1118 + components: + - name: SMES Bank 2 + type: MetaData + - pos: 24.5,-14.5 + parent: 1 + type: Transform + - uid: 1119 + components: + - name: SMES Bank 3 + type: MetaData + - pos: 25.5,-14.5 + parent: 1 + type: Transform + - uid: 2445 + components: + - name: South solars SMES + type: MetaData + - pos: -32.5,-23.5 + parent: 1 + type: Transform + - uid: 2553 + components: + - name: North solars SMES + type: MetaData + - pos: -27.5,29.5 + parent: 1 + type: Transform + - uid: 2856 + components: + - name: Annex SMES + type: MetaData + - pos: -11.5,-52.5 + parent: 1 + type: Transform + - uid: 3671 + components: + - pos: -0.5,45.5 + parent: 1 + type: Transform + - uid: 7557 + components: + - name: Gravity SMES + type: MetaData + - pos: -41.5,23.5 + parent: 1 + type: Transform +- proto: SMESMachineCircuitboard + entities: + - uid: 9512 + components: + - pos: -1.3981457,-34.369713 + parent: 1 + type: Transform +- proto: SoapOmega + entities: + - uid: 12356 + components: + - pos: -43.500492,24.479343 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 5954 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 8265 + components: + - pos: -13.5,-48.5 + parent: 1 + type: Transform + - uid: 8296 + components: + - pos: -30.5,-12.5 + parent: 1 + type: Transform +- proto: SolarPanel + entities: + - uid: 2472 + components: + - pos: -34.5,-28.5 + parent: 1 + type: Transform + - uid: 2473 + components: + - pos: -33.5,-28.5 + parent: 1 + type: Transform + - uid: 2474 + components: + - pos: -32.5,-28.5 + parent: 1 + type: Transform + - uid: 2475 + components: + - pos: -34.5,-30.5 + parent: 1 + type: Transform + - uid: 2476 + components: + - pos: -33.5,-30.5 + parent: 1 + type: Transform + - uid: 2477 + components: + - pos: -32.5,-30.5 + parent: 1 + type: Transform + - uid: 2478 + components: + - pos: -30.5,-28.5 + parent: 1 + type: Transform + - uid: 2479 + components: + - pos: -29.5,-28.5 + parent: 1 + type: Transform + - uid: 2480 + components: + - pos: -28.5,-28.5 + parent: 1 + type: Transform + - uid: 2481 + components: + - pos: -30.5,-30.5 + parent: 1 + type: Transform + - uid: 2482 + components: + - pos: -29.5,-30.5 + parent: 1 + type: Transform + - uid: 2483 + components: + - pos: -28.5,-30.5 + parent: 1 + type: Transform + - uid: 2484 + components: + - pos: -28.5,-32.5 + parent: 1 + type: Transform + - uid: 2485 + components: + - pos: -29.5,-32.5 + parent: 1 + type: Transform + - uid: 2486 + components: + - pos: -30.5,-32.5 + parent: 1 + type: Transform + - uid: 2487 + components: + - pos: -32.5,-32.5 + parent: 1 + type: Transform + - uid: 2488 + components: + - pos: -33.5,-32.5 + parent: 1 + type: Transform + - uid: 2489 + components: + - pos: -34.5,-32.5 + parent: 1 + type: Transform + - uid: 2490 + components: + - pos: -34.5,-34.5 + parent: 1 + type: Transform + - uid: 2491 + components: + - pos: -33.5,-34.5 + parent: 1 + type: Transform + - uid: 2492 + components: + - pos: -32.5,-34.5 + parent: 1 + type: Transform + - uid: 2493 + components: + - pos: -30.5,-34.5 + parent: 1 + type: Transform + - uid: 2494 + components: + - pos: -29.5,-34.5 + parent: 1 + type: Transform + - uid: 2495 + components: + - pos: -28.5,-34.5 + parent: 1 + type: Transform + - uid: 2558 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,36.5 + parent: 1 + type: Transform + - uid: 2559 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,36.5 + parent: 1 + type: Transform + - uid: 2560 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,36.5 + parent: 1 + type: Transform + - uid: 2561 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,36.5 + parent: 1 + type: Transform + - uid: 2562 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,40.5 + parent: 1 + type: Transform + - uid: 2563 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,40.5 + parent: 1 + type: Transform + - uid: 2564 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,40.5 + parent: 1 + type: Transform + - uid: 2565 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,40.5 + parent: 1 + type: Transform + - uid: 2566 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 1 + type: Transform + - uid: 2567 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,38.5 + parent: 1 + type: Transform + - uid: 2568 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,38.5 + parent: 1 + type: Transform + - uid: 2569 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,38.5 + parent: 1 + type: Transform + - uid: 2570 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 1 + type: Transform + - uid: 2571 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,34.5 + parent: 1 + type: Transform + - uid: 2572 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,34.5 + parent: 1 + type: Transform + - uid: 2573 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,34.5 + parent: 1 + type: Transform + - uid: 2574 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,34.5 + parent: 1 + type: Transform + - uid: 2575 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,34.5 + parent: 1 + type: Transform + - uid: 2576 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,34.5 + parent: 1 + type: Transform + - uid: 2577 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,34.5 + parent: 1 + type: Transform + - uid: 2578 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,36.5 + parent: 1 + type: Transform + - uid: 2579 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,36.5 + parent: 1 + type: Transform + - uid: 2580 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,36.5 + parent: 1 + type: Transform + - uid: 2581 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 1 + type: Transform + - uid: 2582 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,40.5 + parent: 1 + type: Transform + - uid: 2583 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,40.5 + parent: 1 + type: Transform + - uid: 2584 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,40.5 + parent: 1 + type: Transform + - uid: 2585 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,40.5 + parent: 1 + type: Transform + - uid: 2586 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,38.5 + parent: 1 + type: Transform + - uid: 2587 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 1 + type: Transform + - uid: 2588 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,38.5 + parent: 1 + type: Transform + - uid: 2589 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,38.5 + parent: 1 + type: Transform + - uid: 2816 + components: + - pos: -16.5,-57.5 + parent: 1 + type: Transform + - uid: 2817 + components: + - pos: -15.5,-57.5 + parent: 1 + type: Transform + - uid: 2818 + components: + - pos: -13.5,-57.5 + parent: 1 + type: Transform + - uid: 2819 + components: + - pos: -12.5,-57.5 + parent: 1 + type: Transform + - uid: 2820 + components: + - pos: -12.5,-59.5 + parent: 1 + type: Transform + - uid: 2821 + components: + - pos: -15.5,-59.5 + parent: 1 + type: Transform + - uid: 2823 + components: + - pos: -13.5,-59.5 + parent: 1 + type: Transform + - uid: 2838 + components: + - pos: -16.5,-59.5 + parent: 1 + type: Transform +- proto: SolarTracker + entities: + - uid: 2521 + components: + - pos: -31.5,-36.5 + parent: 1 + type: Transform + - uid: 2653 + components: + - pos: -27.5,42.5 + parent: 1 + type: Transform + - uid: 2815 + components: + - pos: -14.5,-60.5 + parent: 1 + type: Transform +- proto: SpaceCash1000 + entities: + - uid: 4132 + components: + - pos: -1.4122305,23.498293 + parent: 1 + type: Transform + - count: 2000 + type: Stack +- proto: SpaceVillainArcadeFilled + entities: + - uid: 2869 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-50.5 + parent: 1 + type: Transform +- proto: SpawnMobAlexander + entities: + - uid: 11924 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: SpawnMobBandito + entities: + - uid: 11925 + components: + - pos: -15.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnMobCatException + entities: + - uid: 5924 + components: + - pos: -19.5,15.5 + parent: 1 + type: Transform +- proto: SpawnMobCatRuntime + entities: + - uid: 11923 + components: + - pos: 20.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 4967 + components: + - pos: -1.5,19.5 + parent: 1 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 9658 + components: + - pos: 11.5,27.5 + parent: 1 + type: Transform + - uid: 9659 + components: + - pos: 12.5,27.5 + parent: 1 + type: Transform + - uid: 9661 + components: + - pos: 13.5,27.5 + parent: 1 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 4084 + components: + - pos: 5.5,29.5 + parent: 1 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 5925 + components: + - pos: 15.5,14.5 + parent: 1 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 5416 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 11913 + components: + - pos: 8.5,-12.5 + parent: 1 + type: Transform + - uid: 11914 + components: + - pos: 29.5,-14.5 + parent: 1 + type: Transform + - uid: 11915 + components: + - pos: 30.5,-1.5 + parent: 1 + type: Transform + - uid: 11916 + components: + - pos: 41.5,10.5 + parent: 1 + type: Transform + - uid: 11917 + components: + - pos: 30.5,34.5 + parent: 1 + type: Transform + - uid: 11918 + components: + - pos: 8.5,24.5 + parent: 1 + type: Transform + - uid: 11919 + components: + - pos: -9.5,23.5 + parent: 1 + type: Transform + - uid: 11920 + components: + - pos: -32.5,19.5 + parent: 1 + type: Transform + - uid: 11921 + components: + - pos: -34.5,-6.5 + parent: 1 + type: Transform + - uid: 11922 + components: + - pos: -24.5,-17.5 + parent: 1 + type: Transform +- proto: SpawnMobPossumMorty + entities: + - uid: 11926 + components: + - pos: -9.5,-25.5 + parent: 1 + type: Transform +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 11927 + components: + - pos: 9.5,-19.5 + parent: 1 + type: Transform + - uid: 11928 + components: + - pos: -38.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnMobShiva + entities: + - uid: 8256 + components: + - pos: 25.5,13.5 + parent: 1 + type: Transform +- proto: SpawnMobWalter + entities: + - uid: 5922 + components: + - pos: -12.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 7496 + components: + - pos: -3.5,-21.5 + parent: 1 + type: Transform + - uid: 7497 + components: + - pos: -3.5,-25.5 + parent: 1 + type: Transform + - uid: 7498 + components: + - pos: -7.5,-25.5 + parent: 1 + type: Transform + - uid: 7499 + components: + - pos: -11.5,-25.5 + parent: 1 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 7130 + components: + - pos: 32.5,-17.5 + parent: 1 + type: Transform + - uid: 7131 + components: + - pos: 33.5,-17.5 + parent: 1 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 6037 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 5913 + components: + - pos: -7.5,-12.5 + parent: 1 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 6038 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 6039 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 6046 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 7475 + components: + - pos: 9.5,-20.5 + parent: 1 + type: Transform + - uid: 7476 + components: + - pos: 9.5,-21.5 + parent: 1 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 7487 + components: + - pos: -32.5,14.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 6036 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 6031 + components: + - pos: -11.5,14.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 7279 + components: + - pos: 19.5,-14.5 + parent: 1 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 1870 + components: + - pos: -19.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 7488 + components: + - pos: -10.5,-29.5 + parent: 1 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 12411 + components: + - pos: 26.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 6045 + components: + - pos: -5.5,20.5 + parent: 1 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 6044 + components: + - pos: 26.5,13.5 + parent: 1 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 7491 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 7480 + components: + - pos: 45.5,12.5 + parent: 1 + type: Transform + - uid: 7481 + components: + - pos: 45.5,5.5 + parent: 1 + type: Transform + - uid: 7482 + components: + - pos: 45.5,8.5 + parent: 1 + type: Transform + - uid: 7483 + components: + - pos: 45.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 12442 + components: + - pos: 42.5,32.5 + parent: 1 + type: Transform + - uid: 12443 + components: + - pos: 43.5,32.5 + parent: 1 + type: Transform +- proto: SpawnPointLibrarian + entities: + - uid: 7486 + components: + - pos: -37.5,-9.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 6029 + components: + - pos: -22.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 6030 + components: + - pos: -21.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 7489 + components: + - pos: -12.5,-29.5 + parent: 1 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 7490 + components: + - pos: -12.5,-30.5 + parent: 1 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 7492 + components: + - pos: 1.5,15.5 + parent: 1 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 7477 + components: + - pos: 5.5,-14.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 6035 + components: + - pos: -15.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 6034 + components: + - pos: -21.5,-0.5 + parent: 1 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 7478 + components: + - pos: 20.5,-22.5 + parent: 1 + type: Transform + - uid: 7479 + components: + - pos: 19.5,-22.5 + parent: 1 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 6032 + components: + - pos: -17.5,-5.5 + parent: 1 + type: Transform + - uid: 6033 + components: + - pos: -16.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 6042 + components: + - pos: 17.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 6040 + components: + - pos: 13.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorEngineer + entities: + - uid: 5915 + components: + - pos: 19.5,-4.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorOfficer + entities: + - uid: 5916 + components: + - pos: 15.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorPhysician + entities: + - uid: 5923 + components: + - pos: -20.5,10.5 + parent: 1 + type: Transform +- proto: SpawnPointSeniorResearcher + entities: + - uid: 770 + components: + - pos: -16.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnPointServiceWorker + entities: + - uid: 7493 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 7494 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 7495 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 7278 + components: + - pos: 22.5,-4.5 + parent: 1 + type: Transform + - uid: 7280 + components: + - pos: 22.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 7281 + components: + - pos: 22.5,-6.5 + parent: 1 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 6043 + components: + - pos: 28.5,17.5 + parent: 1 + type: Transform +- proto: SpawnVehicleJanicart + entities: + - uid: 7663 + components: + - pos: 14.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnVehicleSecway + entities: + - uid: 5319 + components: + - pos: 18.5,10.5 + parent: 1 + type: Transform + - uid: 5320 + components: + - pos: 19.5,10.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockDrink + entities: + - uid: 3058 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 7673 + components: + - pos: -38.5,-16.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockFood + entities: + - uid: 3836 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 7672 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 7671 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 8833 + components: + - pos: 28.5,-15.5 + parent: 1 + type: Transform + - uid: 8909 + components: + - pos: 32.5,-4.5 + parent: 1 + type: Transform + - uid: 9149 + components: + - pos: 13.5,30.5 + parent: 1 + type: Transform + - uid: 9164 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 9475 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 9726 + components: + - pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 12488 + components: + - pos: 24.5,32.5 + parent: 1 + type: Transform +- proto: SpeedLoaderPistol + entities: + - uid: 5358 + components: + - flags: InContainer + type: MetaData + - parent: 5356 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Spoon + entities: + - uid: 5986 + components: + - pos: 1.7662358,10.5377035 + parent: 1 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 5350 + components: + - pos: 23.525412,5.6263475 + parent: 1 + type: Transform +- proto: StasisBed + entities: + - uid: 1885 + components: + - pos: -21.5,5.5 + parent: 1 + type: Transform +- proto: StationMap + entities: + - uid: 12501 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 12502 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 12503 + components: + - pos: -12.5,-27.5 + parent: 1 + type: Transform + - uid: 12504 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 12505 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 12506 + components: + - pos: 27.5,4.5 + parent: 1 + type: Transform + - uid: 12507 + components: + - pos: 43.5,5.5 + parent: 1 + type: Transform + - uid: 12508 + components: + - pos: 43.5,18.5 + parent: 1 + type: Transform + - uid: 12509 + components: + - pos: -15.5,0.5 + parent: 1 + type: Transform + - uid: 12510 + components: + - pos: -29.5,0.5 + parent: 1 + type: Transform + - uid: 12511 + components: + - pos: -38.5,5.5 + parent: 1 + type: Transform +- proto: Stool + entities: + - uid: 4946 + components: + - pos: 30.5,25.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 5013 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 5014 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 5015 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 5016 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 5017 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 8305 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-15.5 + parent: 1 + type: Transform + - uid: 8306 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-15.5 + parent: 1 + type: Transform + - uid: 8307 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-15.5 + parent: 1 + type: Transform +- proto: StorageCanister + entities: + - uid: 6322 + components: + - pos: -17.5,-18.5 + parent: 1 + type: Transform + - uid: 6813 + components: + - pos: 43.5,-17.5 + parent: 1 + type: Transform + - uid: 6993 + components: + - pos: 34.5,-3.5 + parent: 1 + type: Transform + - uid: 7001 + components: + - pos: 34.5,-2.5 + parent: 1 + type: Transform + - uid: 9561 + components: + - pos: 35.5,-13.5 + parent: 1 + type: Transform + - uid: 9562 + components: + - pos: 35.5,-14.5 + parent: 1 + type: Transform + - uid: 9563 + components: + - pos: 35.5,-15.5 + parent: 1 + type: Transform +- proto: Stunbaton + entities: + - uid: 5327 + components: + - pos: 19.341703,15.5968685 + parent: 1 + type: Transform + - uid: 5328 + components: + - pos: 19.622953,15.5812435 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 1469 + components: + - name: Security Substation + type: MetaData + - pos: 22.5,21.5 + parent: 1 + type: Transform + - uid: 1714 + components: + - name: Dorms Substation + type: MetaData + - pos: -7.5,-22.5 + parent: 1 + type: Transform + - uid: 1715 + components: + - name: Supply Substation + type: MetaData + - pos: 24.5,-20.5 + parent: 1 + type: Transform + - uid: 1716 + components: + - name: Engineering Substation + type: MetaData + - pos: 14.5,-12.5 + parent: 1 + type: Transform + - uid: 1718 + components: + - name: Science Substation + type: MetaData + - pos: -7.5,-20.5 + parent: 1 + type: Transform + - uid: 1719 + components: + - name: Bridge Substation + type: MetaData + - pos: -14.5,31.5 + parent: 1 + type: Transform + - uid: 1749 + components: + - name: Service Substation + type: MetaData + - pos: 10.5,21.5 + parent: 1 + type: Transform + - uid: 1951 + components: + - name: Medical Substation + type: MetaData + - pos: -20.5,26.5 + parent: 1 + type: Transform + - uid: 2260 + components: + - name: South solars Substation + type: MetaData + - pos: -29.5,-23.5 + parent: 1 + type: Transform + - uid: 2426 + components: + - name: Arrivals Substation + type: MetaData + - pos: 40.5,19.5 + parent: 1 + type: Transform + - uid: 2555 + components: + - name: North solars Substation + type: MetaData + - pos: -24.5,29.5 + parent: 1 + type: Transform + - uid: 2855 + components: + - name: Annex Substation + type: MetaData + - pos: -11.5,-51.5 + parent: 1 + type: Transform + - uid: 3672 + components: + - pos: -0.5,44.5 + parent: 1 + type: Transform + - uid: 7556 + components: + - name: Gravity Substation + type: MetaData + - pos: -40.5,23.5 + parent: 1 + type: Transform +- proto: SubstationMachineCircuitboard + entities: + - uid: 9510 + components: + - pos: -1.3825207,-34.682213 + parent: 1 + type: Transform + - uid: 9511 + components: + - pos: -1.5075207,-34.557213 + parent: 1 + type: Transform +- proto: SuitStorageAtmos + entities: + - uid: 1849 + components: + - pos: 34.5,-18.5 + parent: 1 + type: Transform + - uid: 4931 + components: + - pos: 35.5,-18.5 + parent: 1 + type: Transform +- proto: SuitStorageCaptain + entities: + - uid: 4934 + components: + - pos: 3.5,29.5 + parent: 1 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 4933 + components: + - pos: 20.5,-13.5 + parent: 1 + type: Transform +- proto: SuitStorageCMO + entities: + - uid: 1865 + components: + - pos: -20.5,15.5 + parent: 1 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 1510 + components: + - pos: 21.5,-10.5 + parent: 1 + type: Transform + - uid: 1522 + components: + - pos: 20.5,-10.5 + parent: 1 + type: Transform + - uid: 4916 + components: + - pos: 19.5,-10.5 + parent: 1 + type: Transform +- proto: SuitStorageEVA + entities: + - uid: 762 + components: + - pos: 40.5,23.5 + parent: 1 + type: Transform + - uid: 1846 + components: + - pos: 41.5,23.5 + parent: 1 + type: Transform + - uid: 5410 + components: + - pos: 42.5,23.5 + parent: 1 + type: Transform + - uid: 5411 + components: + - pos: 39.5,23.5 + parent: 1 + type: Transform +- proto: SuitStorageEVAPrisoner + entities: + - uid: 4935 + components: + - pos: 31.5,18.5 + parent: 1 + type: Transform + - uid: 5412 + components: + - pos: 34.5,23.5 + parent: 1 + type: Transform +- proto: SuitStorageHOS + entities: + - uid: 4973 + components: + - pos: 29.5,14.5 + parent: 1 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 4929 + components: + - pos: -22.5,-2.5 + parent: 1 + type: Transform +- proto: SuitStorageSalv + entities: + - uid: 5382 + components: + - pos: 22.5,-22.5 + parent: 1 + type: Transform + - uid: 5413 + components: + - pos: 22.5,-21.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 4917 + components: + - pos: 37.5,10.5 + parent: 1 + type: Transform + - uid: 4932 + components: + - pos: 23.5,13.5 + parent: 1 + type: Transform +- proto: SuitStorageWarden + entities: + - uid: 4930 + components: + - pos: 29.5,18.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 3970 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,52.5 + parent: 1 + type: Transform + - id: Telecomms + type: SurveillanceCamera + - uid: 3972 + components: + - rot: 3.141592653589793 rad + pos: -7.5,56.5 + parent: 1 + type: Transform + - id: AI Room North + type: SurveillanceCamera + - uid: 3973 + components: + - pos: -5.5,48.5 + parent: 1 + type: Transform + - id: AI Room South + type: SurveillanceCamera + - uid: 3974 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,44.5 + parent: 1 + type: Transform + - id: AI Room Entrance + type: SurveillanceCamera + - uid: 3975 + components: + - pos: -2.5,44.5 + parent: 1 + type: Transform + - id: AI Electrical Room + type: SurveillanceCamera + - uid: 5909 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1 + type: Transform + - id: Meeting Room + type: SurveillanceCamera + - uid: 5910 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - id: Bridge + type: SurveillanceCamera + - uid: 12098 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - id: Vault + type: SurveillanceCamera + - uid: 12099 + components: + - rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 1 + type: Transform + - id: HoP Office + type: SurveillanceCamera + - uid: 12100 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 12070 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 12071 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 1 + type: Transform + - id: Reception + type: SurveillanceCamera + - uid: 12072 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 1 + type: Transform + - id: Atmospherics North + type: SurveillanceCamera + - uid: 12073 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 1 + type: Transform + - id: Atmospherics South + type: SurveillanceCamera + - uid: 12074 + components: + - pos: 24.5,-15.5 + parent: 1 + type: Transform + - id: SMES Room + type: SurveillanceCamera + - uid: 12077 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-31.5 + parent: 1 + type: Transform + - id: Tech Vault + type: SurveillanceCamera + - uid: 12088 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,21.5 + parent: 1 + type: Transform + - id: Gravity Generator Room + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 12068 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,32.5 + parent: 1 + type: Transform + - id: Courtroom + type: SurveillanceCamera + - uid: 12069 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,9.5 + parent: 1 + type: Transform + - id: Arrivals + type: SurveillanceCamera + - uid: 12078 + components: + - pos: -4.5,-26.5 + parent: 1 + type: Transform + - id: Dorms + type: SurveillanceCamera + - uid: 12087 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,8.5 + parent: 1 + type: Transform + - id: Evac + type: SurveillanceCamera + - uid: 12089 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,8.5 + parent: 1 + type: Transform + - id: Chapel + type: SurveillanceCamera + - uid: 12090 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 1 + type: Transform + - id: Library + type: SurveillanceCamera +- proto: SurveillanceCameraMedical + entities: + - uid: 12091 + components: + - pos: -25.5,5.5 + parent: 1 + type: Transform + - id: Cloning + type: SurveillanceCamera + - uid: 12092 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 1 + type: Transform + - id: Morgue + type: SurveillanceCamera + - uid: 12093 + components: + - rot: 3.141592653589793 rad + pos: -17.5,11.5 + parent: 1 + type: Transform + - id: Ward + type: SurveillanceCamera + - uid: 12094 + components: + - rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera + - uid: 12095 + components: + - rot: 3.141592653589793 rad + pos: -12.5,16.5 + parent: 1 + type: Transform + - id: Chemistry + type: SurveillanceCamera + - uid: 12096 + components: + - pos: -14.5,18.5 + parent: 1 + type: Transform + - id: Virology + type: SurveillanceCamera + - uid: 12111 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,22.5 + parent: 1 + type: Transform + - id: Surgery Room + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 3776 + components: + - pos: 2.5,49.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 3787 + components: + - pos: 2.5,53.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 3791 + components: + - pos: 2.5,55.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 3774 + components: + - pos: 0.5,49.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 3788 + components: + - pos: 0.5,51.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 3775 + components: + - pos: 2.5,51.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 3786 + components: + - pos: 0.5,53.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 3781 + components: + - pos: 0.5,55.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 12082 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 1 + type: Transform + - id: Xenoarchaeology + type: SurveillanceCamera + - uid: 12083 + components: + - pos: -8.5,-15.5 + parent: 1 + type: Transform + - id: Robotics + type: SurveillanceCamera + - uid: 12084 + components: + - pos: -9.5,-9.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera + - uid: 12085 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 12086 + components: + - pos: -27.5,-7.5 + parent: 1 + type: Transform + - id: Anomaly Lab + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 12059 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,27.5 + parent: 1 + type: Transform + - id: Permabrig + type: SurveillanceCamera + - uid: 12060 + components: + - rot: 3.141592653589793 rad + pos: 37.5,13.5 + parent: 1 + type: Transform + - id: Armory + type: SurveillanceCamera + - uid: 12061 + components: + - pos: 31.5,8.5 + parent: 1 + type: Transform + - id: Hallway + type: SurveillanceCamera + - uid: 12062 + components: + - rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 1 + type: Transform + - id: Equipment Room + type: SurveillanceCamera + - uid: 12063 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 + type: Transform + - id: Entrance + type: SurveillanceCamera + - uid: 12064 + components: + - rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 1 + type: Transform + - id: Brig Area + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 12079 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - id: Botany + type: SurveillanceCamera + - uid: 12080 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - id: Kitchen + type: SurveillanceCamera + - uid: 12081 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - id: Bar + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 12075 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - id: Reception + type: SurveillanceCamera + - uid: 12076 + components: + - pos: 16.5,-27.5 + parent: 1 + type: Transform + - id: Cargo Bay + type: SurveillanceCamera +- proto: SurvivalKnife + entities: + - uid: 8272 + components: + - desc: Weapon of last resort for a certified pilot. + name: dataknife + type: MetaData + - pos: -19.460943,-48.42677 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,11.5 + parent: 1 + type: Transform + - uid: 477 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 478 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 479 + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 480 + components: + - rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 481 + components: + - rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 482 + components: + - rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 483 + components: + - rot: 3.141592653589793 rad + pos: -17.5,5.5 + parent: 1 + type: Transform + - uid: 484 + components: + - rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 1 + type: Transform + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 1 + type: Transform + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: 18.5,15.5 + parent: 1 + type: Transform + - uid: 768 + components: + - rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 1 + type: Transform + - uid: 769 + components: + - rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: 16.5,13.5 + parent: 1 + type: Transform + - uid: 772 + components: + - rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 773 + components: + - rot: 3.141592653589793 rad + pos: 12.5,15.5 + parent: 1 + type: Transform + - uid: 781 + components: + - pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 782 + components: + - pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 786 + components: + - pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 1505 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1 + type: Transform + - uid: 1701 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 1702 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 1703 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 1704 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 1705 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + type: Transform + - uid: 1706 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 1 + type: Transform + - uid: 1707 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + type: Transform + - uid: 1708 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + type: Transform + - uid: 1709 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1 + type: Transform + - uid: 1756 + components: + - pos: 4.5,-27.5 + parent: 1 + type: Transform + - uid: 1808 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 1 + type: Transform + - uid: 1811 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,27.5 + parent: 1 + type: Transform + - uid: 1890 + components: + - rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + type: Transform + - uid: 1902 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,11.5 + parent: 1 + type: Transform + - uid: 1904 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,11.5 + parent: 1 + type: Transform + - uid: 1906 + components: + - rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 1 + type: Transform + - uid: 1907 + components: + - rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 1 + type: Transform + - uid: 1919 + components: + - pos: -22.5,16.5 + parent: 1 + type: Transform + - uid: 1920 + components: + - pos: -22.5,15.5 + parent: 1 + type: Transform + - uid: 1922 + components: + - pos: -22.5,13.5 + parent: 1 + type: Transform + - uid: 1928 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 2369 + components: + - pos: 11.5,23.5 + parent: 1 + type: Transform + - uid: 2748 + components: + - pos: -10.5,52.5 + parent: 1 + type: Transform + - uid: 2749 + components: + - pos: -10.5,54.5 + parent: 1 + type: Transform + - uid: 2751 + components: + - pos: -10.5,50.5 + parent: 1 + type: Transform + - uid: 2755 + components: + - pos: -9.5,48.5 + parent: 1 + type: Transform + - uid: 2756 + components: + - pos: -8.5,48.5 + parent: 1 + type: Transform + - uid: 2758 + components: + - pos: -3.5,48.5 + parent: 1 + type: Transform + - uid: 2763 + components: + - pos: -8.5,56.5 + parent: 1 + type: Transform + - uid: 2764 + components: + - pos: -7.5,56.5 + parent: 1 + type: Transform + - uid: 2766 + components: + - pos: -5.5,56.5 + parent: 1 + type: Transform + - uid: 2767 + components: + - pos: -4.5,56.5 + parent: 1 + type: Transform + - uid: 3662 + components: + - pos: -24.5,-19.5 + parent: 1 + type: Transform + - uid: 3809 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 3810 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 3811 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 3812 + components: + - pos: 21.5,15.5 + parent: 1 + type: Transform + - uid: 3813 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + type: Transform + - uid: 3814 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 + type: Transform + - uid: 3922 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,44.5 + parent: 1 + type: Transform + - uid: 3925 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,46.5 + parent: 1 + type: Transform + - uid: 3954 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 1 + type: Transform + - uid: 3955 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 1 + type: Transform + - uid: 3956 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 1 + type: Transform + - uid: 4062 + components: + - pos: -0.5,32.5 + parent: 1 + type: Transform + - uid: 4063 + components: + - pos: -3.5,32.5 + parent: 1 + type: Transform + - uid: 4075 + components: + - pos: -3.5,31.5 + parent: 1 + type: Transform + - uid: 4077 + components: + - pos: -0.5,31.5 + parent: 1 + type: Transform + - uid: 4087 + components: + - rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 1 + type: Transform + - uid: 4088 + components: + - rot: 3.141592653589793 rad + pos: -1.5,27.5 + parent: 1 + type: Transform + - uid: 4089 + components: + - rot: 3.141592653589793 rad + pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 4857 + components: + - rot: 3.141592653589793 rad + pos: 40.5,25.5 + parent: 1 + type: Transform + - uid: 4936 + components: + - pos: 27.5,24.5 + parent: 1 + type: Transform + - uid: 4937 + components: + - pos: 28.5,24.5 + parent: 1 + type: Transform + - uid: 4938 + components: + - pos: 29.5,24.5 + parent: 1 + type: Transform + - uid: 5052 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 + type: Transform + - uid: 5055 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 5061 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 5314 + components: + - pos: 30.5,8.5 + parent: 1 + type: Transform + - uid: 5315 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform + - uid: 5316 + components: + - pos: 25.5,10.5 + parent: 1 + type: Transform + - uid: 5317 + components: + - pos: 26.5,10.5 + parent: 1 + type: Transform + - uid: 5318 + components: + - pos: 27.5,10.5 + parent: 1 + type: Transform + - uid: 5340 + components: + - pos: 23.5,5.5 + parent: 1 + type: Transform + - uid: 5404 + components: + - pos: 36.5,13.5 + parent: 1 + type: Transform + - uid: 5405 + components: + - pos: 37.5,13.5 + parent: 1 + type: Transform + - uid: 5406 + components: + - pos: 38.5,13.5 + parent: 1 + type: Transform + - uid: 5407 + components: + - pos: 38.5,12.5 + parent: 1 + type: Transform + - uid: 5408 + components: + - pos: 38.5,10.5 + parent: 1 + type: Transform + - uid: 5409 + components: + - pos: 38.5,11.5 + parent: 1 + type: Transform + - uid: 5551 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 1 + type: Transform + - uid: 5552 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 1 + type: Transform + - uid: 5554 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,1.5 + parent: 1 + type: Transform + - uid: 5557 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,19.5 + parent: 1 + type: Transform + - uid: 5676 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 1 + type: Transform + - uid: 5690 + components: + - pos: -16.5,21.5 + parent: 1 + type: Transform + - uid: 5692 + components: + - pos: -12.5,19.5 + parent: 1 + type: Transform + - uid: 5693 + components: + - pos: -12.5,20.5 + parent: 1 + type: Transform + - uid: 5864 + components: + - pos: -16.5,-2.5 + parent: 1 + type: Transform + - uid: 5865 + components: + - pos: -16.5,-3.5 + parent: 1 + type: Transform + - uid: 5866 + components: + - pos: -16.5,-4.5 + parent: 1 + type: Transform + - uid: 5867 + components: + - pos: -17.5,-2.5 + parent: 1 + type: Transform + - uid: 5868 + components: + - pos: -17.5,-3.5 + parent: 1 + type: Transform + - uid: 5869 + components: + - pos: -17.5,-4.5 + parent: 1 + type: Transform + - uid: 5955 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 5956 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 5957 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 5959 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 5960 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 5966 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 5992 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 5993 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 6398 + components: + - pos: -15.5,-24.5 + parent: 1 + type: Transform + - uid: 6617 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 6758 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 1 + type: Transform + - uid: 6759 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 1 + type: Transform + - uid: 6763 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 1 + type: Transform + - uid: 6764 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + type: Transform + - uid: 6765 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 1 + type: Transform + - uid: 6768 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 1 + type: Transform + - uid: 6769 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + type: Transform + - uid: 7078 + components: + - pos: -4.5,-31.5 + parent: 1 + type: Transform + - uid: 7079 + components: + - pos: -3.5,-31.5 + parent: 1 + type: Transform + - uid: 7080 + components: + - pos: -2.5,-31.5 + parent: 1 + type: Transform + - uid: 7132 + components: + - pos: 32.5,-18.5 + parent: 1 + type: Transform + - uid: 7133 + components: + - pos: 33.5,-18.5 + parent: 1 + type: Transform + - uid: 7500 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-31.5 + parent: 1 + type: Transform + - uid: 7504 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 7507 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 7508 + components: + - rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 1 + type: Transform + - uid: 7509 + components: + - rot: 3.141592653589793 rad + pos: -25.5,3.5 + parent: 1 + type: Transform + - uid: 7524 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 1 + type: Transform + - uid: 7527 + components: + - pos: -39.5,12.5 + parent: 1 + type: Transform + - uid: 7634 + components: + - rot: 3.141592653589793 rad + pos: -41.5,18.5 + parent: 1 + type: Transform + - uid: 7635 + components: + - rot: 3.141592653589793 rad + pos: -41.5,19.5 + parent: 1 + type: Transform + - uid: 7636 + components: + - rot: 3.141592653589793 rad + pos: -41.5,20.5 + parent: 1 + type: Transform + - uid: 7666 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 7689 + components: + - pos: -5.5,-20.5 + parent: 1 + type: Transform + - uid: 7690 + components: + - pos: -4.5,-20.5 + parent: 1 + type: Transform + - uid: 7691 + components: + - pos: -3.5,-20.5 + parent: 1 + type: Transform + - uid: 7692 + components: + - pos: -2.5,-20.5 + parent: 1 + type: Transform + - uid: 7693 + components: + - pos: -1.5,-20.5 + parent: 1 + type: Transform + - uid: 7694 + components: + - pos: -5.5,-21.5 + parent: 1 + type: Transform + - uid: 7700 + components: + - pos: -12.5,-28.5 + parent: 1 + type: Transform + - uid: 7701 + components: + - pos: -13.5,-28.5 + parent: 1 + type: Transform + - uid: 7702 + components: + - pos: -13.5,-29.5 + parent: 1 + type: Transform + - uid: 7703 + components: + - pos: -13.5,-31.5 + parent: 1 + type: Transform + - uid: 7704 + components: + - pos: -12.5,-31.5 + parent: 1 + type: Transform + - uid: 7705 + components: + - pos: -11.5,-31.5 + parent: 1 + type: Transform + - uid: 7706 + components: + - pos: -9.5,-31.5 + parent: 1 + type: Transform + - uid: 7707 + components: + - pos: -9.5,-30.5 + parent: 1 + type: Transform + - uid: 7708 + components: + - pos: -9.5,-29.5 + parent: 1 + type: Transform + - uid: 7709 + components: + - pos: -9.5,-28.5 + parent: 1 + type: Transform + - uid: 8236 + components: + - pos: -26.5,21.5 + parent: 1 + type: Transform + - uid: 8237 + components: + - pos: -26.5,20.5 + parent: 1 + type: Transform + - uid: 8238 + components: + - pos: -25.5,20.5 + parent: 1 + type: Transform + - uid: 8239 + components: + - pos: -24.5,20.5 + parent: 1 + type: Transform + - uid: 8281 + components: + - pos: -27.5,-24.5 + parent: 1 + type: Transform + - uid: 8282 + components: + - pos: -27.5,-25.5 + parent: 1 + type: Transform + - uid: 8285 + components: + - pos: -23.5,-25.5 + parent: 1 + type: Transform + - uid: 8286 + components: + - pos: -21.5,-26.5 + parent: 1 + type: Transform + - uid: 8809 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 1 + type: Transform + - uid: 8874 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 1 + type: Transform + - uid: 8875 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-17.5 + parent: 1 + type: Transform + - uid: 8876 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 1 + type: Transform + - uid: 8877 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 1 + type: Transform + - uid: 8878 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 1 + type: Transform + - uid: 8879 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 1 + type: Transform + - uid: 8881 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 1 + type: Transform + - uid: 8882 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 1 + type: Transform + - uid: 8886 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 1 + type: Transform + - uid: 8887 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + type: Transform + - uid: 8888 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 1 + type: Transform + - uid: 8889 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 1 + type: Transform + - uid: 9045 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 1 + type: Transform + - uid: 9132 + components: + - pos: 9.5,-11.5 + parent: 1 + type: Transform + - uid: 9135 + components: + - pos: 19.5,-18.5 + parent: 1 + type: Transform + - uid: 9136 + components: + - pos: 28.5,-14.5 + parent: 1 + type: Transform + - uid: 9151 + components: + - pos: 26.5,-20.5 + parent: 1 + type: Transform + - uid: 9163 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 1 + type: Transform + - uid: 9311 + components: + - pos: 16.5,23.5 + parent: 1 + type: Transform + - uid: 9312 + components: + - pos: 12.5,21.5 + parent: 1 + type: Transform + - uid: 9313 + components: + - pos: 13.5,21.5 + parent: 1 + type: Transform + - uid: 9315 + components: + - pos: 12.5,20.5 + parent: 1 + type: Transform + - uid: 9324 + components: + - pos: -14.5,27.5 + parent: 1 + type: Transform + - uid: 9325 + components: + - pos: -13.5,27.5 + parent: 1 + type: Transform + - uid: 9350 + components: + - pos: 12.5,17.5 + parent: 1 + type: Transform + - uid: 9352 + components: + - pos: 13.5,17.5 + parent: 1 + type: Transform + - uid: 9363 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,23.5 + parent: 1 + type: Transform + - uid: 9370 + components: + - pos: 14.5,30.5 + parent: 1 + type: Transform + - uid: 9372 + components: + - pos: 16.5,33.5 + parent: 1 + type: Transform + - uid: 9373 + components: + - pos: 17.5,33.5 + parent: 1 + type: Transform + - uid: 9382 + components: + - pos: 23.5,21.5 + parent: 1 + type: Transform + - uid: 9537 + components: + - pos: 38.5,7.5 + parent: 1 + type: Transform + - uid: 9538 + components: + - pos: 42.5,6.5 + parent: 1 + type: Transform + - uid: 9541 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,13.5 + parent: 1 + type: Transform + - uid: 9542 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,12.5 + parent: 1 + type: Transform + - uid: 9545 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,25.5 + parent: 1 + type: Transform + - uid: 9546 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,24.5 + parent: 1 + type: Transform + - uid: 9575 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,6.5 + parent: 1 + type: Transform + - uid: 9646 + components: + - pos: 10.5,24.5 + parent: 1 + type: Transform + - uid: 9650 + components: + - pos: 13.5,23.5 + parent: 1 + type: Transform + - uid: 9660 + components: + - pos: 10.5,23.5 + parent: 1 + type: Transform + - uid: 9682 + components: + - pos: -28.5,22.5 + parent: 1 + type: Transform + - uid: 9683 + components: + - pos: -28.5,21.5 + parent: 1 + type: Transform + - uid: 9686 + components: + - pos: -23.5,26.5 + parent: 1 + type: Transform + - uid: 9688 + components: + - pos: -19.5,20.5 + parent: 1 + type: Transform + - uid: 9697 + components: + - pos: -31.5,21.5 + parent: 1 + type: Transform + - uid: 9698 + components: + - pos: -32.5,18.5 + parent: 1 + type: Transform + - uid: 9700 + components: + - pos: -33.5,18.5 + parent: 1 + type: Transform + - uid: 9711 + components: + - pos: -28.5,12.5 + parent: 1 + type: Transform + - uid: 11797 + components: + - pos: 12.5,23.5 + parent: 1 + type: Transform +- proto: TableCarpet + entities: + - uid: 5041 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 5566 + components: + - pos: -40.5,-5.5 + parent: 1 + type: Transform + - uid: 5567 + components: + - pos: -40.5,-6.5 + parent: 1 + type: Transform + - uid: 5568 + components: + - pos: -39.5,-5.5 + parent: 1 + type: Transform + - uid: 5569 + components: + - pos: -39.5,-6.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 4886 + components: + - rot: 3.141592653589793 rad + pos: 43.5,33.5 + parent: 1 + type: Transform + - uid: 4887 + components: + - rot: 3.141592653589793 rad + pos: 42.5,33.5 + parent: 1 + type: Transform +- proto: TableGlass + entities: + - uid: 5051 + components: + - pos: 3.5,25.5 + parent: 1 + type: Transform + - uid: 5614 + components: + - rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 1 + type: Transform + - uid: 5615 + components: + - rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 1 + type: Transform + - uid: 5616 + components: + - rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 1 + type: Transform + - uid: 9615 + components: + - rot: 3.141592653589793 rad + pos: 16.5,27.5 + parent: 1 + type: Transform + - uid: 9616 + components: + - rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 1 + type: Transform + - uid: 9617 + components: + - rot: 3.141592653589793 rad + pos: 18.5,27.5 + parent: 1 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 553 + components: + - pos: -28.5,-5.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: -27.5,-5.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: -28.5,-7.5 + parent: 1 + type: Transform + - uid: 606 + components: + - pos: -28.5,-0.5 + parent: 1 + type: Transform + - uid: 607 + components: + - pos: -24.5,-0.5 + parent: 1 + type: Transform + - uid: 2865 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-53.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 605 + components: + - pos: -14.5,-8.5 + parent: 1 + type: Transform + - uid: 645 + components: + - pos: -5.5,-15.5 + parent: 1 + type: Transform + - uid: 646 + components: + - pos: -9.5,-11.5 + parent: 1 + type: Transform + - uid: 650 + components: + - pos: -6.5,-15.5 + parent: 1 + type: Transform + - uid: 655 + components: + - pos: -9.5,-13.5 + parent: 1 + type: Transform + - uid: 656 + components: + - pos: -9.5,-12.5 + parent: 1 + type: Transform + - uid: 4121 + components: + - pos: -3.5,23.5 + parent: 1 + type: Transform + - uid: 4122 + components: + - pos: -2.5,23.5 + parent: 1 + type: Transform + - uid: 4123 + components: + - pos: -1.5,23.5 + parent: 1 + type: Transform + - uid: 4124 + components: + - pos: -1.5,24.5 + parent: 1 + type: Transform + - uid: 4125 + components: + - pos: -1.5,25.5 + parent: 1 + type: Transform + - uid: 6064 + components: + - pos: -14.5,-9.5 + parent: 1 + type: Transform + - uid: 6065 + components: + - pos: -14.5,-10.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 165 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 798 + components: + - pos: 27.5,13.5 + parent: 1 + type: Transform + - uid: 1256 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 1 + type: Transform + - uid: 1261 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-2.5 + parent: 1 + type: Transform + - uid: 1263 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 1 + type: Transform + - uid: 1281 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 1 + type: Transform + - uid: 1780 + components: + - pos: 27.5,14.5 + parent: 1 + type: Transform + - uid: 1802 + components: + - pos: 29.5,16.5 + parent: 1 + type: Transform + - uid: 1803 + components: + - pos: 28.5,16.5 + parent: 1 + type: Transform + - uid: 1844 + components: + - pos: -21.5,-1.5 + parent: 1 + type: Transform + - uid: 1863 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,14.5 + parent: 1 + type: Transform + - uid: 1864 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,14.5 + parent: 1 + type: Transform + - uid: 2782 + components: + - pos: -14.5,-48.5 + parent: 1 + type: Transform + - uid: 2786 + components: + - pos: -15.5,-48.5 + parent: 1 + type: Transform + - uid: 2799 + components: + - pos: -13.5,-48.5 + parent: 1 + type: Transform + - uid: 2930 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-52.5 + parent: 1 + type: Transform + - uid: 3130 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 3131 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 3132 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 3153 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 3154 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 3469 + components: + - rot: 3.141592653589793 rad + pos: -36.5,11.5 + parent: 1 + type: Transform + - uid: 3470 + components: + - rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 1 + type: Transform + - uid: 3471 + components: + - rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 1 + type: Transform + - uid: 3472 + components: + - rot: 3.141592653589793 rad + pos: -33.5,11.5 + parent: 1 + type: Transform + - uid: 3480 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,14.5 + parent: 1 + type: Transform + - uid: 4045 + components: + - rot: 3.141592653589793 rad + pos: -9.5,27.5 + parent: 1 + type: Transform + - uid: 4046 + components: + - rot: 3.141592653589793 rad + pos: -9.5,28.5 + parent: 1 + type: Transform + - uid: 4091 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,31.5 + parent: 1 + type: Transform + - uid: 4092 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,31.5 + parent: 1 + type: Transform + - uid: 4093 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 4094 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + type: Transform + - uid: 4095 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + type: Transform + - uid: 4108 + components: + - pos: -10.5,31.5 + parent: 1 + type: Transform + - uid: 4109 + components: + - pos: -8.5,31.5 + parent: 1 + type: Transform + - uid: 4305 + components: + - pos: -9.5,29.5 + parent: 1 + type: Transform + - uid: 4885 + components: + - rot: 3.141592653589793 rad + pos: 40.5,33.5 + parent: 1 + type: Transform + - uid: 4888 + components: + - rot: 3.141592653589793 rad + pos: 39.5,33.5 + parent: 1 + type: Transform + - uid: 4889 + components: + - rot: 3.141592653589793 rad + pos: 39.5,31.5 + parent: 1 + type: Transform + - uid: 4890 + components: + - rot: 3.141592653589793 rad + pos: 40.5,31.5 + parent: 1 + type: Transform + - uid: 4891 + components: + - rot: 3.141592653589793 rad + pos: 41.5,31.5 + parent: 1 + type: Transform + - uid: 4892 + components: + - rot: 3.141592653589793 rad + pos: 44.5,31.5 + parent: 1 + type: Transform + - uid: 4893 + components: + - rot: 3.141592653589793 rad + pos: 45.5,31.5 + parent: 1 + type: Transform + - uid: 4894 + components: + - rot: 3.141592653589793 rad + pos: 46.5,31.5 + parent: 1 + type: Transform + - uid: 4956 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 1 + type: Transform + - uid: 4957 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 1 + type: Transform + - uid: 4958 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + type: Transform + - uid: 4964 + components: + - pos: -4.5,19.5 + parent: 1 + type: Transform + - uid: 5012 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 5031 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 5032 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 5035 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 5036 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 5383 + components: + - pos: -22.5,-1.5 + parent: 1 + type: Transform + - uid: 5665 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 1 + type: Transform + - uid: 5666 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 1 + type: Transform + - uid: 5947 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 5948 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 7445 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 1 + type: Transform + - uid: 7446 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 1 + type: Transform + - uid: 7710 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 1 + type: Transform + - uid: 7711 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 1 + type: Transform + - uid: 8288 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 1 + type: Transform + - uid: 8289 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 1 + type: Transform + - uid: 8290 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 1 + type: Transform + - uid: 8291 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 1 + type: Transform + - uid: 8294 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 1 + type: Transform + - uid: 8295 + components: + - pos: -35.5,-16.5 + parent: 1 + type: Transform + - uid: 8298 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 1 + type: Transform + - uid: 8300 + components: + - pos: -32.5,-17.5 + parent: 1 + type: Transform + - uid: 9015 + components: + - pos: -38.5,-9.5 + parent: 1 + type: Transform + - uid: 9634 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 1 + type: Transform + - uid: 12519 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-29.5 + parent: 1 + type: Transform + - uid: 12520 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 1 + type: Transform +- proto: TelecomServer + entities: + - uid: 3769 + components: + - pos: -0.5,53.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3770 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3771 + components: + - pos: -0.5,49.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3772 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3777 + components: + - pos: -0.5,55.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3778 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3779 + components: + - pos: 3.5,49.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3780 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3782 + components: + - pos: 3.5,55.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3783 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3784 + components: + - pos: 3.5,53.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3785 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3789 + components: + - pos: -0.5,51.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3790 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3792 + components: + - pos: 3.5,51.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3793 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TelecomServerCircuitboard + entities: + - uid: 4008 + components: + - pos: -2.3633666,50.634815 + parent: 1 + type: Transform + - uid: 4009 + components: + - pos: -2.5352416,50.43169 + parent: 1 + type: Transform +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 9560 + components: + - pos: -1.4709852,-34.50978 + parent: 1 + type: Transform +- proto: TintedWindow + entities: + - uid: 47 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: -13.5,6.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: -16.5,6.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -16.5,5.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -19.5,5.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: -19.5,6.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -13.5,5.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + type: Transform + - uid: 458 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 1 + type: Transform + - uid: 524 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 1 + type: Transform + - uid: 3447 + components: + - pos: -36.5,13.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 6403 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 1 + type: Transform + - uid: 6404 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 1 + type: Transform + - uid: 6405 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-27.5 + parent: 1 + type: Transform +- proto: ToolboxArtistic + entities: + - uid: 8226 + components: + - pos: -5.5007915,-20.744713 + parent: 1 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 3976 + components: + - pos: -3.4942179,46.73459 + parent: 1 + type: Transform + - uid: 6025 + components: + - pos: -12.505221,-1.1054368 + parent: 1 + type: Transform + - uid: 6800 + components: + - pos: 18.476976,-7.3507767 + parent: 1 + type: Transform + - uid: 7640 + components: + - pos: -41.523235,18.607943 + parent: 1 + type: Transform + - uid: 8220 + components: + - pos: -5.49676,-21.465288 + parent: 1 + type: Transform + - uid: 8825 + components: + - pos: -27.52112,-24.46938 + parent: 1 + type: Transform + - uid: 9520 + components: + - pos: -4.515568,-31.274857 + parent: 1 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 5062 + components: + - pos: -3.518496,32.609406 + parent: 1 + type: Transform + - uid: 7426 + components: + - pos: 4.483827,-26.624891 + parent: 1 + type: Transform + - uid: 7650 + components: + - pos: -39.493473,12.623091 + parent: 1 + type: Transform + - uid: 8225 + components: + - pos: -5.5007915,-20.963463 + parent: 1 + type: Transform + - uid: 9577 + components: + - pos: 44.490696,19.610844 + parent: 1 + type: Transform + - uid: 9578 + components: + - pos: 46.47507,1.6124096 + parent: 1 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 4130 + components: + - pos: -1.51228,25.6276 + parent: 1 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 3977 + components: + - pos: -3.4942179,46.51584 + parent: 1 + type: Transform + - uid: 5065 + components: + - pos: -3.518496,32.421906 + parent: 1 + type: Transform + - uid: 6024 + components: + - pos: -12.505221,-1.4335618 + parent: 1 + type: Transform + - uid: 6801 + components: + - pos: 18.476976,-7.6789017 + parent: 1 + type: Transform + - uid: 7425 + components: + - pos: 4.483827,-26.343641 + parent: 1 + type: Transform + - uid: 8221 + components: + - pos: -5.5007915,-21.244713 + parent: 1 + type: Transform +- proto: ToyAi + entities: + - uid: 3616 + components: + - pos: -6.5061026,52.63185 + parent: 1 + type: Transform +- proto: ToyFireRipley + entities: + - uid: 8259 + components: + - desc: A figure of a well known titan, and perhaps an old friend. + name: bt-7274 figurine + type: MetaData + - pos: -17.266478,-52.27695 + parent: 1 + type: Transform +- proto: ToyIan + entities: + - uid: 12483 + components: + - pos: -1.0943661,19.21257 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 7809 + components: + - pos: -1.5,-28.5 + parent: 1 + type: Transform +- proto: TrashBananaPeel + entities: + - uid: 7799 + components: + - pos: -9.558007,-30.972847 + parent: 1 + type: Transform + - uid: 7800 + components: + - pos: -9.354882,-30.879097 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 7429 + components: + - pos: 9.5,-27.5 + parent: 1 + type: Transform + - linkedPorts: + 1734: + - Left: Forward + - Right: Reverse + - Middle: Off + 1733: + - Left: Forward + - Right: Reverse + - Middle: Off + 1732: + - Left: Forward + - Right: Reverse + - Middle: Off + 1731: + - Left: Forward + - Right: Reverse + - Middle: Off + 1730: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 7430 + components: + - pos: 15.5,-27.5 + parent: 1 + type: Transform + - linkedPorts: + 1739: + - Left: Forward + - Right: Reverse + - Middle: Off + 1738: + - Left: Forward + - Right: Reverse + - Middle: Off + 1737: + - Left: Forward + - Right: Reverse + - Middle: Off + 1736: + - Left: Forward + - Right: Reverse + - Middle: Off + 1735: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 7431 + components: + - pos: 9.5,-22.5 + parent: 1 + type: Transform + - linkedPorts: + 1742: + - Left: Forward + - Right: Reverse + - Middle: Off + 1741: + - Left: Forward + - Right: Reverse + - Middle: Off + 1740: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 9199 + components: + - pos: -32.5,23.5 + parent: 1 + type: Transform + - linkedPorts: + 3569: + - Left: Forward + - Right: Reverse + - Middle: Off + 3568: + - Left: Forward + - Right: Reverse + - Middle: Off + 3570: + - Left: Forward + - Right: Reverse + - Middle: Off + 3567: + - Left: Forward + - Right: Reverse + - Middle: Off + 3566: + - Left: Forward + - Right: Reverse + - Middle: Off + 3565: + - Left: Forward + - Right: Reverse + - Middle: Off + 3564: + - Left: Forward + - Right: Reverse + - Middle: Off + 3563: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: UnfinishedMachineFrame + entities: + - uid: 1926 + components: + - pos: -26.5,7.5 + parent: 1 + type: Transform + - uid: 1927 + components: + - pos: -26.5,5.5 + parent: 1 + type: Transform +- proto: UniformPrinter + entities: + - uid: 4954 + components: + - pos: -1.5,21.5 + parent: 1 + type: Transform +- proto: UniformShortsRed + entities: + - uid: 8815 + components: + - pos: -43.7042,-16.640553 + parent: 1 + type: Transform + - uid: 8816 + components: + - pos: -43.438576,-16.624928 + parent: 1 + type: Transform +- proto: UniformShortsRedWithTop + entities: + - uid: 8817 + components: + - pos: -43.54795,-16.390553 + parent: 1 + type: Transform + - uid: 8818 + components: + - pos: -43.251076,-16.406178 + parent: 1 + type: Transform +- proto: UprightPianoInstrument + entities: + - uid: 8299 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 1 + type: Transform +- proto: Vaccinator + entities: + - uid: 5688 + components: + - pos: -14.5,21.5 + parent: 1 + type: Transform +- proto: VehicleKeyJanicart + entities: + - uid: 7660 + components: + - flags: InContainer + type: MetaData + - parent: 7659 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: VehicleKeySecway + entities: + - uid: 5321 + components: + - pos: 25.427599,10.5971575 + parent: 1 + type: Transform + - uid: 5322 + components: + - pos: 25.708849,10.6596575 + parent: 1 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 5952 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 7093 + components: + - flags: SessionSpecific + type: MetaData + - pos: 31.5,-18.5 + parent: 1 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 5949 + components: + - flags: SessionSpecific + type: MetaData + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 8293 + components: + - flags: SessionSpecific + type: MetaData + - pos: -27.5,-12.5 + parent: 1 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 1712 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,-23.5 + parent: 1 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 4953 + components: + - flags: SessionSpecific + type: MetaData + - pos: -2.5,21.5 + parent: 1 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 3478 + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,16.5 + parent: 1 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 5961 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,0.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 5962 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 5611 + components: + - flags: SessionSpecific + type: MetaData + - pos: -13.5,16.5 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 5617 + components: + - flags: SessionSpecific + type: MetaData + - pos: -10.5,13.5 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 4048 + components: + - flags: SessionSpecific + type: MetaData + - pos: -11.5,26.5 + parent: 1 + type: Transform + - uid: 7533 + components: + - flags: SessionSpecific + type: MetaData + - pos: -33.5,0.5 + parent: 1 + type: Transform + - uid: 7539 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,13.5 + parent: 1 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 7697 + components: + - flags: SessionSpecific + type: MetaData + - pos: -7.5,-24.5 + parent: 1 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 5359 + components: + - flags: SessionSpecific + type: MetaData + - pos: 28.5,6.5 + parent: 1 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 5964 + components: + - flags: SessionSpecific + type: MetaData + - pos: 2.5,3.5 + parent: 1 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 7184 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-3.5 + parent: 1 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 6556 + components: + - flags: SessionSpecific + type: MetaData + - pos: 16.5,-3.5 + parent: 1 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 5596 + components: + - flags: SessionSpecific + type: MetaData + - pos: -36.5,-7.5 + parent: 1 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 6011 + components: + - flags: SessionSpecific + type: MetaData + - pos: 5.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 7658 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 5334 + components: + - flags: SessionSpecific + type: MetaData + - pos: 33.5,8.5 + parent: 1 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 1911 + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,11.5 + parent: 1 + type: Transform + - uid: 5344 + components: + - flags: SessionSpecific + type: MetaData + - pos: 20.5,7.5 + parent: 1 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 1891 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,5.5 + parent: 1 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 6010 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 660 + components: + - flags: SessionSpecific + type: MetaData + - pos: -12.5,-15.5 + parent: 1 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 654 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,-15.5 + parent: 1 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 7291 + components: + - flags: SessionSpecific + type: MetaData + - pos: 18.5,-20.5 + parent: 1 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 3820 + components: + - flags: SessionSpecific + type: MetaData + - pos: -14.5,-0.5 + parent: 1 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 759 + components: + - flags: SessionSpecific + type: MetaData + - pos: 23.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 5335 + components: + - flags: SessionSpecific + type: MetaData + - pos: 33.5,9.5 + parent: 1 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 6007 + components: + - flags: SessionSpecific + type: MetaData + - pos: -0.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 4949 + components: + - flags: SessionSpecific + type: MetaData + - pos: 32.5,28.5 + parent: 1 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 9246 + components: + - flags: SessionSpecific + type: MetaData + - pos: 27.5,32.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 6994 + components: + - flags: SessionSpecific + type: MetaData + - pos: 34.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 4923 + components: + - flags: SessionSpecific + type: MetaData + - pos: 42.5,21.5 + parent: 1 + type: Transform + - uid: 6767 + components: + - flags: SessionSpecific + type: MetaData + - pos: 21.5,-8.5 + parent: 1 + type: Transform + - uid: 7292 + components: + - flags: SessionSpecific + type: MetaData + - pos: 19.5,-20.5 + parent: 1 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 7699 + components: + - flags: SessionSpecific + type: MetaData + - pos: -8.5,-24.5 + parent: 1 + type: Transform +- proto: VendingMachineVendomat + entities: + - uid: 7695 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,-22.5 + parent: 1 + type: Transform + - uid: 9519 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,-31.5 + parent: 1 + type: Transform +- proto: VendingMachineViroDrobe + entities: + - uid: 5691 + components: + - flags: SessionSpecific + type: MetaData + - pos: -17.5,21.5 + parent: 1 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 1912 + components: + - flags: SessionSpecific + type: MetaData + - rot: 1.5707963267948966 rad + pos: -21.5,15.5 + parent: 1 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 6779 + components: + - flags: SessionSpecific + type: MetaData + - pos: 15.5,-3.5 + parent: 1 + type: Transform + - uid: 7696 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,-21.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 106 + components: + - pos: 2.5,20.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 2.5,19.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 2.5,18.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 6.5,17.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 2.5,17.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: 6.5,18.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 6.5,19.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: 6.5,20.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -5.5,22.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 2.5,22.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 1.5,22.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 0.5,22.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -0.5,22.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -1.5,22.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -2.5,22.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -3.5,22.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -3.5,21.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: -4.5,22.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -3.5,19.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -3.5,18.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: -6.5,22.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: -6.5,21.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -6.5,20.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -6.5,19.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -6.5,18.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: -5.5,18.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -4.5,18.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -7.5,15.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: -8.5,15.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: -9.5,16.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: -9.5,17.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -10.5,12.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: -7.5,12.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -14.5,12.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -10.5,17.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: -11.5,17.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: -12.5,17.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: -13.5,17.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -14.5,17.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -14.5,13.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -17.5,16.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -18.5,17.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: -17.5,17.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -19.5,17.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -20.5,17.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -21.5,17.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -21.5,16.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -21.5,15.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: -21.5,14.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -21.5,13.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -21.5,12.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: -20.5,12.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -19.5,12.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: -18.5,12.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -17.5,12.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: -17.5,13.5 + parent: 1 + type: Transform + - uid: 225 + components: + - pos: -22.5,5.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -22.5,7.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: -22.5,4.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -22.5,6.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -27.5,5.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -27.5,4.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -27.5,7.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -27.5,6.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -22.5,8.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -27.5,8.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -24.5,4.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -25.5,4.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -26.5,4.5 + parent: 1 + type: Transform + - uid: 314 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 1 + type: Transform + - uid: 317 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,24.5 + parent: 1 + type: Transform + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,23.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,26.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 1 + type: Transform + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,25.5 + parent: 1 + type: Transform + - uid: 322 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 1 + type: Transform + - uid: 323 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 1 + type: Transform + - uid: 324 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,26.5 + parent: 1 + type: Transform + - uid: 325 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,26.5 + parent: 1 + type: Transform + - uid: 326 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 1 + type: Transform + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,26.5 + parent: 1 + type: Transform + - uid: 329 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 1 + type: Transform + - uid: 330 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,23.5 + parent: 1 + type: Transform + - uid: 331 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,32.5 + parent: 1 + type: Transform + - uid: 335 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 1 + type: Transform + - uid: 336 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,32.5 + parent: 1 + type: Transform + - uid: 337 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,31.5 + parent: 1 + type: Transform + - uid: 338 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,30.5 + parent: 1 + type: Transform + - uid: 339 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 1 + type: Transform + - uid: 340 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,28.5 + parent: 1 + type: Transform + - uid: 341 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 1 + type: Transform + - uid: 342 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,31.5 + parent: 1 + type: Transform + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 1 + type: Transform + - uid: 345 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,29.5 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,28.5 + parent: 1 + type: Transform + - uid: 347 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,26.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,26.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,26.5 + parent: 1 + type: Transform + - uid: 351 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 1 + type: Transform + - uid: 353 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 1 + type: Transform + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,29.5 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1 + type: Transform + - uid: 356 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,31.5 + parent: 1 + type: Transform + - uid: 357 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1 + type: Transform + - uid: 358 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 1 + type: Transform + - uid: 359 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 1 + type: Transform + - uid: 360 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,29.5 + parent: 1 + type: Transform + - uid: 361 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,32.5 + parent: 1 + type: Transform + - uid: 387 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,25.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,25.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: -18.5,30.5 + parent: 1 + type: Transform + - uid: 390 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,25.5 + parent: 1 + type: Transform + - uid: 391 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,25.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,25.5 + parent: 1 + type: Transform + - uid: 393 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,26.5 + parent: 1 + type: Transform + - uid: 394 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,27.5 + parent: 1 + type: Transform + - uid: 395 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,28.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,29.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -15.5,31.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,31.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,32.5 + parent: 1 + type: Transform + - uid: 402 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,29.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,29.5 + parent: 1 + type: Transform + - uid: 412 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,32.5 + parent: 1 + type: Transform + - uid: 413 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,32.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: 9.5,21.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: -16.5,31.5 + parent: 1 + type: Transform + - uid: 428 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -16.5,29.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -8.5,-19.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -16.5,32.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 39.5,20.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: -8.5,-21.5 + parent: 1 + type: Transform + - uid: 441 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,19.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 40.5,20.5 + parent: 1 + type: Transform + - uid: 460 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-6.5 + parent: 1 + type: Transform + - uid: 503 + components: + - rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 1 + type: Transform + - uid: 520 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-8.5 + parent: 1 + type: Transform + - uid: 525 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-8.5 + parent: 1 + type: Transform + - uid: 526 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: -24.5,0.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-0.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-7.5 + parent: 1 + type: Transform + - uid: 534 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 1 + type: Transform + - uid: 536 + components: + - rot: 3.141592653589793 rad + pos: -27.5,0.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-8.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 3.141592653589793 rad + pos: -28.5,0.5 + parent: 1 + type: Transform + - uid: 540 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-3.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-4.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 1 + type: Transform + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-4.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 1 + type: Transform + - uid: 550 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-8.5 + parent: 1 + type: Transform + - uid: 551 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 1 + type: Transform + - uid: 554 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-3.5 + parent: 1 + type: Transform + - uid: 555 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-5.5 + parent: 1 + type: Transform + - uid: 556 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-3.5 + parent: 1 + type: Transform + - uid: 560 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-4.5 + parent: 1 + type: Transform + - uid: 561 + components: + - rot: 3.141592653589793 rad + pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 562 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-3.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-7.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-8.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - uid: 567 + components: + - rot: 3.141592653589793 rad + pos: -19.5,0.5 + parent: 1 + type: Transform + - uid: 568 + components: + - rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 1 + type: Transform + - uid: 569 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 1 + type: Transform + - uid: 570 + components: + - rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 1 + type: Transform + - uid: 571 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 1 + type: Transform + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 1 + type: Transform + - uid: 573 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-7.5 + parent: 1 + type: Transform + - uid: 575 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-7.5 + parent: 1 + type: Transform + - uid: 577 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-7.5 + parent: 1 + type: Transform + - uid: 587 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-11.5 + parent: 1 + type: Transform + - uid: 588 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 1 + type: Transform + - uid: 590 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 1 + type: Transform + - uid: 591 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-11.5 + parent: 1 + type: Transform + - uid: 592 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 1 + type: Transform + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-12.5 + parent: 1 + type: Transform + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 1 + type: Transform + - uid: 603 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-15.5 + parent: 1 + type: Transform + - uid: 612 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 1 + type: Transform + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-9.5 + parent: 1 + type: Transform + - uid: 614 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 1 + type: Transform + - uid: 615 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 1 + type: Transform + - uid: 616 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-16.5 + parent: 1 + type: Transform + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-16.5 + parent: 1 + type: Transform + - uid: 618 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-16.5 + parent: 1 + type: Transform + - uid: 625 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 1 + type: Transform + - uid: 626 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 1 + type: Transform + - uid: 627 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + type: Transform + - uid: 628 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 1 + type: Transform + - uid: 629 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 1 + type: Transform + - uid: 630 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-4.5 + parent: 1 + type: Transform + - uid: 644 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,16.5 + parent: 1 + type: Transform + - uid: 670 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + type: Transform + - uid: 672 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 1 + type: Transform + - uid: 673 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + type: Transform + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 1 + type: Transform + - uid: 677 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 1 + type: Transform + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 680 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 1 + type: Transform + - uid: 681 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 1 + type: Transform + - uid: 682 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1 + type: Transform + - uid: 683 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1 + type: Transform + - uid: 684 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1 + type: Transform + - uid: 685 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 1 + type: Transform + - uid: 686 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 1 + type: Transform + - uid: 687 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + type: Transform + - uid: 688 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 689 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 690 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 691 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 692 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 693 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + type: Transform + - uid: 694 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,4.5 + parent: 1 + type: Transform + - uid: 695 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 1 + type: Transform + - uid: 696 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1 + type: Transform + - uid: 697 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + type: Transform + - uid: 698 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,4.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1 + type: Transform + - uid: 700 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 1 + type: Transform + - uid: 701 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,5.5 + parent: 1 + type: Transform + - uid: 702 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 1 + type: Transform + - uid: 729 + components: + - rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 1 + type: Transform + - uid: 730 + components: + - rot: 3.141592653589793 rad + pos: 24.5,6.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 1 + type: Transform + - uid: 732 + components: + - rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 1 + type: Transform + - uid: 733 + components: + - rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 1 + type: Transform + - uid: 735 + components: + - rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 + type: Transform + - uid: 736 + components: + - rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 1 + type: Transform + - uid: 748 + components: + - rot: 3.141592653589793 rad + pos: 18.5,16.5 + parent: 1 + type: Transform + - uid: 749 + components: + - rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 1 + type: Transform + - uid: 750 + components: + - rot: 3.141592653589793 rad + pos: 20.5,16.5 + parent: 1 + type: Transform + - uid: 751 + components: + - rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 1 + type: Transform + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 1 + type: Transform + - uid: 753 + components: + - pos: 24.5,17.5 + parent: 1 + type: Transform + - uid: 754 + components: + - rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 1 + type: Transform + - uid: 755 + components: + - rot: 3.141592653589793 rad + pos: 24.5,14.5 + parent: 1 + type: Transform + - uid: 756 + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 1 + type: Transform + - uid: 758 + components: + - rot: 3.141592653589793 rad + pos: 24.5,11.5 + parent: 1 + type: Transform + - uid: 783 + components: + - pos: 25.5,15.5 + parent: 1 + type: Transform + - uid: 787 + components: + - pos: 26.5,15.5 + parent: 1 + type: Transform + - uid: 788 + components: + - pos: 27.5,15.5 + parent: 1 + type: Transform + - uid: 789 + components: + - pos: 28.5,15.5 + parent: 1 + type: Transform + - uid: 790 + components: + - pos: 29.5,15.5 + parent: 1 + type: Transform + - uid: 791 + components: + - pos: 30.5,15.5 + parent: 1 + type: Transform + - uid: 793 + components: + - pos: 30.5,12.5 + parent: 1 + type: Transform + - uid: 795 + components: + - pos: 30.5,11.5 + parent: 1 + type: Transform + - uid: 796 + components: + - pos: 29.5,11.5 + parent: 1 + type: Transform + - uid: 797 + components: + - pos: 28.5,11.5 + parent: 1 + type: Transform + - uid: 799 + components: + - pos: 25.5,11.5 + parent: 1 + type: Transform + - uid: 800 + components: + - pos: 25.5,7.5 + parent: 1 + type: Transform + - uid: 801 + components: + - pos: 27.5,7.5 + parent: 1 + type: Transform + - uid: 802 + components: + - pos: 28.5,7.5 + parent: 1 + type: Transform + - uid: 803 + components: + - pos: 29.5,7.5 + parent: 1 + type: Transform + - uid: 804 + components: + - pos: 29.5,6.5 + parent: 1 + type: Transform + - uid: 805 + components: + - pos: 29.5,5.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: 29.5,4.5 + parent: 1 + type: Transform + - uid: 807 + components: + - pos: 28.5,4.5 + parent: 1 + type: Transform + - uid: 808 + components: + - pos: 27.5,4.5 + parent: 1 + type: Transform + - uid: 809 + components: + - pos: 26.5,4.5 + parent: 1 + type: Transform + - uid: 810 + components: + - pos: 25.5,4.5 + parent: 1 + type: Transform + - uid: 811 + components: + - pos: 30.5,7.5 + parent: 1 + type: Transform + - uid: 812 + components: + - pos: 31.5,7.5 + parent: 1 + type: Transform + - uid: 814 + components: + - pos: 33.5,7.5 + parent: 1 + type: Transform + - uid: 819 + components: + - pos: 34.5,7.5 + parent: 1 + type: Transform + - uid: 820 + components: + - pos: 34.5,8.5 + parent: 1 + type: Transform + - uid: 821 + components: + - pos: 34.5,9.5 + parent: 1 + type: Transform + - uid: 822 + components: + - pos: 34.5,10.5 + parent: 1 + type: Transform + - uid: 823 + components: + - pos: 35.5,9.5 + parent: 1 + type: Transform + - uid: 824 + components: + - pos: 34.5,12.5 + parent: 1 + type: Transform + - uid: 825 + components: + - pos: 34.5,13.5 + parent: 1 + type: Transform + - uid: 826 + components: + - pos: 34.5,14.5 + parent: 1 + type: Transform + - uid: 827 + components: + - pos: 34.5,15.5 + parent: 1 + type: Transform + - uid: 828 + components: + - pos: 35.5,8.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: 36.5,9.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: 36.5,8.5 + parent: 1 + type: Transform + - uid: 831 + components: + - pos: 37.5,9.5 + parent: 1 + type: Transform + - uid: 832 + components: + - pos: 37.5,8.5 + parent: 1 + type: Transform + - uid: 833 + components: + - pos: 38.5,8.5 + parent: 1 + type: Transform + - uid: 834 + components: + - pos: 38.5,9.5 + parent: 1 + type: Transform + - uid: 835 + components: + - pos: 40.5,15.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: 40.5,14.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: 40.5,13.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 40.5,12.5 + parent: 1 + type: Transform + - uid: 839 + components: + - pos: 38.5,14.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: 38.5,15.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: 39.5,8.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: 39.5,9.5 + parent: 1 + type: Transform + - uid: 843 + components: + - pos: 39.5,10.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: 39.5,11.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: 39.5,12.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 39.5,13.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: 39.5,14.5 + parent: 1 + type: Transform + - uid: 848 + components: + - pos: 39.5,15.5 + parent: 1 + type: Transform + - uid: 849 + components: + - pos: 37.5,14.5 + parent: 1 + type: Transform + - uid: 850 + components: + - pos: 37.5,15.5 + parent: 1 + type: Transform + - uid: 851 + components: + - pos: 36.5,14.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: 36.5,15.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 35.5,14.5 + parent: 1 + type: Transform + - uid: 854 + components: + - pos: 35.5,15.5 + parent: 1 + type: Transform + - uid: 855 + components: + - pos: 30.5,16.5 + parent: 1 + type: Transform + - uid: 856 + components: + - pos: 30.5,18.5 + parent: 1 + type: Transform + - uid: 857 + components: + - pos: 30.5,19.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: 29.5,19.5 + parent: 1 + type: Transform + - uid: 859 + components: + - pos: 28.5,19.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: 27.5,19.5 + parent: 1 + type: Transform + - uid: 861 + components: + - pos: 26.5,19.5 + parent: 1 + type: Transform + - uid: 862 + components: + - pos: 26.5,18.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 26.5,17.5 + parent: 1 + type: Transform + - uid: 864 + components: + - pos: 26.5,16.5 + parent: 1 + type: Transform + - uid: 865 + components: + - pos: 34.5,16.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 34.5,17.5 + parent: 1 + type: Transform + - uid: 867 + components: + - pos: 34.5,18.5 + parent: 1 + type: Transform + - uid: 868 + components: + - pos: 34.5,19.5 + parent: 1 + type: Transform + - uid: 870 + components: + - pos: 24.5,16.5 + parent: 1 + type: Transform + - uid: 872 + components: + - pos: 40.5,11.5 + parent: 1 + type: Transform + - uid: 873 + components: + - pos: 40.5,10.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 40.5,9.5 + parent: 1 + type: Transform + - uid: 875 + components: + - pos: 40.5,8.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 35.5,10.5 + parent: 1 + type: Transform + - uid: 877 + components: + - pos: 35.5,12.5 + parent: 1 + type: Transform + - uid: 878 + components: + - pos: 35.5,13.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 31.5,19.5 + parent: 1 + type: Transform + - uid: 888 + components: + - pos: 34.5,22.5 + parent: 1 + type: Transform + - uid: 889 + components: + - pos: 35.5,19.5 + parent: 1 + type: Transform + - uid: 890 + components: + - pos: 30.5,22.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 30.5,23.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 29.5,22.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 29.5,23.5 + parent: 1 + type: Transform + - uid: 894 + components: + - pos: 28.5,22.5 + parent: 1 + type: Transform + - uid: 895 + components: + - pos: 28.5,23.5 + parent: 1 + type: Transform + - uid: 896 + components: + - pos: 27.5,22.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: 27.5,23.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 26.5,22.5 + parent: 1 + type: Transform + - uid: 899 + components: + - pos: 26.5,23.5 + parent: 1 + type: Transform + - uid: 900 + components: + - pos: 25.5,22.5 + parent: 1 + type: Transform + - uid: 901 + components: + - pos: 25.5,23.5 + parent: 1 + type: Transform + - uid: 902 + components: + - pos: 24.5,22.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: 24.5,23.5 + parent: 1 + type: Transform + - uid: 904 + components: + - pos: 23.5,22.5 + parent: 1 + type: Transform + - uid: 905 + components: + - pos: 23.5,23.5 + parent: 1 + type: Transform + - uid: 906 + components: + - pos: 23.5,24.5 + parent: 1 + type: Transform + - uid: 907 + components: + - pos: 23.5,25.5 + parent: 1 + type: Transform + - uid: 908 + components: + - pos: 23.5,26.5 + parent: 1 + type: Transform + - uid: 909 + components: + - pos: 23.5,27.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: 23.5,28.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: 23.5,29.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: 22.5,22.5 + parent: 1 + type: Transform + - uid: 913 + components: + - pos: 22.5,23.5 + parent: 1 + type: Transform + - uid: 914 + components: + - pos: 22.5,24.5 + parent: 1 + type: Transform + - uid: 915 + components: + - pos: 22.5,25.5 + parent: 1 + type: Transform + - uid: 916 + components: + - pos: 22.5,26.5 + parent: 1 + type: Transform + - uid: 917 + components: + - pos: 22.5,27.5 + parent: 1 + type: Transform + - uid: 918 + components: + - pos: 22.5,28.5 + parent: 1 + type: Transform + - uid: 919 + components: + - pos: 22.5,29.5 + parent: 1 + type: Transform + - uid: 920 + components: + - pos: 24.5,29.5 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: 25.5,29.5 + parent: 1 + type: Transform + - uid: 922 + components: + - pos: 26.5,29.5 + parent: 1 + type: Transform + - uid: 923 + components: + - pos: 27.5,29.5 + parent: 1 + type: Transform + - uid: 924 + components: + - pos: 33.5,29.5 + parent: 1 + type: Transform + - uid: 925 + components: + - pos: 34.5,29.5 + parent: 1 + type: Transform + - uid: 927 + components: + - pos: 34.5,24.5 + parent: 1 + type: Transform + - uid: 928 + components: + - pos: 34.5,25.5 + parent: 1 + type: Transform + - uid: 929 + components: + - pos: 34.5,26.5 + parent: 1 + type: Transform + - uid: 930 + components: + - pos: 34.5,27.5 + parent: 1 + type: Transform + - uid: 931 + components: + - pos: 34.5,28.5 + parent: 1 + type: Transform + - uid: 932 + components: + - pos: 35.5,23.5 + parent: 1 + type: Transform + - uid: 933 + components: + - pos: 35.5,24.5 + parent: 1 + type: Transform + - uid: 934 + components: + - pos: 35.5,25.5 + parent: 1 + type: Transform + - uid: 935 + components: + - pos: 35.5,26.5 + parent: 1 + type: Transform + - uid: 936 + components: + - pos: 35.5,27.5 + parent: 1 + type: Transform + - uid: 937 + components: + - pos: 35.5,28.5 + parent: 1 + type: Transform + - uid: 938 + components: + - pos: 35.5,29.5 + parent: 1 + type: Transform + - uid: 939 + components: + - pos: 35.5,22.5 + parent: 1 + type: Transform + - uid: 940 + components: + - pos: 21.5,19.5 + parent: 1 + type: Transform + - uid: 941 + components: + - pos: 21.5,20.5 + parent: 1 + type: Transform + - uid: 942 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 1 + type: Transform + - uid: 943 + components: + - pos: 24.5,21.5 + parent: 1 + type: Transform + - uid: 944 + components: + - pos: 24.5,20.5 + parent: 1 + type: Transform + - uid: 945 + components: + - pos: 24.5,26.5 + parent: 1 + type: Transform + - uid: 946 + components: + - pos: 25.5,26.5 + parent: 1 + type: Transform + - uid: 947 + components: + - pos: 26.5,26.5 + parent: 1 + type: Transform + - uid: 948 + components: + - pos: 26.5,24.5 + parent: 1 + type: Transform + - uid: 950 + components: + - pos: 24.5,19.5 + parent: 1 + type: Transform + - uid: 951 + components: + - pos: 21.5,21.5 + parent: 1 + type: Transform + - uid: 952 + components: + - pos: 21.5,22.5 + parent: 1 + type: Transform + - uid: 953 + components: + - pos: 35.5,30.5 + parent: 1 + type: Transform + - uid: 954 + components: + - pos: 35.5,31.5 + parent: 1 + type: Transform + - uid: 955 + components: + - pos: 34.5,31.5 + parent: 1 + type: Transform + - uid: 956 + components: + - pos: 33.5,31.5 + parent: 1 + type: Transform + - uid: 957 + components: + - pos: 32.5,31.5 + parent: 1 + type: Transform + - uid: 958 + components: + - pos: 31.5,31.5 + parent: 1 + type: Transform + - uid: 959 + components: + - pos: 30.5,31.5 + parent: 1 + type: Transform + - uid: 961 + components: + - pos: 29.5,31.5 + parent: 1 + type: Transform + - uid: 962 + components: + - pos: 23.5,31.5 + parent: 1 + type: Transform + - uid: 963 + components: + - pos: 22.5,31.5 + parent: 1 + type: Transform + - uid: 964 + components: + - pos: 22.5,30.5 + parent: 1 + type: Transform + - uid: 984 + components: + - pos: 31.5,22.5 + parent: 1 + type: Transform + - uid: 1059 + components: + - pos: 15.5,-15.5 + parent: 1 + type: Transform + - uid: 1061 + components: + - pos: 15.5,-13.5 + parent: 1 + type: Transform + - uid: 1062 + components: + - pos: 15.5,-14.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: 15.5,-16.5 + parent: 1 + type: Transform + - uid: 1064 + components: + - pos: 15.5,-12.5 + parent: 1 + type: Transform + - uid: 1066 + components: + - pos: 16.5,-16.5 + parent: 1 + type: Transform + - uid: 1067 + components: + - pos: 17.5,-16.5 + parent: 1 + type: Transform + - uid: 1068 + components: + - pos: 18.5,-16.5 + parent: 1 + type: Transform + - uid: 1069 + components: + - pos: 19.5,-16.5 + parent: 1 + type: Transform + - uid: 1070 + components: + - pos: 20.5,-16.5 + parent: 1 + type: Transform + - uid: 1071 + components: + - pos: 21.5,-16.5 + parent: 1 + type: Transform + - uid: 1073 + components: + - pos: 21.5,-14.5 + parent: 1 + type: Transform + - uid: 1074 + components: + - pos: 21.5,-13.5 + parent: 1 + type: Transform + - uid: 1075 + components: + - pos: 21.5,-12.5 + parent: 1 + type: Transform + - uid: 1076 + components: + - pos: 17.5,-12.5 + parent: 1 + type: Transform + - uid: 1093 + components: + - pos: 24.5,-2.5 + parent: 1 + type: Transform + - uid: 1094 + components: + - pos: 29.5,-2.5 + parent: 1 + type: Transform + - uid: 1095 + components: + - pos: 30.5,-2.5 + parent: 1 + type: Transform + - uid: 1096 + components: + - pos: 22.5,-16.5 + parent: 1 + type: Transform + - uid: 1098 + components: + - pos: 27.5,-2.5 + parent: 1 + type: Transform + - uid: 1102 + components: + - pos: 27.5,-13.5 + parent: 1 + type: Transform + - uid: 1103 + components: + - pos: 27.5,-14.5 + parent: 1 + type: Transform + - uid: 1104 + components: + - pos: 26.5,-12.5 + parent: 1 + type: Transform + - uid: 1105 + components: + - pos: 27.5,-12.5 + parent: 1 + type: Transform + - uid: 1107 + components: + - pos: 22.5,-12.5 + parent: 1 + type: Transform + - uid: 1108 + components: + - pos: 27.5,-15.5 + parent: 1 + type: Transform + - uid: 1109 + components: + - pos: 27.5,-16.5 + parent: 1 + type: Transform + - uid: 1110 + components: + - pos: 24.5,-12.5 + parent: 1 + type: Transform + - uid: 1111 + components: + - pos: 28.5,-2.5 + parent: 1 + type: Transform + - uid: 1112 + components: + - pos: 24.5,-16.5 + parent: 1 + type: Transform + - uid: 1113 + components: + - pos: 25.5,-2.5 + parent: 1 + type: Transform + - uid: 1114 + components: + - pos: 26.5,-16.5 + parent: 1 + type: Transform + - uid: 1116 + components: + - pos: 26.5,-2.5 + parent: 1 + type: Transform + - uid: 1117 + components: + - pos: 23.5,-16.5 + parent: 1 + type: Transform + - uid: 1177 + components: + - pos: 24.5,-9.5 + parent: 1 + type: Transform + - uid: 1198 + components: + - pos: 30.5,-3.5 + parent: 1 + type: Transform + - uid: 1199 + components: + - pos: 30.5,-4.5 + parent: 1 + type: Transform + - uid: 1200 + components: + - pos: 30.5,-5.5 + parent: 1 + type: Transform + - uid: 1201 + components: + - pos: 30.5,-6.5 + parent: 1 + type: Transform + - uid: 1202 + components: + - pos: 30.5,-7.5 + parent: 1 + type: Transform + - uid: 1203 + components: + - pos: 30.5,-8.5 + parent: 1 + type: Transform + - uid: 1204 + components: + - pos: 30.5,-9.5 + parent: 1 + type: Transform + - uid: 1205 + components: + - pos: 28.5,-12.5 + parent: 1 + type: Transform + - uid: 1206 + components: + - pos: 29.5,-12.5 + parent: 1 + type: Transform + - uid: 1207 + components: + - pos: 30.5,-12.5 + parent: 1 + type: Transform + - uid: 1208 + components: + - pos: 32.5,-9.5 + parent: 1 + type: Transform + - uid: 1209 + components: + - pos: 33.5,-9.5 + parent: 1 + type: Transform + - uid: 1210 + components: + - pos: 33.5,-8.5 + parent: 1 + type: Transform + - uid: 1211 + components: + - pos: 33.5,-7.5 + parent: 1 + type: Transform + - uid: 1212 + components: + - pos: 33.5,-6.5 + parent: 1 + type: Transform + - uid: 1213 + components: + - pos: 33.5,-5.5 + parent: 1 + type: Transform + - uid: 1214 + components: + - pos: 33.5,-4.5 + parent: 1 + type: Transform + - uid: 1215 + components: + - pos: 33.5,-3.5 + parent: 1 + type: Transform + - uid: 1216 + components: + - pos: 33.5,-2.5 + parent: 1 + type: Transform + - uid: 1217 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 1 + type: Transform + - uid: 1218 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 1 + type: Transform + - uid: 1219 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 1 + type: Transform + - uid: 1220 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 1 + type: Transform + - uid: 1223 + components: + - pos: 40.5,-2.5 + parent: 1 + type: Transform + - uid: 1224 + components: + - pos: 32.5,-12.5 + parent: 1 + type: Transform + - uid: 1225 + components: + - pos: 33.5,-12.5 + parent: 1 + type: Transform + - uid: 1226 + components: + - pos: 33.5,-13.5 + parent: 1 + type: Transform + - uid: 1227 + components: + - pos: 33.5,-14.5 + parent: 1 + type: Transform + - uid: 1228 + components: + - pos: 33.5,-15.5 + parent: 1 + type: Transform + - uid: 1229 + components: + - pos: 41.5,-2.5 + parent: 1 + type: Transform + - uid: 1241 + components: + - pos: 38.5,19.5 + parent: 1 + type: Transform + - uid: 1244 + components: + - pos: 42.5,-2.5 + parent: 1 + type: Transform + - uid: 1245 + components: + - pos: 43.5,-2.5 + parent: 1 + type: Transform + - uid: 1246 + components: + - pos: 44.5,-2.5 + parent: 1 + type: Transform + - uid: 1247 + components: + - pos: 45.5,-2.5 + parent: 1 + type: Transform + - uid: 1250 + components: + - pos: 45.5,0.5 + parent: 1 + type: Transform + - uid: 1251 + components: + - pos: 45.5,-0.5 + parent: 1 + type: Transform + - uid: 1252 + components: + - pos: 45.5,-1.5 + parent: 1 + type: Transform + - uid: 1272 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,11.5 + parent: 1 + type: Transform + - uid: 1276 + components: + - pos: 47.5,4.5 + parent: 1 + type: Transform + - uid: 1279 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,13.5 + parent: 1 + type: Transform + - uid: 1282 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,4.5 + parent: 1 + type: Transform + - uid: 1283 + components: + - pos: 47.5,13.5 + parent: 1 + type: Transform + - uid: 1286 + components: + - pos: 47.5,6.5 + parent: 1 + type: Transform + - uid: 1288 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,6.5 + parent: 1 + type: Transform + - uid: 1290 + components: + - pos: 47.5,11.5 + parent: 1 + type: Transform + - uid: 1294 + components: + - pos: 42.5,20.5 + parent: 1 + type: Transform + - uid: 1297 + components: + - pos: 47.5,18.5 + parent: 1 + type: Transform + - uid: 1299 + components: + - pos: 43.5,20.5 + parent: 1 + type: Transform + - uid: 1301 + components: + - pos: 32.5,-15.5 + parent: 1 + type: Transform + - uid: 1302 + components: + - pos: 31.5,-15.5 + parent: 1 + type: Transform + - uid: 1303 + components: + - pos: 30.5,-15.5 + parent: 1 + type: Transform + - uid: 1304 + components: + - pos: 30.5,-16.5 + parent: 1 + type: Transform + - uid: 1306 + components: + - pos: 30.5,-18.5 + parent: 1 + type: Transform + - uid: 1307 + components: + - pos: 30.5,-19.5 + parent: 1 + type: Transform + - uid: 1353 + components: + - pos: 33.5,-19.5 + parent: 1 + type: Transform + - uid: 1360 + components: + - pos: 33.5,-21.5 + parent: 1 + type: Transform + - uid: 1361 + components: + - pos: 33.5,-24.5 + parent: 1 + type: Transform + - uid: 1362 + components: + - pos: 34.5,-24.5 + parent: 1 + type: Transform + - uid: 1364 + components: + - pos: 36.5,-24.5 + parent: 1 + type: Transform + - uid: 1365 + components: + - pos: 37.5,-24.5 + parent: 1 + type: Transform + - uid: 1366 + components: + - pos: 37.5,-21.5 + parent: 1 + type: Transform + - uid: 1380 + components: + - pos: 42.5,-18.5 + parent: 1 + type: Transform + - uid: 1381 + components: + - pos: 43.5,-18.5 + parent: 1 + type: Transform + - uid: 1382 + components: + - pos: 44.5,-18.5 + parent: 1 + type: Transform + - uid: 1383 + components: + - pos: 45.5,-18.5 + parent: 1 + type: Transform + - uid: 1384 + components: + - pos: 46.5,-18.5 + parent: 1 + type: Transform + - uid: 1385 + components: + - pos: 46.5,-17.5 + parent: 1 + type: Transform + - uid: 1386 + components: + - pos: 46.5,-16.5 + parent: 1 + type: Transform + - uid: 1387 + components: + - pos: 46.5,-15.5 + parent: 1 + type: Transform + - uid: 1388 + components: + - pos: 46.5,-14.5 + parent: 1 + type: Transform + - uid: 1389 + components: + - pos: 46.5,-13.5 + parent: 1 + type: Transform + - uid: 1390 + components: + - pos: 46.5,-12.5 + parent: 1 + type: Transform + - uid: 1391 + components: + - pos: 46.5,-11.5 + parent: 1 + type: Transform + - uid: 1392 + components: + - pos: 46.5,-10.5 + parent: 1 + type: Transform + - uid: 1393 + components: + - pos: 46.5,-9.5 + parent: 1 + type: Transform + - uid: 1394 + components: + - pos: 46.5,-8.5 + parent: 1 + type: Transform + - uid: 1395 + components: + - pos: 46.5,-7.5 + parent: 1 + type: Transform + - uid: 1396 + components: + - pos: 46.5,-6.5 + parent: 1 + type: Transform + - uid: 1397 + components: + - pos: 46.5,-5.5 + parent: 1 + type: Transform + - uid: 1398 + components: + - pos: 46.5,-4.5 + parent: 1 + type: Transform + - uid: 1399 + components: + - pos: 45.5,-4.5 + parent: 1 + type: Transform + - uid: 1400 + components: + - pos: 44.5,-4.5 + parent: 1 + type: Transform + - uid: 1401 + components: + - pos: 43.5,-4.5 + parent: 1 + type: Transform + - uid: 1402 + components: + - pos: 42.5,-4.5 + parent: 1 + type: Transform + - uid: 1403 + components: + - pos: 42.5,-6.5 + parent: 1 + type: Transform + - uid: 1404 + components: + - pos: 43.5,-6.5 + parent: 1 + type: Transform + - uid: 1405 + components: + - pos: 44.5,-6.5 + parent: 1 + type: Transform + - uid: 1406 + components: + - pos: 45.5,-6.5 + parent: 1 + type: Transform + - uid: 1407 + components: + - pos: 45.5,-8.5 + parent: 1 + type: Transform + - uid: 1408 + components: + - pos: 44.5,-8.5 + parent: 1 + type: Transform + - uid: 1409 + components: + - pos: 43.5,-8.5 + parent: 1 + type: Transform + - uid: 1410 + components: + - pos: 42.5,-8.5 + parent: 1 + type: Transform + - uid: 1411 + components: + - pos: 42.5,-10.5 + parent: 1 + type: Transform + - uid: 1412 + components: + - pos: 43.5,-10.5 + parent: 1 + type: Transform + - uid: 1413 + components: + - pos: 44.5,-10.5 + parent: 1 + type: Transform + - uid: 1414 + components: + - pos: 45.5,-10.5 + parent: 1 + type: Transform + - uid: 1415 + components: + - pos: 45.5,-12.5 + parent: 1 + type: Transform + - uid: 1416 + components: + - pos: 44.5,-12.5 + parent: 1 + type: Transform + - uid: 1417 + components: + - pos: 43.5,-12.5 + parent: 1 + type: Transform + - uid: 1418 + components: + - pos: 42.5,-12.5 + parent: 1 + type: Transform + - uid: 1419 + components: + - pos: 42.5,-14.5 + parent: 1 + type: Transform + - uid: 1420 + components: + - pos: 43.5,-14.5 + parent: 1 + type: Transform + - uid: 1421 + components: + - pos: 44.5,-14.5 + parent: 1 + type: Transform + - uid: 1422 + components: + - pos: 45.5,-14.5 + parent: 1 + type: Transform + - uid: 1423 + components: + - pos: 45.5,-16.5 + parent: 1 + type: Transform + - uid: 1424 + components: + - pos: 44.5,-16.5 + parent: 1 + type: Transform + - uid: 1425 + components: + - pos: 43.5,-16.5 + parent: 1 + type: Transform + - uid: 1426 + components: + - pos: 42.5,-16.5 + parent: 1 + type: Transform + - uid: 1441 + components: + - pos: 6.5,-13.5 + parent: 1 + type: Transform + - uid: 1442 + components: + - pos: 5.5,-13.5 + parent: 1 + type: Transform + - uid: 1443 + components: + - pos: 4.5,-13.5 + parent: 1 + type: Transform + - uid: 1444 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 1445 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 1446 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 1447 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 1448 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 1449 + components: + - pos: 7.5,-13.5 + parent: 1 + type: Transform + - uid: 1450 + components: + - pos: 7.5,-14.5 + parent: 1 + type: Transform + - uid: 1451 + components: + - pos: 7.5,-15.5 + parent: 1 + type: Transform + - uid: 1452 + components: + - pos: 7.5,-16.5 + parent: 1 + type: Transform + - uid: 1456 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 1457 + components: + - pos: 4.5,-18.5 + parent: 1 + type: Transform + - uid: 1459 + components: + - pos: 6.5,-18.5 + parent: 1 + type: Transform + - uid: 1460 + components: + - pos: 7.5,-18.5 + parent: 1 + type: Transform + - uid: 1477 + components: + - pos: 27.5,-19.5 + parent: 1 + type: Transform + - uid: 1478 + components: + - pos: 26.5,-19.5 + parent: 1 + type: Transform + - uid: 1479 + components: + - pos: 23.5,-20.5 + parent: 1 + type: Transform + - uid: 1480 + components: + - pos: 24.5,-19.5 + parent: 1 + type: Transform + - uid: 1481 + components: + - pos: 23.5,-19.5 + parent: 1 + type: Transform + - uid: 1482 + components: + - pos: 28.5,-19.5 + parent: 1 + type: Transform + - uid: 1483 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-21.5 + parent: 1 + type: Transform + - uid: 1484 + components: + - pos: 23.5,-21.5 + parent: 1 + type: Transform + - uid: 1485 + components: + - pos: 23.5,-22.5 + parent: 1 + type: Transform + - uid: 1486 + components: + - pos: 24.5,-22.5 + parent: 1 + type: Transform + - uid: 1487 + components: + - pos: 25.5,-22.5 + parent: 1 + type: Transform + - uid: 1488 + components: + - pos: 26.5,-22.5 + parent: 1 + type: Transform + - uid: 1489 + components: + - pos: 27.5,-22.5 + parent: 1 + type: Transform + - uid: 1490 + components: + - pos: 27.5,-21.5 + parent: 1 + type: Transform + - uid: 1491 + components: + - pos: 27.5,-20.5 + parent: 1 + type: Transform + - uid: 1506 + components: + - pos: 5.5,-28.5 + parent: 1 + type: Transform + - uid: 1507 + components: + - pos: 4.5,-28.5 + parent: 1 + type: Transform + - uid: 1511 + components: + - pos: 3.5,-28.5 + parent: 1 + type: Transform + - uid: 1516 + components: + - pos: 7.5,-28.5 + parent: 1 + type: Transform + - uid: 1520 + components: + - pos: 6.5,-28.5 + parent: 1 + type: Transform + - uid: 1525 + components: + - pos: 23.5,-25.5 + parent: 1 + type: Transform + - uid: 1526 + components: + - pos: 23.5,-26.5 + parent: 1 + type: Transform + - uid: 1527 + components: + - pos: 23.5,-27.5 + parent: 1 + type: Transform + - uid: 1532 + components: + - pos: 23.5,-28.5 + parent: 1 + type: Transform + - uid: 1533 + components: + - pos: 22.5,-28.5 + parent: 1 + type: Transform + - uid: 1537 + components: + - pos: 18.5,-28.5 + parent: 1 + type: Transform + - uid: 1538 + components: + - pos: 17.5,-28.5 + parent: 1 + type: Transform + - uid: 1539 + components: + - pos: 16.5,-28.5 + parent: 1 + type: Transform + - uid: 1543 + components: + - pos: 9.5,-31.5 + parent: 1 + type: Transform + - uid: 1544 + components: + - pos: 15.5,-31.5 + parent: 1 + type: Transform + - uid: 1545 + components: + - pos: 9.5,-28.5 + parent: 1 + type: Transform + - uid: 1546 + components: + - pos: 15.5,-28.5 + parent: 1 + type: Transform + - uid: 1547 + components: + - pos: 8.5,-28.5 + parent: 1 + type: Transform + - uid: 1560 + components: + - pos: 27.5,-25.5 + parent: 1 + type: Transform + - uid: 1591 + components: + - pos: -6.5,-19.5 + parent: 1 + type: Transform + - uid: 1592 + components: + - pos: -6.5,-20.5 + parent: 1 + type: Transform + - uid: 1593 + components: + - pos: -6.5,-23.5 + parent: 1 + type: Transform + - uid: 1594 + components: + - pos: -6.5,-21.5 + parent: 1 + type: Transform + - uid: 1595 + components: + - pos: -6.5,-22.5 + parent: 1 + type: Transform + - uid: 1597 + components: + - pos: 9.5,20.5 + parent: 1 + type: Transform + - uid: 1601 + components: + - pos: -8.5,-23.5 + parent: 1 + type: Transform + - uid: 1602 + components: + - pos: -7.5,-23.5 + parent: 1 + type: Transform + - uid: 1603 + components: + - pos: -8.5,-20.5 + parent: 1 + type: Transform + - uid: 1605 + components: + - pos: -0.5,-30.5 + parent: 1 + type: Transform + - uid: 1607 + components: + - pos: -5.5,-31.5 + parent: 1 + type: Transform + - uid: 1609 + components: + - pos: -5.5,-33.5 + parent: 1 + type: Transform + - uid: 1610 + components: + - pos: -0.5,-34.5 + parent: 1 + type: Transform + - uid: 1613 + components: + - pos: -0.5,-33.5 + parent: 1 + type: Transform + - uid: 1615 + components: + - pos: -0.5,-35.5 + parent: 1 + type: Transform + - uid: 1616 + components: + - pos: -1.5,-35.5 + parent: 1 + type: Transform + - uid: 1620 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 1 + type: Transform + - uid: 1634 + components: + - pos: -1.5,-30.5 + parent: 1 + type: Transform + - uid: 1636 + components: + - pos: -3.5,-30.5 + parent: 1 + type: Transform + - uid: 1637 + components: + - pos: -4.5,-30.5 + parent: 1 + type: Transform + - uid: 1638 + components: + - pos: -5.5,-30.5 + parent: 1 + type: Transform + - uid: 1640 + components: + - pos: -7.5,-30.5 + parent: 1 + type: Transform + - uid: 1641 + components: + - pos: -8.5,-30.5 + parent: 1 + type: Transform + - uid: 1642 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 1 + type: Transform + - uid: 1643 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 1 + type: Transform + - uid: 1652 + components: + - pos: -0.5,-31.5 + parent: 1 + type: Transform + - uid: 1653 + components: + - pos: -6.5,-30.5 + parent: 1 + type: Transform + - uid: 1655 + components: + - pos: -2.5,-30.5 + parent: 1 + type: Transform + - uid: 1656 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 1 + type: Transform + - uid: 1657 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 1 + type: Transform + - uid: 1658 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 1 + type: Transform + - uid: 1661 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 1 + type: Transform + - uid: 1662 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 1 + type: Transform + - uid: 1663 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 1 + type: Transform + - uid: 1664 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 1 + type: Transform + - uid: 1665 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 1 + type: Transform + - uid: 1670 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 1 + type: Transform + - uid: 1678 + components: + - pos: 41.5,18.5 + parent: 1 + type: Transform + - uid: 1679 + components: + - pos: 40.5,18.5 + parent: 1 + type: Transform + - uid: 1680 + components: + - pos: -7.5,-21.5 + parent: 1 + type: Transform + - uid: 1681 + components: + - pos: 38.5,18.5 + parent: 1 + type: Transform + - uid: 1683 + components: + - pos: 38.5,20.5 + parent: 1 + type: Transform + - uid: 1684 + components: + - pos: 38.5,21.5 + parent: 1 + type: Transform + - uid: 1685 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,23.5 + parent: 1 + type: Transform + - uid: 1687 + components: + - pos: 38.5,24.5 + parent: 1 + type: Transform + - uid: 1713 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1 + type: Transform + - uid: 1726 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,30.5 + parent: 1 + type: Transform + - uid: 1727 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,30.5 + parent: 1 + type: Transform + - uid: 1748 + components: + - pos: 11.5,20.5 + parent: 1 + type: Transform + - uid: 1750 + components: + - pos: 11.5,21.5 + parent: 1 + type: Transform + - uid: 1751 + components: + - pos: 23.5,-24.5 + parent: 1 + type: Transform + - uid: 1757 + components: + - pos: 31.5,23.5 + parent: 1 + type: Transform + - uid: 1758 + components: + - pos: 31.5,24.5 + parent: 1 + type: Transform + - uid: 1767 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,26.5 + parent: 1 + type: Transform + - uid: 1768 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,26.5 + parent: 1 + type: Transform + - uid: 1769 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 1 + type: Transform + - uid: 1770 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,25.5 + parent: 1 + type: Transform + - uid: 1771 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 1 + type: Transform + - uid: 1772 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,27.5 + parent: 1 + type: Transform + - uid: 1773 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,27.5 + parent: 1 + type: Transform + - uid: 1779 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,27.5 + parent: 1 + type: Transform + - uid: 1781 + components: + - pos: 27.5,11.5 + parent: 1 + type: Transform + - uid: 1782 + components: + - pos: 26.5,11.5 + parent: 1 + type: Transform + - uid: 1787 + components: + - pos: -18.5,32.5 + parent: 1 + type: Transform + - uid: 1821 + components: + - pos: 9.5,22.5 + parent: 1 + type: Transform + - uid: 1822 + components: + - pos: -18.5,29.5 + parent: 1 + type: Transform + - uid: 1823 + components: + - pos: -19.5,32.5 + parent: 1 + type: Transform + - uid: 1828 + components: + - pos: 11.5,22.5 + parent: 1 + type: Transform + - uid: 1829 + components: + - pos: 10.5,22.5 + parent: 1 + type: Transform + - uid: 1830 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,30.5 + parent: 1 + type: Transform + - uid: 1960 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,28.5 + parent: 1 + type: Transform + - uid: 1963 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,30.5 + parent: 1 + type: Transform + - uid: 1964 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,30.5 + parent: 1 + type: Transform + - uid: 1965 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,29.5 + parent: 1 + type: Transform + - uid: 1966 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,28.5 + parent: 1 + type: Transform + - uid: 1967 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,28.5 + parent: 1 + type: Transform + - uid: 1968 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,28.5 + parent: 1 + type: Transform + - uid: 1969 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,31.5 + parent: 1 + type: Transform + - uid: 1970 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,28.5 + parent: 1 + type: Transform + - uid: 1971 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,28.5 + parent: 1 + type: Transform + - uid: 1972 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,28.5 + parent: 1 + type: Transform + - uid: 1974 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,27.5 + parent: 1 + type: Transform + - uid: 1975 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,26.5 + parent: 1 + type: Transform + - uid: 1976 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,25.5 + parent: 1 + type: Transform + - uid: 1977 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,24.5 + parent: 1 + type: Transform + - uid: 1980 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,21.5 + parent: 1 + type: Transform + - uid: 1981 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,20.5 + parent: 1 + type: Transform + - uid: 1982 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 1 + type: Transform + - uid: 1983 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 1 + type: Transform + - uid: 1986 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,18.5 + parent: 1 + type: Transform + - uid: 2039 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 1 + type: Transform + - uid: 2040 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,18.5 + parent: 1 + type: Transform + - uid: 2041 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,17.5 + parent: 1 + type: Transform + - uid: 2042 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,19.5 + parent: 1 + type: Transform + - uid: 2043 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 1 + type: Transform + - uid: 2044 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,21.5 + parent: 1 + type: Transform + - uid: 2047 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 1 + type: Transform + - uid: 2048 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,20.5 + parent: 1 + type: Transform + - uid: 2049 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,20.5 + parent: 1 + type: Transform + - uid: 2050 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,20.5 + parent: 1 + type: Transform + - uid: 2051 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,21.5 + parent: 1 + type: Transform + - uid: 2052 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,22.5 + parent: 1 + type: Transform + - uid: 2053 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,23.5 + parent: 1 + type: Transform + - uid: 2054 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,23.5 + parent: 1 + type: Transform + - uid: 2055 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,24.5 + parent: 1 + type: Transform + - uid: 2056 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,24.5 + parent: 1 + type: Transform + - uid: 2058 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,24.5 + parent: 1 + type: Transform + - uid: 2059 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,24.5 + parent: 1 + type: Transform + - uid: 2060 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,24.5 + parent: 1 + type: Transform + - uid: 2061 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,24.5 + parent: 1 + type: Transform + - uid: 2062 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,24.5 + parent: 1 + type: Transform + - uid: 2063 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,20.5 + parent: 1 + type: Transform + - uid: 2064 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,20.5 + parent: 1 + type: Transform + - uid: 2065 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,20.5 + parent: 1 + type: Transform + - uid: 2066 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,20.5 + parent: 1 + type: Transform + - uid: 2077 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 1 + type: Transform + - uid: 2090 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,0.5 + parent: 1 + type: Transform + - uid: 2091 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 1 + type: Transform + - uid: 2136 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,16.5 + parent: 1 + type: Transform + - uid: 2138 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 1 + type: Transform + - uid: 2154 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-21.5 + parent: 1 + type: Transform + - uid: 2157 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 1 + type: Transform + - uid: 2161 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-28.5 + parent: 1 + type: Transform + - uid: 2164 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 1 + type: Transform + - uid: 2169 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 1 + type: Transform + - uid: 2173 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 1 + type: Transform + - uid: 2181 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 1 + type: Transform + - uid: 2218 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-13.5 + parent: 1 + type: Transform + - uid: 2220 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-21.5 + parent: 1 + type: Transform + - uid: 2222 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-21.5 + parent: 1 + type: Transform + - uid: 2223 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 1 + type: Transform + - uid: 2224 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-24.5 + parent: 1 + type: Transform + - uid: 2225 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 1 + type: Transform + - uid: 2226 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 1 + type: Transform + - uid: 2227 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 1 + type: Transform + - uid: 2228 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-21.5 + parent: 1 + type: Transform + - uid: 2229 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-21.5 + parent: 1 + type: Transform + - uid: 2230 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 1 + type: Transform + - uid: 2231 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 1 + type: Transform + - uid: 2232 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 1 + type: Transform + - uid: 2236 + components: + - pos: -42.5,-13.5 + parent: 1 + type: Transform + - uid: 2240 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 1 + type: Transform + - uid: 2241 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 1 + type: Transform + - uid: 2242 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 1 + type: Transform + - uid: 2243 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 1 + type: Transform + - uid: 2244 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 1 + type: Transform + - uid: 2245 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 1 + type: Transform + - uid: 2246 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-26.5 + parent: 1 + type: Transform + - uid: 2247 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 1 + type: Transform + - uid: 2248 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 1 + type: Transform + - uid: 2249 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-26.5 + parent: 1 + type: Transform + - uid: 2250 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-27.5 + parent: 1 + type: Transform + - uid: 2264 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-24.5 + parent: 1 + type: Transform + - uid: 2271 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-24.5 + parent: 1 + type: Transform + - uid: 2273 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-22.5 + parent: 1 + type: Transform + - uid: 2274 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-23.5 + parent: 1 + type: Transform + - uid: 2275 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-23.5 + parent: 1 + type: Transform + - uid: 2276 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-22.5 + parent: 1 + type: Transform + - uid: 2278 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,26.5 + parent: 1 + type: Transform + - uid: 2297 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,31.5 + parent: 1 + type: Transform + - uid: 2299 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,29.5 + parent: 1 + type: Transform + - uid: 2300 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,31.5 + parent: 1 + type: Transform + - uid: 2301 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,29.5 + parent: 1 + type: Transform + - uid: 2305 + components: + - pos: 39.5,24.5 + parent: 1 + type: Transform + - uid: 2306 + components: + - pos: 40.5,24.5 + parent: 1 + type: Transform + - uid: 2307 + components: + - pos: 41.5,24.5 + parent: 1 + type: Transform + - uid: 2308 + components: + - pos: 42.5,24.5 + parent: 1 + type: Transform + - uid: 2309 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,20.5 + parent: 1 + type: Transform + - uid: 2311 + components: + - pos: 8.5,34.5 + parent: 1 + type: Transform + - uid: 2312 + components: + - pos: 7.5,34.5 + parent: 1 + type: Transform + - uid: 2313 + components: + - pos: 7.5,33.5 + parent: 1 + type: Transform + - uid: 2316 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,34.5 + parent: 1 + type: Transform + - uid: 2317 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,34.5 + parent: 1 + type: Transform + - uid: 2318 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,34.5 + parent: 1 + type: Transform + - uid: 2319 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,34.5 + parent: 1 + type: Transform + - uid: 2324 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,34.5 + parent: 1 + type: Transform + - uid: 2326 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,35.5 + parent: 1 + type: Transform + - uid: 2327 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,36.5 + parent: 1 + type: Transform + - uid: 2329 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,36.5 + parent: 1 + type: Transform + - uid: 2330 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,35.5 + parent: 1 + type: Transform + - uid: 2360 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 1 + type: Transform + - uid: 2361 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 1 + type: Transform + - uid: 2362 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 1 + type: Transform + - uid: 2368 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,28.5 + parent: 1 + type: Transform + - uid: 2370 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 1 + type: Transform + - uid: 2371 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,23.5 + parent: 1 + type: Transform + - uid: 2372 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,22.5 + parent: 1 + type: Transform + - uid: 2373 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 1 + type: Transform + - uid: 2379 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,22.5 + parent: 1 + type: Transform + - uid: 2381 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 1 + type: Transform + - uid: 2422 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 1 + type: Transform + - uid: 2427 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 1 + type: Transform + - uid: 2428 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 1 + type: Transform + - uid: 2429 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 1 + type: Transform + - uid: 2430 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 1 + type: Transform + - uid: 2434 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,28.5 + parent: 1 + type: Transform + - uid: 2435 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1 + type: Transform + - uid: 2436 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,28.5 + parent: 1 + type: Transform + - uid: 2437 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-14.5 + parent: 1 + type: Transform + - uid: 2439 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-15.5 + parent: 1 + type: Transform + - uid: 2440 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-21.5 + parent: 1 + type: Transform + - uid: 2443 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-20.5 + parent: 1 + type: Transform + - uid: 2444 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-21.5 + parent: 1 + type: Transform + - uid: 2654 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,44.5 + parent: 1 + type: Transform + - uid: 2655 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,43.5 + parent: 1 + type: Transform + - uid: 2656 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,44.5 + parent: 1 + type: Transform + - uid: 2657 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,45.5 + parent: 1 + type: Transform + - uid: 2658 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 1 + type: Transform + - uid: 2660 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,43.5 + parent: 1 + type: Transform + - uid: 2661 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,47.5 + parent: 1 + type: Transform + - uid: 2663 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,43.5 + parent: 1 + type: Transform + - uid: 2664 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,46.5 + parent: 1 + type: Transform + - uid: 2665 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,48.5 + parent: 1 + type: Transform + - uid: 2666 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,46.5 + parent: 1 + type: Transform + - uid: 2667 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,49.5 + parent: 1 + type: Transform + - uid: 2668 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,47.5 + parent: 1 + type: Transform + - uid: 2669 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,43.5 + parent: 1 + type: Transform + - uid: 2670 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,47.5 + parent: 1 + type: Transform + - uid: 2671 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,47.5 + parent: 1 + type: Transform + - uid: 2672 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,43.5 + parent: 1 + type: Transform + - uid: 2673 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,43.5 + parent: 1 + type: Transform + - uid: 2674 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,44.5 + parent: 1 + type: Transform + - uid: 2676 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,46.5 + parent: 1 + type: Transform + - uid: 2677 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,43.5 + parent: 1 + type: Transform + - uid: 2678 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,43.5 + parent: 1 + type: Transform + - uid: 2679 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,43.5 + parent: 1 + type: Transform + - uid: 2680 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,43.5 + parent: 1 + type: Transform + - uid: 2681 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,44.5 + parent: 1 + type: Transform + - uid: 2682 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,45.5 + parent: 1 + type: Transform + - uid: 2683 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,46.5 + parent: 1 + type: Transform + - uid: 2684 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,47.5 + parent: 1 + type: Transform + - uid: 2686 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,47.5 + parent: 1 + type: Transform + - uid: 2687 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,47.5 + parent: 1 + type: Transform + - uid: 2692 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,51.5 + parent: 1 + type: Transform + - uid: 2693 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,50.5 + parent: 1 + type: Transform + - uid: 2694 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,51.5 + parent: 1 + type: Transform + - uid: 2695 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 1 + type: Transform + - uid: 2696 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,54.5 + parent: 1 + type: Transform + - uid: 2697 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,53.5 + parent: 1 + type: Transform + - uid: 2698 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,54.5 + parent: 1 + type: Transform + - uid: 2699 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,53.5 + parent: 1 + type: Transform + - uid: 2700 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,47.5 + parent: 1 + type: Transform + - uid: 2701 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,47.5 + parent: 1 + type: Transform + - uid: 2702 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,50.5 + parent: 1 + type: Transform + - uid: 2703 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,51.5 + parent: 1 + type: Transform + - uid: 2704 + components: + - pos: -12.5,52.5 + parent: 1 + type: Transform + - uid: 2705 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,53.5 + parent: 1 + type: Transform + - uid: 2706 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,54.5 + parent: 1 + type: Transform + - uid: 2707 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,55.5 + parent: 1 + type: Transform + - uid: 2708 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,56.5 + parent: 1 + type: Transform + - uid: 2709 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,56.5 + parent: 1 + type: Transform + - uid: 2710 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,57.5 + parent: 1 + type: Transform + - uid: 2711 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,57.5 + parent: 1 + type: Transform + - uid: 2712 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,57.5 + parent: 1 + type: Transform + - uid: 2713 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,57.5 + parent: 1 + type: Transform + - uid: 2714 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,57.5 + parent: 1 + type: Transform + - uid: 2715 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,57.5 + parent: 1 + type: Transform + - uid: 2716 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,57.5 + parent: 1 + type: Transform + - uid: 2717 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,57.5 + parent: 1 + type: Transform + - uid: 2718 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,57.5 + parent: 1 + type: Transform + - uid: 2719 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,56.5 + parent: 1 + type: Transform + - uid: 2720 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,56.5 + parent: 1 + type: Transform + - uid: 2721 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,55.5 + parent: 1 + type: Transform + - uid: 2722 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,54.5 + parent: 1 + type: Transform + - uid: 2723 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,53.5 + parent: 1 + type: Transform + - uid: 2724 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,48.5 + parent: 1 + type: Transform + - uid: 2725 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,51.5 + parent: 1 + type: Transform + - uid: 2726 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,50.5 + parent: 1 + type: Transform + - uid: 2727 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,49.5 + parent: 1 + type: Transform + - uid: 2728 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 1 + type: Transform + - uid: 2729 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,48.5 + parent: 1 + type: Transform + - uid: 2730 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,48.5 + parent: 1 + type: Transform + - uid: 2731 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,48.5 + parent: 1 + type: Transform + - uid: 2732 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,56.5 + parent: 1 + type: Transform + - uid: 2733 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,55.5 + parent: 1 + type: Transform + - uid: 2734 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,54.5 + parent: 1 + type: Transform + - uid: 2735 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,53.5 + parent: 1 + type: Transform + - uid: 2736 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,52.5 + parent: 1 + type: Transform + - uid: 2737 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,51.5 + parent: 1 + type: Transform + - uid: 2738 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,50.5 + parent: 1 + type: Transform + - uid: 2739 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,49.5 + parent: 1 + type: Transform + - uid: 2740 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,56.5 + parent: 1 + type: Transform + - uid: 2741 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,56.5 + parent: 1 + type: Transform + - uid: 2742 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,56.5 + parent: 1 + type: Transform + - uid: 2743 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,56.5 + parent: 1 + type: Transform + - uid: 2744 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,56.5 + parent: 1 + type: Transform + - uid: 2745 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,48.5 + parent: 1 + type: Transform + - uid: 2746 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,48.5 + parent: 1 + type: Transform + - uid: 2747 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,48.5 + parent: 1 + type: Transform + - uid: 2969 + components: + - pos: -24.5,-28.5 + parent: 1 + type: Transform + - uid: 2985 + components: + - pos: -21.5,-30.5 + parent: 1 + type: Transform + - uid: 2986 + components: + - pos: -24.5,-30.5 + parent: 1 + type: Transform + - uid: 2987 + components: + - pos: -5.5,-35.5 + parent: 1 + type: Transform + - uid: 2994 + components: + - pos: -5.5,-34.5 + parent: 1 + type: Transform + - uid: 2996 + components: + - pos: -8.5,-34.5 + parent: 1 + type: Transform + - uid: 2997 + components: + - pos: -8.5,-33.5 + parent: 1 + type: Transform + - uid: 3000 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 1 + type: Transform + - uid: 3002 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 1 + type: Transform + - uid: 3003 + components: + - pos: -2.5,-35.5 + parent: 1 + type: Transform + - uid: 3004 + components: + - pos: -3.5,-35.5 + parent: 1 + type: Transform + - uid: 3005 + components: + - pos: -4.5,-35.5 + parent: 1 + type: Transform + - uid: 3072 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-13.5 + parent: 1 + type: Transform + - uid: 3080 + components: + - rot: 3.141592653589793 rad + pos: -43.5,-25.5 + parent: 1 + type: Transform + - uid: 3081 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-25.5 + parent: 1 + type: Transform + - uid: 3082 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-25.5 + parent: 1 + type: Transform + - uid: 3083 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-25.5 + parent: 1 + type: Transform + - uid: 3084 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-25.5 + parent: 1 + type: Transform + - uid: 3085 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 1 + type: Transform + - uid: 3086 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-24.5 + parent: 1 + type: Transform + - uid: 3087 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-24.5 + parent: 1 + type: Transform + - uid: 3352 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-21.5 + parent: 1 + type: Transform + - uid: 3353 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-21.5 + parent: 1 + type: Transform + - uid: 3622 + components: + - pos: 1.5,47.5 + parent: 1 + type: Transform + - uid: 3623 + components: + - pos: 1.5,46.5 + parent: 1 + type: Transform + - uid: 3624 + components: + - pos: 2.5,47.5 + parent: 1 + type: Transform + - uid: 3625 + components: + - pos: 3.5,47.5 + parent: 1 + type: Transform + - uid: 3626 + components: + - pos: 4.5,47.5 + parent: 1 + type: Transform + - uid: 3627 + components: + - pos: 5.5,47.5 + parent: 1 + type: Transform + - uid: 3628 + components: + - pos: 5.5,48.5 + parent: 1 + type: Transform + - uid: 3629 + components: + - pos: 5.5,49.5 + parent: 1 + type: Transform + - uid: 3630 + components: + - pos: 5.5,50.5 + parent: 1 + type: Transform + - uid: 3631 + components: + - pos: 5.5,51.5 + parent: 1 + type: Transform + - uid: 3632 + components: + - pos: 5.5,52.5 + parent: 1 + type: Transform + - uid: 3633 + components: + - pos: 5.5,53.5 + parent: 1 + type: Transform + - uid: 3634 + components: + - pos: 5.5,54.5 + parent: 1 + type: Transform + - uid: 3635 + components: + - pos: 5.5,55.5 + parent: 1 + type: Transform + - uid: 3636 + components: + - pos: 5.5,56.5 + parent: 1 + type: Transform + - uid: 3637 + components: + - pos: 5.5,57.5 + parent: 1 + type: Transform + - uid: 3638 + components: + - pos: 4.5,57.5 + parent: 1 + type: Transform + - uid: 3639 + components: + - pos: 3.5,57.5 + parent: 1 + type: Transform + - uid: 3640 + components: + - pos: 2.5,57.5 + parent: 1 + type: Transform + - uid: 3641 + components: + - pos: 1.5,57.5 + parent: 1 + type: Transform + - uid: 3642 + components: + - pos: 0.5,57.5 + parent: 1 + type: Transform + - uid: 3643 + components: + - pos: -0.5,57.5 + parent: 1 + type: Transform + - uid: 3644 + components: + - pos: -1.5,57.5 + parent: 1 + type: Transform + - uid: 3645 + components: + - pos: -1.5,58.5 + parent: 1 + type: Transform + - uid: 3646 + components: + - pos: -2.5,58.5 + parent: 1 + type: Transform + - uid: 3647 + components: + - pos: -3.5,58.5 + parent: 1 + type: Transform + - uid: 3648 + components: + - pos: -4.5,58.5 + parent: 1 + type: Transform + - uid: 3649 + components: + - pos: -5.5,58.5 + parent: 1 + type: Transform + - uid: 3650 + components: + - pos: -6.5,58.5 + parent: 1 + type: Transform + - uid: 3651 + components: + - pos: -7.5,58.5 + parent: 1 + type: Transform + - uid: 3652 + components: + - pos: -8.5,58.5 + parent: 1 + type: Transform + - uid: 3653 + components: + - pos: -9.5,58.5 + parent: 1 + type: Transform + - uid: 3654 + components: + - pos: -10.5,58.5 + parent: 1 + type: Transform + - uid: 3655 + components: + - pos: -11.5,58.5 + parent: 1 + type: Transform + - uid: 3656 + components: + - pos: -11.5,57.5 + parent: 1 + type: Transform + - uid: 3657 + components: + - pos: -12.5,57.5 + parent: 1 + type: Transform + - uid: 3658 + components: + - pos: -12.5,56.5 + parent: 1 + type: Transform + - uid: 3659 + components: + - pos: -12.5,55.5 + parent: 1 + type: Transform + - uid: 3660 + components: + - pos: -12.5,54.5 + parent: 1 + type: Transform + - uid: 3661 + components: + - pos: -12.5,53.5 + parent: 1 + type: Transform + - uid: 3663 + components: + - pos: -12.5,51.5 + parent: 1 + type: Transform + - uid: 3664 + components: + - pos: -12.5,50.5 + parent: 1 + type: Transform + - uid: 3665 + components: + - pos: -12.5,49.5 + parent: 1 + type: Transform + - uid: 3666 + components: + - pos: -12.5,48.5 + parent: 1 + type: Transform + - uid: 3667 + components: + - pos: -12.5,47.5 + parent: 1 + type: Transform + - uid: 3668 + components: + - pos: -11.5,47.5 + parent: 1 + type: Transform + - uid: 3669 + components: + - pos: -11.5,46.5 + parent: 1 + type: Transform + - uid: 3847 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,32.5 + parent: 1 + type: Transform + - uid: 3849 + components: + - pos: 30.5,32.5 + parent: 1 + type: Transform + - uid: 4808 + components: + - pos: 43.5,24.5 + parent: 1 + type: Transform + - uid: 4811 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,23.5 + parent: 1 + type: Transform + - uid: 4812 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,23.5 + parent: 1 + type: Transform + - uid: 4813 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,21.5 + parent: 1 + type: Transform + - uid: 4814 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 1 + type: Transform + - uid: 4819 + components: + - pos: 47.5,24.5 + parent: 1 + type: Transform + - uid: 4832 + components: + - pos: 47.5,29.5 + parent: 1 + type: Transform + - uid: 4840 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 1 + type: Transform + - uid: 4863 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,35.5 + parent: 1 + type: Transform + - uid: 4871 + components: + - rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 1 + type: Transform + - uid: 4872 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,35.5 + parent: 1 + type: Transform + - uid: 4880 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,30.5 + parent: 1 + type: Transform + - uid: 5548 + components: + - pos: -42.5,-12.5 + parent: 1 + type: Transform + - uid: 5859 + components: + - pos: -23.5,-30.5 + parent: 1 + type: Transform + - uid: 5860 + components: + - pos: -20.5,-30.5 + parent: 1 + type: Transform + - uid: 5861 + components: + - pos: -20.5,-29.5 + parent: 1 + type: Transform + - uid: 6823 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 1 + type: Transform + - uid: 6987 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-2.5 + parent: 1 + type: Transform + - uid: 6989 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 1 + type: Transform + - uid: 7070 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-34.5 + parent: 1 + type: Transform + - uid: 7071 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 1 + type: Transform + - uid: 7072 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 1 + type: Transform + - uid: 7656 + components: + - pos: 12.5,34.5 + parent: 1 + type: Transform + - uid: 8260 + components: + - pos: -11.5,52.5 + parent: 1 + type: Transform + - uid: 9198 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,23.5 + parent: 1 + type: Transform + - uid: 9663 + components: + - pos: -19.5,31.5 + parent: 1 + type: Transform + - uid: 10647 + components: + - pos: 26.5,28.5 + parent: 1 + type: Transform + - uid: 12292 + components: + - rot: 3.141592653589793 rad + pos: -1.5,63.5 + parent: 1 + type: Transform + - uid: 12293 + components: + - rot: 3.141592653589793 rad + pos: -1.5,64.5 + parent: 1 + type: Transform + - uid: 12294 + components: + - rot: 3.141592653589793 rad + pos: -2.5,64.5 + parent: 1 + type: Transform + - uid: 12295 + components: + - rot: 3.141592653589793 rad + pos: -2.5,65.5 + parent: 1 + type: Transform + - uid: 12296 + components: + - rot: 3.141592653589793 rad + pos: -2.5,66.5 + parent: 1 + type: Transform + - uid: 12297 + components: + - rot: 3.141592653589793 rad + pos: -1.5,67.5 + parent: 1 + type: Transform + - uid: 12298 + components: + - rot: 3.141592653589793 rad + pos: -0.5,67.5 + parent: 1 + type: Transform + - uid: 12299 + components: + - rot: 3.141592653589793 rad + pos: 0.5,67.5 + parent: 1 + type: Transform + - uid: 12300 + components: + - rot: 3.141592653589793 rad + pos: 1.5,66.5 + parent: 1 + type: Transform + - uid: 12301 + components: + - rot: 3.141592653589793 rad + pos: 1.5,65.5 + parent: 1 + type: Transform + - uid: 12302 + components: + - rot: 3.141592653589793 rad + pos: 1.5,64.5 + parent: 1 + type: Transform + - uid: 12303 + components: + - rot: 3.141592653589793 rad + pos: 0.5,64.5 + parent: 1 + type: Transform + - uid: 12304 + components: + - rot: 3.141592653589793 rad + pos: 0.5,63.5 + parent: 1 + type: Transform + - uid: 12305 + components: + - rot: 3.141592653589793 rad + pos: -0.5,63.5 + parent: 1 + type: Transform + - uid: 12306 + components: + - rot: 3.141592653589793 rad + pos: -1.5,66.5 + parent: 1 + type: Transform + - uid: 12307 + components: + - rot: 3.141592653589793 rad + pos: 0.5,66.5 + parent: 1 + type: Transform + - uid: 12553 + components: + - rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 2 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 11 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: -3.5,17.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: -6.5,17.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: -6.5,15.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: -9.5,18.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: -9.5,19.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: -10.5,7.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -27.5,13.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -10.5,4.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: -16.5,4.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: -13.5,4.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: -16.5,7.5 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: -13.5,7.5 + parent: 1 + type: Transform + - uid: 224 + components: + - pos: -19.5,7.5 + parent: 1 + type: Transform + - uid: 227 + components: + - pos: -19.5,4.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -22.5,17.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: -24.5,12.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -25.5,12.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -26.5,12.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -27.5,12.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: -30.5,5.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: -30.5,4.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -30.5,6.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -30.5,7.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -30.5,8.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: -30.5,9.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -30.5,10.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -30.5,11.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -30.5,12.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -30.5,13.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -30.5,14.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -24.5,17.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -25.5,17.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -26.5,17.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -27.5,17.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -27.5,16.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -27.5,15.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -27.5,14.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -22.5,12.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -27.5,11.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -27.5,9.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -29.5,5.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -9.5,20.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -9.5,21.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: -9.5,22.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -10.5,22.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: -11.5,22.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: -12.5,22.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: -18.5,21.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -14.5,22.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -15.5,22.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -16.5,22.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -17.5,22.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -18.5,22.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -18.5,20.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -18.5,19.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -18.5,18.5 + parent: 1 + type: Transform + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,27.5 + parent: 1 + type: Transform + - uid: 418 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,26.5 + parent: 1 + type: Transform + - uid: 419 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,26.5 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,26.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: -14.5,23.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: -18.5,23.5 + parent: 1 + type: Transform + - uid: 443 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 444 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 456 + components: + - rot: 3.141592653589793 rad + pos: -14.5,0.5 + parent: 1 + type: Transform + - uid: 459 + components: + - rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 1 + type: Transform + - uid: 461 + components: + - rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 1 + type: Transform + - uid: 462 + components: + - rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 1 + type: Transform + - uid: 463 + components: + - rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + type: Transform + - uid: 464 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 465 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-10.5 + parent: 1 + type: Transform + - uid: 466 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-7.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 1 + type: Transform + - uid: 469 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 470 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 1 + type: Transform + - uid: 472 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 1 + type: Transform + - uid: 475 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 476 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 486 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 1 + type: Transform + - uid: 495 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-12.5 + parent: 1 + type: Transform + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-14.5 + parent: 1 + type: Transform + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-15.5 + parent: 1 + type: Transform + - uid: 498 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 1 + type: Transform + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-14.5 + parent: 1 + type: Transform + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-8.5 + parent: 1 + type: Transform + - uid: 501 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-9.5 + parent: 1 + type: Transform + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 505 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-10.5 + parent: 1 + type: Transform + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 1 + type: Transform + - uid: 509 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-16.5 + parent: 1 + type: Transform + - uid: 510 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-16.5 + parent: 1 + type: Transform + - uid: 511 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 1 + type: Transform + - uid: 512 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 1 + type: Transform + - uid: 513 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-16.5 + parent: 1 + type: Transform + - uid: 514 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 1 + type: Transform + - uid: 515 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 1 + type: Transform + - uid: 516 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-16.5 + parent: 1 + type: Transform + - uid: 517 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 1 + type: Transform + - uid: 518 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 1 + type: Transform + - uid: 576 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: -14.5,-11.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-17.5 + parent: 1 + type: Transform + - uid: 633 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-18.5 + parent: 1 + type: Transform + - uid: 634 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-19.5 + parent: 1 + type: Transform + - uid: 635 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-19.5 + parent: 1 + type: Transform + - uid: 636 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-19.5 + parent: 1 + type: Transform + - uid: 637 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 1 + type: Transform + - uid: 638 + components: + - rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 1 + type: Transform + - uid: 639 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-19.5 + parent: 1 + type: Transform + - uid: 640 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 1 + type: Transform + - uid: 641 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 1 + type: Transform + - uid: 642 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 1 + type: Transform + - uid: 643 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-18.5 + parent: 1 + type: Transform + - uid: 745 + components: + - rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 1 + type: Transform + - uid: 746 + components: + - rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 1 + type: Transform + - uid: 747 + components: + - rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 1 + type: Transform + - uid: 813 + components: + - pos: 30.5,4.5 + parent: 1 + type: Transform + - uid: 815 + components: + - pos: 32.5,4.5 + parent: 1 + type: Transform + - uid: 816 + components: + - pos: 33.5,4.5 + parent: 1 + type: Transform + - uid: 817 + components: + - pos: 34.5,4.5 + parent: 1 + type: Transform + - uid: 818 + components: + - pos: 35.5,4.5 + parent: 1 + type: Transform + - uid: 869 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - uid: 871 + components: + - pos: 25.5,17.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 36.5,4.5 + parent: 1 + type: Transform + - uid: 880 + components: + - pos: 37.5,4.5 + parent: 1 + type: Transform + - uid: 881 + components: + - pos: 37.5,5.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: 38.5,5.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: 39.5,5.5 + parent: 1 + type: Transform + - uid: 884 + components: + - pos: 40.5,5.5 + parent: 1 + type: Transform + - uid: 885 + components: + - pos: 41.5,5.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: 42.5,5.5 + parent: 1 + type: Transform + - uid: 985 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 986 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 1 + type: Transform + - uid: 987 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 988 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 1 + type: Transform + - uid: 989 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 + type: Transform + - uid: 990 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + type: Transform + - uid: 991 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 1 + type: Transform + - uid: 992 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 1 + type: Transform + - uid: 993 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 994 + components: + - pos: 17.5,0.5 + parent: 1 + type: Transform + - uid: 995 + components: + - rot: 3.141592653589793 rad + pos: 18.5,0.5 + parent: 1 + type: Transform + - uid: 997 + components: + - pos: 20.5,0.5 + parent: 1 + type: Transform + - uid: 998 + components: + - pos: 21.5,0.5 + parent: 1 + type: Transform + - uid: 999 + components: + - pos: 22.5,0.5 + parent: 1 + type: Transform + - uid: 1000 + components: + - pos: 23.5,0.5 + parent: 1 + type: Transform + - uid: 1001 + components: + - pos: 24.5,0.5 + parent: 1 + type: Transform + - uid: 1002 + components: + - pos: 25.5,0.5 + parent: 1 + type: Transform + - uid: 1003 + components: + - pos: 26.5,0.5 + parent: 1 + type: Transform + - uid: 1004 + components: + - pos: 27.5,0.5 + parent: 1 + type: Transform + - uid: 1005 + components: + - pos: 28.5,0.5 + parent: 1 + type: Transform + - uid: 1006 + components: + - pos: 29.5,0.5 + parent: 1 + type: Transform + - uid: 1008 + components: + - pos: 31.5,0.5 + parent: 1 + type: Transform + - uid: 1009 + components: + - pos: 32.5,0.5 + parent: 1 + type: Transform + - uid: 1010 + components: + - pos: 33.5,0.5 + parent: 1 + type: Transform + - uid: 1011 + components: + - pos: 34.5,0.5 + parent: 1 + type: Transform + - uid: 1012 + components: + - pos: 35.5,0.5 + parent: 1 + type: Transform + - uid: 1013 + components: + - pos: 36.5,0.5 + parent: 1 + type: Transform + - uid: 1014 + components: + - pos: 37.5,0.5 + parent: 1 + type: Transform + - uid: 1015 + components: + - pos: 38.5,0.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: 39.5,0.5 + parent: 1 + type: Transform + - uid: 1017 + components: + - pos: 40.5,0.5 + parent: 1 + type: Transform + - uid: 1018 + components: + - pos: 41.5,0.5 + parent: 1 + type: Transform + - uid: 1019 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 1020 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 1022 + components: + - pos: 14.5,-2.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 15.5,-2.5 + parent: 1 + type: Transform + - uid: 1025 + components: + - pos: 17.5,-2.5 + parent: 1 + type: Transform + - uid: 1026 + components: + - pos: 18.5,-2.5 + parent: 1 + type: Transform + - uid: 1027 + components: + - pos: 19.5,-2.5 + parent: 1 + type: Transform + - uid: 1028 + components: + - pos: 10.5,-9.5 + parent: 1 + type: Transform + - uid: 1032 + components: + - pos: 14.5,-9.5 + parent: 1 + type: Transform + - uid: 1033 + components: + - pos: 14.5,-8.5 + parent: 1 + type: Transform + - uid: 1034 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + type: Transform + - uid: 1036 + components: + - pos: 14.5,-5.5 + parent: 1 + type: Transform + - uid: 1038 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 1039 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 1040 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 1041 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 1042 + components: + - pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: 7.5,-10.5 + parent: 1 + type: Transform + - uid: 1044 + components: + - pos: 8.5,-10.5 + parent: 1 + type: Transform + - uid: 1045 + components: + - pos: 9.5,-10.5 + parent: 1 + type: Transform + - uid: 1046 + components: + - pos: 10.5,-10.5 + parent: 1 + type: Transform + - uid: 1050 + components: + - pos: 17.5,-8.5 + parent: 1 + type: Transform + - uid: 1051 + components: + - pos: 17.5,-5.5 + parent: 1 + type: Transform + - uid: 1054 + components: + - pos: 10.5,-11.5 + parent: 1 + type: Transform + - uid: 1055 + components: + - pos: 10.5,-12.5 + parent: 1 + type: Transform + - uid: 1056 + components: + - pos: 10.5,-13.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - pos: 11.5,-13.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: 12.5,-13.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: 14.5,-13.5 + parent: 1 + type: Transform + - uid: 1065 + components: + - pos: 17.5,-9.5 + parent: 1 + type: Transform + - uid: 1083 + components: + - pos: 21.5,-9.5 + parent: 1 + type: Transform + - uid: 1090 + components: + - pos: 21.5,-2.5 + parent: 1 + type: Transform + - uid: 1091 + components: + - pos: 22.5,-2.5 + parent: 1 + type: Transform + - uid: 1092 + components: + - pos: 23.5,-2.5 + parent: 1 + type: Transform + - uid: 1221 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,18.5 + parent: 1 + type: Transform + - uid: 1230 + components: + - pos: 43.5,4.5 + parent: 1 + type: Transform + - uid: 1231 + components: + - pos: 43.5,5.5 + parent: 1 + type: Transform + - uid: 1232 + components: + - pos: 43.5,6.5 + parent: 1 + type: Transform + - uid: 1233 + components: + - pos: 43.5,7.5 + parent: 1 + type: Transform + - uid: 1234 + components: + - pos: 43.5,8.5 + parent: 1 + type: Transform + - uid: 1235 + components: + - pos: 43.5,9.5 + parent: 1 + type: Transform + - uid: 1236 + components: + - pos: 43.5,10.5 + parent: 1 + type: Transform + - uid: 1237 + components: + - pos: 43.5,11.5 + parent: 1 + type: Transform + - uid: 1238 + components: + - pos: 43.5,12.5 + parent: 1 + type: Transform + - uid: 1239 + components: + - pos: 43.5,13.5 + parent: 1 + type: Transform + - uid: 1240 + components: + - pos: 43.5,14.5 + parent: 1 + type: Transform + - uid: 1242 + components: + - pos: 43.5,16.5 + parent: 1 + type: Transform + - uid: 1243 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,17.5 + parent: 1 + type: Transform + - uid: 1248 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,0.5 + parent: 1 + type: Transform + - uid: 1249 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,0.5 + parent: 1 + type: Transform + - uid: 1453 + components: + - pos: 8.5,-16.5 + parent: 1 + type: Transform + - uid: 1455 + components: + - pos: 10.5,-16.5 + parent: 1 + type: Transform + - uid: 1462 + components: + - pos: 11.5,-16.5 + parent: 1 + type: Transform + - uid: 1463 + components: + - pos: 12.5,-16.5 + parent: 1 + type: Transform + - uid: 1464 + components: + - pos: 12.5,-17.5 + parent: 1 + type: Transform + - uid: 1465 + components: + - pos: 12.5,-18.5 + parent: 1 + type: Transform + - uid: 1466 + components: + - pos: 12.5,-19.5 + parent: 1 + type: Transform + - uid: 1467 + components: + - pos: 13.5,-19.5 + parent: 1 + type: Transform + - uid: 1468 + components: + - pos: 14.5,-19.5 + parent: 1 + type: Transform + - uid: 1470 + components: + - pos: 16.5,-19.5 + parent: 1 + type: Transform + - uid: 1471 + components: + - pos: 17.5,-19.5 + parent: 1 + type: Transform + - uid: 1472 + components: + - pos: 18.5,-19.5 + parent: 1 + type: Transform + - uid: 1473 + components: + - pos: 19.5,-19.5 + parent: 1 + type: Transform + - uid: 1474 + components: + - pos: 20.5,-19.5 + parent: 1 + type: Transform + - uid: 1476 + components: + - pos: 22.5,-19.5 + parent: 1 + type: Transform + - uid: 1495 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 1496 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 1498 + components: + - pos: 7.5,-24.5 + parent: 1 + type: Transform + - uid: 1503 + components: + - pos: 3.5,-24.5 + parent: 1 + type: Transform + - uid: 1504 + components: + - pos: 3.5,-25.5 + parent: 1 + type: Transform + - uid: 1521 + components: + - pos: 3.5,-27.5 + parent: 1 + type: Transform + - uid: 1567 + components: + - pos: 12.5,-24.5 + parent: 1 + type: Transform + - uid: 1576 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 1577 + components: + - pos: 4.5,-12.5 + parent: 1 + type: Transform + - uid: 1578 + components: + - pos: -0.5,-12.5 + parent: 1 + type: Transform + - uid: 1579 + components: + - pos: -0.5,-13.5 + parent: 1 + type: Transform + - uid: 1580 + components: + - pos: -0.5,-14.5 + parent: 1 + type: Transform + - uid: 1581 + components: + - pos: -0.5,-15.5 + parent: 1 + type: Transform + - uid: 1582 + components: + - pos: -0.5,-16.5 + parent: 1 + type: Transform + - uid: 1583 + components: + - pos: -0.5,-17.5 + parent: 1 + type: Transform + - uid: 1584 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 1585 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform + - uid: 1586 + components: + - pos: -1.5,-19.5 + parent: 1 + type: Transform + - uid: 1587 + components: + - pos: -2.5,-19.5 + parent: 1 + type: Transform + - uid: 1588 + components: + - pos: -3.5,-19.5 + parent: 1 + type: Transform + - uid: 1589 + components: + - pos: -4.5,-19.5 + parent: 1 + type: Transform + - uid: 1590 + components: + - pos: -5.5,-19.5 + parent: 1 + type: Transform + - uid: 1596 + components: + - pos: -9.5,-17.5 + parent: 1 + type: Transform + - uid: 1599 + components: + - pos: -10.5,-20.5 + parent: 1 + type: Transform + - uid: 1600 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 1 + type: Transform + - uid: 1606 + components: + - pos: -0.5,-28.5 + parent: 1 + type: Transform + - uid: 1612 + components: + - pos: -0.5,-29.5 + parent: 1 + type: Transform + - uid: 1621 + components: + - pos: -0.5,-23.5 + parent: 1 + type: Transform + - uid: 1633 + components: + - pos: -0.5,-27.5 + parent: 1 + type: Transform + - uid: 1635 + components: + - pos: -4.5,-28.5 + parent: 1 + type: Transform + - uid: 1639 + components: + - pos: -4.5,-27.5 + parent: 1 + type: Transform + - uid: 1644 + components: + - pos: -4.5,-29.5 + parent: 1 + type: Transform + - uid: 1645 + components: + - pos: -3.5,-27.5 + parent: 1 + type: Transform + - uid: 1646 + components: + - pos: -1.5,-27.5 + parent: 1 + type: Transform + - uid: 1647 + components: + - pos: -5.5,-27.5 + parent: 1 + type: Transform + - uid: 1648 + components: + - pos: -7.5,-27.5 + parent: 1 + type: Transform + - uid: 1649 + components: + - pos: -8.5,-27.5 + parent: 1 + type: Transform + - uid: 1650 + components: + - pos: -8.5,-28.5 + parent: 1 + type: Transform + - uid: 1651 + components: + - pos: -8.5,-29.5 + parent: 1 + type: Transform + - uid: 1659 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 1 + type: Transform + - uid: 1660 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 1 + type: Transform + - uid: 1667 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 1 + type: Transform + - uid: 1668 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 1 + type: Transform + - uid: 1669 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 1 + type: Transform + - uid: 1671 + components: + - pos: -12.5,-19.5 + parent: 1 + type: Transform + - uid: 1672 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 1 + type: Transform + - uid: 1673 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 1 + type: Transform + - uid: 1674 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-27.5 + parent: 1 + type: Transform + - uid: 1675 + components: + - pos: -12.5,-20.5 + parent: 1 + type: Transform + - uid: 1676 + components: + - pos: -16.5,-20.5 + parent: 1 + type: Transform + - uid: 1677 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,18.5 + parent: 1 + type: Transform + - uid: 1682 + components: + - pos: 38.5,17.5 + parent: 1 + type: Transform + - uid: 1689 + components: + - rot: 3.141592653589793 rad + pos: 38.5,25.5 + parent: 1 + type: Transform + - uid: 1690 + components: + - rot: 3.141592653589793 rad + pos: 38.5,27.5 + parent: 1 + type: Transform + - uid: 1691 + components: + - rot: 3.141592653589793 rad + pos: 38.5,28.5 + parent: 1 + type: Transform + - uid: 1692 + components: + - rot: 3.141592653589793 rad + pos: 38.5,29.5 + parent: 1 + type: Transform + - uid: 1693 + components: + - rot: 3.141592653589793 rad + pos: 38.5,30.5 + parent: 1 + type: Transform + - uid: 1694 + components: + - rot: 3.141592653589793 rad + pos: 38.5,34.5 + parent: 1 + type: Transform + - uid: 1695 + components: + - rot: 3.141592653589793 rad + pos: 38.5,33.5 + parent: 1 + type: Transform + - uid: 1696 + components: + - rot: 3.141592653589793 rad + pos: 38.5,32.5 + parent: 1 + type: Transform + - uid: 1759 + components: + - pos: -26.5,25.5 + parent: 1 + type: Transform + - uid: 1760 + components: + - pos: -25.5,25.5 + parent: 1 + type: Transform + - uid: 1761 + components: + - pos: -26.5,19.5 + parent: 1 + type: Transform + - uid: 1762 + components: + - pos: -22.5,25.5 + parent: 1 + type: Transform + - uid: 1774 + components: + - pos: -21.5,22.5 + parent: 1 + type: Transform + - uid: 1777 + components: + - pos: -21.5,24.5 + parent: 1 + type: Transform + - uid: 1778 + components: + - pos: -21.5,23.5 + parent: 1 + type: Transform + - uid: 1783 + components: + - pos: -21.5,25.5 + parent: 1 + type: Transform + - uid: 1784 + components: + - pos: -27.5,20.5 + parent: 1 + type: Transform + - uid: 1789 + components: + - pos: -27.5,19.5 + parent: 1 + type: Transform + - uid: 1791 + components: + - pos: -27.5,21.5 + parent: 1 + type: Transform + - uid: 1809 + components: + - pos: -27.5,25.5 + parent: 1 + type: Transform + - uid: 1819 + components: + - pos: -27.5,24.5 + parent: 1 + type: Transform + - uid: 1820 + components: + - pos: -22.5,19.5 + parent: 1 + type: Transform + - uid: 1826 + components: + - pos: -21.5,19.5 + parent: 1 + type: Transform + - uid: 1827 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 1 + type: Transform + - uid: 1831 + components: + - pos: -21.5,20.5 + parent: 1 + type: Transform + - uid: 1833 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 1834 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 1835 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 1840 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 1984 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,17.5 + parent: 1 + type: Transform + - uid: 1985 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,16.5 + parent: 1 + type: Transform + - uid: 1996 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 1 + type: Transform + - uid: 1997 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 1 + type: Transform + - uid: 1998 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 1 + type: Transform + - uid: 1999 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-0.5 + parent: 1 + type: Transform + - uid: 2000 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-0.5 + parent: 1 + type: Transform + - uid: 2002 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,11.5 + parent: 1 + type: Transform + - uid: 2003 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 1 + type: Transform + - uid: 2004 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,9.5 + parent: 1 + type: Transform + - uid: 2005 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,8.5 + parent: 1 + type: Transform + - uid: 2006 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,7.5 + parent: 1 + type: Transform + - uid: 2007 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,6.5 + parent: 1 + type: Transform + - uid: 2008 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,5.5 + parent: 1 + type: Transform + - uid: 2009 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 1 + type: Transform + - uid: 2019 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,12.5 + parent: 1 + type: Transform + - uid: 2020 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,14.5 + parent: 1 + type: Transform + - uid: 2021 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,12.5 + parent: 1 + type: Transform + - uid: 2022 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,12.5 + parent: 1 + type: Transform + - uid: 2023 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,12.5 + parent: 1 + type: Transform + - uid: 2024 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,12.5 + parent: 1 + type: Transform + - uid: 2025 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,14.5 + parent: 1 + type: Transform + - uid: 2026 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,12.5 + parent: 1 + type: Transform + - uid: 2027 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 1 + type: Transform + - uid: 2028 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,13.5 + parent: 1 + type: Transform + - uid: 2029 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,14.5 + parent: 1 + type: Transform + - uid: 2030 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,14.5 + parent: 1 + type: Transform + - uid: 2032 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,17.5 + parent: 1 + type: Transform + - uid: 2033 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,17.5 + parent: 1 + type: Transform + - uid: 2034 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,17.5 + parent: 1 + type: Transform + - uid: 2035 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,17.5 + parent: 1 + type: Transform + - uid: 2036 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 1 + type: Transform + - uid: 2037 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,16.5 + parent: 1 + type: Transform + - uid: 2038 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,15.5 + parent: 1 + type: Transform + - uid: 2095 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 1 + type: Transform + - uid: 2096 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-2.5 + parent: 1 + type: Transform + - uid: 2097 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 1 + type: Transform + - uid: 2098 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 1 + type: Transform + - uid: 2099 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 1 + type: Transform + - uid: 2100 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 1 + type: Transform + - uid: 2101 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 1 + type: Transform + - uid: 2112 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + type: Transform + - uid: 2113 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,0.5 + parent: 1 + type: Transform + - uid: 2137 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 1 + type: Transform + - uid: 2139 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 1 + type: Transform + - uid: 2140 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 1 + type: Transform + - uid: 2141 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-10.5 + parent: 1 + type: Transform + - uid: 2142 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 1 + type: Transform + - uid: 2143 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 1 + type: Transform + - uid: 2144 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 1 + type: Transform + - uid: 2145 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 1 + type: Transform + - uid: 2146 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 1 + type: Transform + - uid: 2147 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 1 + type: Transform + - uid: 2148 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 1 + type: Transform + - uid: 2149 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 1 + type: Transform + - uid: 2150 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 1 + type: Transform + - uid: 2151 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 1 + type: Transform + - uid: 2153 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-20.5 + parent: 1 + type: Transform + - uid: 2155 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 1 + type: Transform + - uid: 2156 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 1 + type: Transform + - uid: 2158 + components: + - pos: -20.5,-27.5 + parent: 1 + type: Transform + - uid: 2160 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 1 + type: Transform + - uid: 2162 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 1 + type: Transform + - uid: 2163 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-26.5 + parent: 1 + type: Transform + - uid: 2165 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 1 + type: Transform + - uid: 2166 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 1 + type: Transform + - uid: 2167 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 1 + type: Transform + - uid: 2168 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 1 + type: Transform + - uid: 2170 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-23.5 + parent: 1 + type: Transform + - uid: 2171 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-24.5 + parent: 1 + type: Transform + - uid: 2172 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 1 + type: Transform + - uid: 2174 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 1 + type: Transform + - uid: 2175 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 1 + type: Transform + - uid: 2176 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 1 + type: Transform + - uid: 2177 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 1 + type: Transform + - uid: 2178 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-26.5 + parent: 1 + type: Transform + - uid: 2179 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 1 + type: Transform + - uid: 2180 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 1 + type: Transform + - uid: 2182 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 1 + type: Transform + - uid: 2183 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 1 + type: Transform + - uid: 2184 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-11.5 + parent: 1 + type: Transform + - uid: 2185 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 1 + type: Transform + - uid: 2187 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 1 + type: Transform + - uid: 2188 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 1 + type: Transform + - uid: 2189 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 1 + type: Transform + - uid: 2190 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-14.5 + parent: 1 + type: Transform + - uid: 2191 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-14.5 + parent: 1 + type: Transform + - uid: 2192 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 1 + type: Transform + - uid: 2193 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 1 + type: Transform + - uid: 2194 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 1 + type: Transform + - uid: 2195 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-21.5 + parent: 1 + type: Transform + - uid: 2196 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 1 + type: Transform + - uid: 2197 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 1 + type: Transform + - uid: 2198 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 1 + type: Transform + - uid: 2199 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 1 + type: Transform + - uid: 2200 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 1 + type: Transform + - uid: 2202 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-14.5 + parent: 1 + type: Transform + - uid: 2204 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 1 + type: Transform + - uid: 2205 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 1 + type: Transform + - uid: 2206 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 1 + type: Transform + - uid: 2207 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 1 + type: Transform + - uid: 2208 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 1 + type: Transform + - uid: 2209 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-17.5 + parent: 1 + type: Transform + - uid: 2210 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 1 + type: Transform + - uid: 2211 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 1 + type: Transform + - uid: 2212 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 1 + type: Transform + - uid: 2213 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 1 + type: Transform + - uid: 2214 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 1 + type: Transform + - uid: 2215 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 1 + type: Transform + - uid: 2216 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 1 + type: Transform + - uid: 2237 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-17.5 + parent: 1 + type: Transform + - uid: 2238 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 1 + type: Transform + - uid: 2239 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-19.5 + parent: 1 + type: Transform + - uid: 2251 + components: + - pos: -23.5,-27.5 + parent: 1 + type: Transform + - uid: 2253 + components: + - pos: -21.5,-27.5 + parent: 1 + type: Transform + - uid: 2254 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 1 + type: Transform + - uid: 2256 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-24.5 + parent: 1 + type: Transform + - uid: 2257 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 1 + type: Transform + - uid: 2258 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 1 + type: Transform + - uid: 2259 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 1 + type: Transform + - uid: 2261 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 1 + type: Transform + - uid: 2310 + components: + - pos: 12.5,31.5 + parent: 1 + type: Transform + - uid: 2314 + components: + - pos: 9.5,31.5 + parent: 1 + type: Transform + - uid: 2315 + components: + - pos: 13.5,31.5 + parent: 1 + type: Transform + - uid: 2320 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 1 + type: Transform + - uid: 2322 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 1 + type: Transform + - uid: 2323 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 1 + type: Transform + - uid: 2343 + components: + - rot: 3.141592653589793 rad + pos: 38.5,31.5 + parent: 1 + type: Transform + - uid: 2344 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 1 + type: Transform + - uid: 2345 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,19.5 + parent: 1 + type: Transform + - uid: 2346 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 1 + type: Transform + - uid: 2347 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 1 + type: Transform + - uid: 2348 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 1 + type: Transform + - uid: 2349 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1 + type: Transform + - uid: 2350 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 1 + type: Transform + - uid: 2352 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,22.5 + parent: 1 + type: Transform + - uid: 2353 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,23.5 + parent: 1 + type: Transform + - uid: 2354 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,24.5 + parent: 1 + type: Transform + - uid: 2355 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,24.5 + parent: 1 + type: Transform + - uid: 2356 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,25.5 + parent: 1 + type: Transform + - uid: 2357 + components: + - rot: 3.141592653589793 rad + pos: 19.5,26.5 + parent: 1 + type: Transform + - uid: 2358 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,27.5 + parent: 1 + type: Transform + - uid: 2359 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,28.5 + parent: 1 + type: Transform + - uid: 2364 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 1 + type: Transform + - uid: 2365 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,28.5 + parent: 1 + type: Transform + - uid: 2366 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,28.5 + parent: 1 + type: Transform + - uid: 2367 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 1 + type: Transform + - uid: 2378 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 1 + type: Transform + - uid: 2380 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 1 + type: Transform + - uid: 2418 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 1 + type: Transform + - uid: 2419 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,31.5 + parent: 1 + type: Transform + - uid: 2420 + components: + - pos: 13.5,32.5 + parent: 1 + type: Transform + - uid: 2421 + components: + - pos: 13.5,33.5 + parent: 1 + type: Transform + - uid: 2423 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,31.5 + parent: 1 + type: Transform + - uid: 2424 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,31.5 + parent: 1 + type: Transform + - uid: 2425 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,31.5 + parent: 1 + type: Transform + - uid: 2431 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 1 + type: Transform + - uid: 2432 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,24.5 + parent: 1 + type: Transform + - uid: 2433 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,24.5 + parent: 1 + type: Transform + - uid: 2441 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 1 + type: Transform + - uid: 3074 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-16.5 + parent: 1 + type: Transform + - uid: 3076 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-14.5 + parent: 1 + type: Transform + - uid: 3077 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-13.5 + parent: 1 + type: Transform + - uid: 3078 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 1 + type: Transform + - uid: 3079 + components: + - rot: 3.141592653589793 rad + pos: -41.5,-13.5 + parent: 1 + type: Transform + - uid: 3110 + components: + - pos: -14.5,-15.5 + parent: 1 + type: Transform + - uid: 3152 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 3483 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 1 + type: Transform + - uid: 3484 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 1 + type: Transform + - uid: 3485 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 1 + type: Transform + - uid: 3500 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 1 + type: Transform + - uid: 3549 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 1 + type: Transform + - uid: 5345 + components: + - pos: -32.5,-14.5 + parent: 1 + type: Transform + - uid: 6616 + components: + - pos: 16.5,-2.5 + parent: 1 + type: Transform + - uid: 7237 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 1 + type: Transform + - uid: 8323 + components: + - pos: 11.5,31.5 + parent: 1 + type: Transform + - uid: 8325 + components: + - pos: 8.5,31.5 + parent: 1 + type: Transform +- proto: WallSolidRust + entities: + - uid: 9058 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 1 + type: Transform + - uid: 11950 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,19.5 + parent: 1 + type: Transform +- proto: WallWood + entities: + - uid: 2759 + components: + - pos: -10.5,-54.5 + parent: 1 + type: Transform + - uid: 2760 + components: + - pos: -10.5,-53.5 + parent: 1 + type: Transform + - uid: 2768 + components: + - pos: -10.5,-51.5 + parent: 1 + type: Transform + - uid: 2770 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-47.5 + parent: 1 + type: Transform + - uid: 2771 + components: + - pos: -18.5,-54.5 + parent: 1 + type: Transform + - uid: 2773 + components: + - pos: -11.5,-54.5 + parent: 1 + type: Transform + - uid: 2774 + components: + - pos: -10.5,-48.5 + parent: 1 + type: Transform + - uid: 2775 + components: + - pos: -12.5,-45.5 + parent: 1 + type: Transform + - uid: 2776 + components: + - pos: -10.5,-45.5 + parent: 1 + type: Transform + - uid: 2777 + components: + - pos: -10.5,-46.5 + parent: 1 + type: Transform + - uid: 2779 + components: + - pos: -12.5,-47.5 + parent: 1 + type: Transform + - uid: 2780 + components: + - pos: -11.5,-45.5 + parent: 1 + type: Transform + - uid: 2788 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-51.5 + parent: 1 + type: Transform + - uid: 2789 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 1 + type: Transform + - uid: 2791 + components: + - pos: -15.5,-47.5 + parent: 1 + type: Transform + - uid: 2798 + components: + - pos: -10.5,-52.5 + parent: 1 + type: Transform + - uid: 2801 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-51.5 + parent: 1 + type: Transform + - uid: 2803 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-51.5 + parent: 1 + type: Transform + - uid: 2805 + components: + - pos: -17.5,-54.5 + parent: 1 + type: Transform + - uid: 2808 + components: + - pos: -10.5,-50.5 + parent: 1 + type: Transform + - uid: 2854 + components: + - pos: -10.5,-49.5 + parent: 1 + type: Transform + - uid: 2858 + components: + - pos: -14.5,-47.5 + parent: 1 + type: Transform + - uid: 2859 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-47.5 + parent: 1 + type: Transform + - uid: 2860 + components: + - pos: -13.5,-47.5 + parent: 1 + type: Transform + - uid: 2861 + components: + - pos: -10.5,-47.5 + parent: 1 + type: Transform + - uid: 2872 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 1 + type: Transform + - uid: 2873 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-45.5 + parent: 1 + type: Transform + - uid: 2926 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-50.5 + parent: 1 + type: Transform + - uid: 2932 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-48.5 + parent: 1 + type: Transform +- proto: WardrobeCargoFilled + entities: + - uid: 7240 + components: + - pos: 4.5,-25.5 + parent: 1 + type: Transform +- proto: WardrobeChapelFilled + entities: + - uid: 3479 + components: + - pos: -33.5,14.5 + parent: 1 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 1815 + components: + - pos: 24.5,28.5 + parent: 1 + type: Transform + - uid: 1816 + components: + - pos: 24.5,24.5 + parent: 1 + type: Transform + - uid: 5444 + components: + - pos: 18.5,5.5 + parent: 1 + type: Transform + - uid: 5445 + components: + - pos: 15.5,5.5 + parent: 1 + type: Transform + - uid: 5446 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform +- proto: WardrobeRobotics + entities: + - uid: 661 + components: + - pos: -12.5,-13.5 + parent: 1 + type: Transform +- proto: WarningCO2 + entities: + - uid: 6969 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-8.5 + parent: 1 + type: Transform +- proto: WarningN2 + entities: + - uid: 6967 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 1 + type: Transform +- proto: WarningN2O + entities: + - uid: 6971 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 1 + type: Transform +- proto: WarningO2 + entities: + - uid: 6968 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 1 + type: Transform +- proto: WarningPlasma + entities: + - uid: 6970 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-14.5 + parent: 1 + type: Transform +- proto: WarningTritium + entities: + - uid: 6972 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-16.5 + parent: 1 + type: Transform +- proto: WarningWaste + entities: + - uid: 6973 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 1 + type: Transform +- proto: WarpPoint + entities: + - uid: 12045 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - location: bar + type: WarpPoint + - uid: 12046 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,29.5 + parent: 1 + type: Transform + - location: bridge + type: WarpPoint + - uid: 12047 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,52.5 + parent: 1 + type: Transform + - location: ai sat + type: WarpPoint + - uid: 12048 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 1 + type: Transform + - location: med + type: WarpPoint + - uid: 12049 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 1 + type: Transform + - location: sci + type: WarpPoint + - uid: 12050 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 1 + type: Transform + - location: engi + type: WarpPoint + - uid: 12051 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 1 + type: Transform + - location: atmos + type: WarpPoint + - uid: 12052 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,34.5 + parent: 1 + type: Transform + - location: abandoned evac dock + type: WarpPoint + - uid: 12053 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,13.5 + parent: 1 + type: Transform + - location: sec + type: WarpPoint + - uid: 12054 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,31.5 + parent: 1 + type: Transform + - location: courthouse + type: WarpPoint + - uid: 12055 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,10.5 + parent: 1 + type: Transform + - location: arrivals + type: WarpPoint + - uid: 12056 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1 + type: Transform + - location: cargo + type: WarpPoint + - uid: 12057 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 1 + type: Transform + - location: dorms + type: WarpPoint + - uid: 12058 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,8.5 + parent: 1 + type: Transform + - location: evac + type: WarpPoint +- proto: WaterCooler + entities: + - uid: 4856 + components: + - pos: 39.5,25.5 + parent: 1 + type: Transform + - uid: 6396 + components: + - pos: -12.5,-18.5 + parent: 1 + type: Transform +- proto: WaterTankFull + entities: + - uid: 4948 + components: + - pos: 33.5,28.5 + parent: 1 + type: Transform + - uid: 7665 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 8853 + components: + - pos: -30.5,-10.5 + parent: 1 + type: Transform + - uid: 8859 + components: + - pos: -7.5,-17.5 + parent: 1 + type: Transform + - uid: 9140 + components: + - pos: 14.5,-18.5 + parent: 1 + type: Transform + - uid: 9177 + components: + - pos: 24.5,-0.5 + parent: 1 + type: Transform + - uid: 9377 + components: + - pos: 11.5,17.5 + parent: 1 + type: Transform + - uid: 9378 + components: + - pos: 21.5,26.5 + parent: 1 + type: Transform + - uid: 9536 + components: + - pos: 35.5,7.5 + parent: 1 + type: Transform + - uid: 9690 + components: + - pos: -13.5,25.5 + parent: 1 + type: Transform + - uid: 9710 + components: + - pos: -28.5,14.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 6009 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: WaterVaporCanister + entities: + - uid: 6811 + components: + - pos: 43.5,-13.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 780 + components: + - pos: 16.5,12.5 + parent: 1 + type: Transform + - uid: 784 + components: + - pos: 11.5,15.5 + parent: 1 + type: Transform + - uid: 4116 + components: + - pos: -0.5,27.5 + parent: 1 + type: Transform + - uid: 5060 + components: + - pos: 5.5,18.5 + parent: 1 + type: Transform + - uid: 5330 + components: + - pos: 11.5,8.5 + parent: 1 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 5324 + components: + - pos: 19.372377,15.690639 + parent: 1 + type: Transform + - uid: 5325 + components: + - pos: 19.544252,15.612514 + parent: 1 + type: Transform + - uid: 5326 + components: + - pos: 19.747377,15.550014 + parent: 1 + type: Transform + - uid: 5437 + components: + - pos: 16.478151,15.561477 + parent: 1 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 5424 + components: + - pos: 38.328125,13.694345 + parent: 1 + type: Transform + - uid: 5425 + components: + - pos: 38.375,13.58497 + parent: 1 + type: Transform +- proto: WeaponPistolMk58 + entities: + - uid: 5396 + components: + - pos: 29.446836,16.541578 + parent: 1 + type: Transform + - uid: 5422 + components: + - pos: 37.46875,13.61622 + parent: 1 + type: Transform + - uid: 5436 + components: + - pos: 37.546875,13.55372 + parent: 1 + type: Transform +- proto: WeaponRevolverDeckard + entities: + - uid: 4842 + components: + - flags: InContainer + type: MetaData + - parent: 4120 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WeaponRifleLecter + entities: + - uid: 5431 + components: + - pos: 38.533405,11.484736 + parent: 1 + type: Transform +- proto: WeaponShotgunKammerer + entities: + - uid: 5426 + components: + - pos: 38.470905,12.377476 + parent: 1 + type: Transform + - uid: 5427 + components: + - pos: 38.54903,12.330601 + parent: 1 + type: Transform +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 5418 + components: + - pos: 36.546875,13.694345 + parent: 1 + type: Transform +- proto: WeaponSubMachineGunDrozdRubber + entities: + - uid: 5310 + components: + - pos: 18.660734,15.690639 + parent: 1 + type: Transform +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 5385 + components: + - pos: 27.524961,14.648642 + parent: 1 + type: Transform +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 2688 + components: + - pos: -10.5,55.5 + parent: 1 + type: Transform + - uid: 2750 + components: + - pos: -2.5,55.5 + parent: 1 + type: Transform + - uid: 2753 + components: + - pos: -2.5,49.5 + parent: 1 + type: Transform + - uid: 2754 + components: + - pos: -10.5,49.5 + parent: 1 + type: Transform +- proto: WelderIndustrialAdvanced + entities: + - uid: 7139 + components: + - pos: 33.606236,-18.496468 + parent: 1 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 6766 + components: + - pos: 20.5,-8.5 + parent: 1 + type: Transform + - uid: 8858 + components: + - pos: -8.5,-17.5 + parent: 1 + type: Transform + - uid: 8860 + components: + - pos: -31.5,-10.5 + parent: 1 + type: Transform + - uid: 9139 + components: + - pos: 13.5,-18.5 + parent: 1 + type: Transform + - uid: 9178 + components: + - pos: 25.5,-0.5 + parent: 1 + type: Transform + - uid: 9375 + components: + - pos: 21.5,27.5 + parent: 1 + type: Transform + - uid: 9376 + components: + - pos: 10.5,17.5 + parent: 1 + type: Transform + - uid: 9535 + components: + - pos: 36.5,7.5 + parent: 1 + type: Transform + - uid: 9689 + components: + - pos: -14.5,25.5 + parent: 1 + type: Transform + - uid: 9709 + components: + - pos: -28.5,13.5 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 8315 + components: + - pos: -28.5,-14.5 + parent: 1 + type: Transform + - uid: 8759 + components: + - pos: -41.5,-16.5 + parent: 1 + type: Transform +- proto: WindoorChapelLocked + entities: + - uid: 3474 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 1 + type: Transform + - uid: 3475 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,16.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 3290 + components: + - pos: 0.5,18.5 + parent: 1 + type: Transform + - uid: 3350 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 1 + type: Transform + - uid: 3405 + components: + - pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 3406 + components: + - pos: -8.5,12.5 + parent: 1 + type: Transform + - uid: 3407 + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 3408 + components: + - rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 3603 + components: + - pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 3604 + components: + - pos: -8.5,-4.5 + parent: 1 + type: Transform + - uid: 5099 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 5100 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 7245 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 7246 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 7243 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 1 + type: Transform + - uid: 7244 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + type: Transform + - uid: 7288 + components: + - pos: 20.5,-24.5 + parent: 1 + type: Transform + - uid: 7290 + components: + - pos: 21.5,-24.5 + parent: 1 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 3401 + components: + - rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 3402 + components: + - rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + type: Transform + - uid: 3403 + components: + - rot: 3.141592653589793 rad + pos: -8.5,12.5 + parent: 1 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 3614 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,52.5 + parent: 1 + type: Transform + - uid: 3615 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,52.5 + parent: 1 + type: Transform + - uid: 4127 + components: + - pos: -4.5,25.5 + parent: 1 + type: Transform + - uid: 4730 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,19.5 + parent: 1 + type: Transform + - uid: 4972 + components: + - pos: 4.5,30.5 + parent: 1 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 3349 + components: + - pos: 12.5,-9.5 + parent: 1 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 3289 + components: + - rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 1 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 3404 + components: + - pos: -12.5,12.5 + parent: 1 + type: Transform + - uid: 3409 + components: + - pos: -9.5,7.5 + parent: 1 + type: Transform + - uid: 3410 + components: + - pos: -8.5,7.5 + parent: 1 + type: Transform + - uid: 3558 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,21.5 + parent: 1 + type: Transform + - uid: 3559 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 1 + type: Transform +- proto: WindoorSecureSalvageLocked + entities: + - uid: 7297 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-24.5 + parent: 1 + type: Transform + - uid: 7300 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-24.5 + parent: 1 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 3605 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + type: Transform + - uid: 3606 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 1775 + components: + - rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + type: Transform + - uid: 1776 + components: + - rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 1 + type: Transform + - uid: 4900 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 1 + type: Transform + - uid: 5097 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 1 + type: Transform + - uid: 5098 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 1 + type: Transform + - uid: 5535 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - links: + - 12485 + type: DeviceLinkSink + - uid: 5536 + components: + - pos: 15.5,7.5 + parent: 1 + type: Transform + - links: + - 12486 + type: DeviceLinkSink + - uid: 5537 + components: + - pos: 18.5,7.5 + parent: 1 + type: Transform + - links: + - 12487 + type: DeviceLinkSink + - uid: 12003 + components: + - pos: 36.5,13.5 + parent: 1 + type: Transform + - uid: 12004 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,12.5 + parent: 1 + type: Transform + - uid: 12005 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,11.5 + parent: 1 + type: Transform +- proto: WindoorServiceLocked + entities: + - uid: 3375 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 3376 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 3377 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 3378 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 3379 + components: + - rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 3380 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform +- proto: Window + entities: + - uid: 40 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 420 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,28.5 + parent: 1 + type: Transform + - uid: 1604 + components: + - pos: -0.5,-20.5 + parent: 1 + type: Transform + - uid: 1611 + components: + - pos: -0.5,-21.5 + parent: 1 + type: Transform + - uid: 1619 + components: + - pos: -0.5,-22.5 + parent: 1 + type: Transform + - uid: 1625 + components: + - pos: -5.5,-23.5 + parent: 1 + type: Transform + - uid: 1626 + components: + - pos: -4.5,-23.5 + parent: 1 + type: Transform + - uid: 1627 + components: + - pos: -2.5,-23.5 + parent: 1 + type: Transform + - uid: 1628 + components: + - pos: -1.5,-23.5 + parent: 1 + type: Transform + - uid: 1987 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,4.5 + parent: 1 + type: Transform + - uid: 1988 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,4.5 + parent: 1 + type: Transform + - uid: 1989 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,4.5 + parent: 1 + type: Transform + - uid: 1990 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,4.5 + parent: 1 + type: Transform + - uid: 2092 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,0.5 + parent: 1 + type: Transform + - uid: 2110 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,0.5 + parent: 1 + type: Transform + - uid: 2111 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 1 + type: Transform + - uid: 4820 + components: + - pos: 44.5,24.5 + parent: 1 + type: Transform + - uid: 4821 + components: + - pos: 46.5,24.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 315 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,19.5 + parent: 1 + type: Transform + - uid: 316 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 1 + type: Transform +- proto: WindowFrostedDirectional + entities: + - uid: 312 + components: + - pos: -10.5,20.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -11.5,20.5 + parent: 1 + type: Transform + - uid: 3473 + components: + - rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 1 + type: Transform + - uid: 9631 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 1 + type: Transform + - uid: 9632 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,25.5 + parent: 1 + type: Transform + - uid: 12452 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 12453 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 727 + components: + - rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 1 + type: Transform + - uid: 728 + components: + - rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 1 + type: Transform + - uid: 1688 + components: + - pos: 46.5,33.5 + parent: 1 + type: Transform + - uid: 1697 + components: + - pos: 5.5,-19.5 + parent: 1 + type: Transform + - uid: 1698 + components: + - pos: 4.5,-19.5 + parent: 1 + type: Transform + - uid: 1699 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 1 + type: Transform + - uid: 1700 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + type: Transform + - uid: 3556 + components: + - pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 3583 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 1 + type: Transform + - uid: 3798 + components: + - pos: -1.5,17.5 + parent: 1 + type: Transform + - uid: 3799 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 3800 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 4126 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,25.5 + parent: 1 + type: Transform + - uid: 4895 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 1 + type: Transform + - uid: 4969 + components: + - pos: 3.5,30.5 + parent: 1 + type: Transform + - uid: 4970 + components: + - pos: 5.5,30.5 + parent: 1 + type: Transform + - uid: 11963 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,13.5 + parent: 1 + type: Transform + - uid: 12000 + components: + - pos: 38.5,12.5 + parent: 1 + type: Transform + - uid: 12001 + components: + - pos: 38.5,11.5 + parent: 1 + type: Transform + - uid: 12002 + components: + - rot: 3.141592653589793 rad + pos: 38.5,12.5 + parent: 1 + type: Transform +- proto: Wirecutter + entities: + - uid: 6073 + components: + - pos: -6.449393,-15.322836 + parent: 1 + type: Transform +- proto: WoodDoor + entities: + - uid: 3088 + components: + - pos: -34.5,13.5 + parent: 1 + type: Transform + - uid: 3446 + components: + - pos: -37.5,12.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 5603 + components: + - pos: -23.498562,5.5333753 + parent: 1 + type: Transform + - uid: 6090 + components: + - pos: -28.522102,-7.4028454 + parent: 1 + type: Transform +- proto: YellowOxygenTankFilled + entities: + - uid: 8928 + components: + - pos: -33.421288,-7.524516 + parent: 1 + type: Transform + - uid: 9731 + components: + - pos: -28.423817,12.547613 + parent: 1 + type: Transform +... From 66c5549640896189bbdc0a32523f80c80b321671 Mon Sep 17 00:00:00 2001 From: TsjipTsjip <19798667+TsjipTsjip@users.noreply.github.com> Date: Mon, 2 Oct 2023 07:27:42 +0200 Subject: [PATCH 06/17] Rename power infra on omega station (#20654) --- Resources/Maps/omega.yml | 3480 +------------------------------------- 1 file changed, 84 insertions(+), 3396 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index e7b1c41b81e633..56b61dc1ae589e 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -3,32 +3,32 @@ meta: postmapinit: false tilemap: 0: Space - 6: FloorAsteroidSand - 10: FloorAsteroidTile - 11: FloorBar - 14: FloorBlueCircuit - 22: FloorDark - 26: FloorDarkMini - 27: FloorDarkMono - 29: FloorDarkPavement - 34: FloorEighties - 37: FloorFreezer - 40: FloorGrass - 44: FloorGreenCircuit - 48: FloorHydro - 50: FloorLaundry - 51: FloorLino - 55: FloorMono - 60: FloorReinforced - 63: FloorShowroom - 71: FloorSteel - 83: FloorTechMaint - 84: FloorTechMaint2 - 87: FloorWhite - 97: FloorWood - 99: Lattice - 100: Plating - 101: PlatingAsteroid + 7: FloorAsteroidSand + 11: FloorAsteroidTile + 12: FloorBar + 15: FloorBlueCircuit + 26: FloorDark + 30: FloorDarkMini + 31: FloorDarkMono + 33: FloorDarkPavement + 38: FloorEighties + 41: FloorFreezer + 44: FloorGrass + 51: FloorGreenCircuit + 55: FloorHydro + 58: FloorLaundry + 59: FloorLino + 63: FloorMono + 71: FloorReinforced + 74: FloorShowroom + 83: FloorSteel + 95: FloorTechMaint + 96: FloorTechMaint2 + 99: FloorWhite + 109: FloorWood + 111: Lattice + 112: Plating + 113: PlatingAsteroid entities: - proto: "" entities: @@ -52,179 +52,179 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: MwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAAAYQAAAAACFgAAAAADZAAAAAAACwAAAAADRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAACYQAAAAACFgAAAAABZAAAAAAACwAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAACwAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAABYQAAAAABYQAAAAAAFgAAAAABCwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABYQAAAAADYQAAAAACYQAAAAAAFgAAAAADCwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAABYQAAAAABYQAAAAACFgAAAAACCwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAADYQAAAAADYQAAAAAAFgAAAAACCwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAAAYQAAAAACYQAAAAADFgAAAAACCwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAADYQAAAAAAYQAAAAADFgAAAAAACwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAADYQAAAAAAYQAAAAADFgAAAAAACwAAAAACCwAAAAABRwAAAAADRwAAAAAARwAAAAACCwAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABCwAAAAADRwAAAAACRwAAAAADRwAAAAAACwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABCwAAAAACCwAAAAAACwAAAAACCwAAAAACCwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAABCwAAAAABCwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAA + tiles: OwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAAAbQAAAAACGgAAAAADcAAAAAAADAAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAACbQAAAAACGgAAAAABcAAAAAAADAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAADAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbQAAAAABbQAAAAABbQAAAAAAGgAAAAABDAAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABbQAAAAADbQAAAAACbQAAAAAAGgAAAAADDAAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbQAAAAABbQAAAAABbQAAAAACGgAAAAACDAAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAADbQAAAAADbQAAAAAAGgAAAAACDAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAAAbQAAAAACbQAAAAADGgAAAAACDAAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAADbQAAAAAAbQAAAAADGgAAAAAADAAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAADbQAAAAAAbQAAAAADGgAAAAAADAAAAAACDAAAAAABUwAAAAADUwAAAAAAUwAAAAACDAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABDAAAAAADUwAAAAACUwAAAAADUwAAAAAADAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABDAAAAAACDAAAAAAADAAAAAACDAAAAAACDAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAABDAAAAAABDAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAA version: 6 0,0: ind: 0,0 - tiles: CwAAAAABZAAAAAAAFgAAAAAAFgAAAAADFgAAAAACFgAAAAABFgAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAACwAAAAABCwAAAAADCwAAAAADCwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAACwAAAAABCwAAAAABCwAAAAACCwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAACwAAAAAAFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACZAAAAAAAZAAAAAAACwAAAAABFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAACwAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAACwAAAAAAFgAAAAADFgAAAAADFgAAAAADYQAAAAAAYQAAAAABYQAAAAAAYQAAAAACVAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAACwAAAAABFgAAAAADFgAAAAAAFgAAAAADZAAAAAAAYQAAAAADYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAJQAAAAAAJQAAAAAACwAAAAACFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAYQAAAAAAYQAAAAABYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAABRwAAAAAARwAAAAAAFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAABFgAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAAB + tiles: DAAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAADAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAADAAAAAABGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAADAAAAAAAGgAAAAADGgAAAAADGgAAAAADbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADAAAAAABGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAKQAAAAAAKQAAAAAADAAAAAACGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAABUwAAAAAAUwAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAABUwAAAAAAUwAAAAABGgAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAAB version: 6 -1,1: ind: -1,1 - tiles: ZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAAAZAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAADYQAAAAABZAAAAAAAFgAAAAABFgAAAAACZAAAAAAAFgAAAAADLAAAAAAALAAAAAAAFgAAAAABLAAAAAAALAAAAAAAFgAAAAABYQAAAAABYQAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAACFgAAAAADFgAAAAADZAAAAAAAFgAAAAACLAAAAAAAFgAAAAACFgAAAAABFgAAAAADLAAAAAAAFgAAAAABYQAAAAACYQAAAAABYQAAAAAAYQAAAAACYQAAAAABZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAFgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAAAYQAAAAACZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADLAAAAAAAFgAAAAADFgAAAAACJQAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAADZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAPwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAADFgAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAACFgAAAAAD + tiles: cAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAGgAAAAADMwAAAAAAMwAAAAAAGgAAAAABMwAAAAAAMwAAAAAAGgAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAACGgAAAAADGgAAAAADcAAAAAAAGgAAAAACMwAAAAAAGgAAAAACGgAAAAABGgAAAAADMwAAAAAAGgAAAAABbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAABcAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADMwAAAAAAGgAAAAADGgAAAAACKQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAASgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAACGgAAAAAD version: 6 0,1: ind: 0,1 - tiles: RwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAADRwAAAAADRwAAAAACRwAAAAACFgAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAARwAAAAACRwAAAAADRwAAAAACFgAAAAABZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAZAAAAAAARwAAAAACKAAAAAAAKAAAAAAAKAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACFgAAAAABZAAAAAAAFgAAAAADFgAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABFgAAAAADZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAADZAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAYQAAAAACYQAAAAADYQAAAAADYQAAAAADYQAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAADZAAAAAAAFgAAAAACFgAAAAACFgAAAAADYQAAAAABYQAAAAACYQAAAAADYQAAAAAAYQAAAAADFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAFgAAAAADZAAAAAAAFgAAAAACFgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAABZAAAAAAAFgAAAAACYQAAAAABYQAAAAADYQAAAAABPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADFgAAAAADFgAAAAACFgAAAAACFgAAAAACZAAAAAAAFgAAAAAAYQAAAAACYQAAAAACYQAAAAACZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACFgAAAAADFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADFgAAAAAAZAAAAAAAFgAAAAADFgAAAAACZAAAAAAAFgAAAAADFgAAAAADZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAC + tiles: UwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADUwAAAAADUwAAAAACUwAAAAACGgAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAADUwAAAAACGgAAAAABcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAACLAAAAAAALAAAAAAALAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACGgAAAAABcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAADcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAADbQAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAACGgAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAAAbQAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAGgAAAAADcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAGgAAAAACbQAAAAABbQAAAAADbQAAAAABSgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACcAAAAAAAGgAAAAAAbQAAAAACbQAAAAACbQAAAAACcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADGgAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: RwAAAAADRwAAAAABZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABFgAAAAAAZAAAAAAAFgAAAAAAFgAAAAADVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAAFgAAAAADZAAAAAAAYwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABFgAAAAADZAAAAAAAYwAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACRwAAAAACZAAAAAAAYwAAAAAAFgAAAAABVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAACwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAAVAAAAAAAZAAAAAAACwAAAAABZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAACwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAACwAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAABCwAAAAACZAAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAACwAAAAADZAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABVAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAACwAAAAABZAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAA + tiles: UwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAGgAAAAADcAAAAAAAbwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABGgAAAAADcAAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAbwAAAAAAGgAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAADAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAYAAAAAAAcAAAAAAADAAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAADAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABDAAAAAACcAAAAAAAIQAAAAADIQAAAAABIQAAAAACIQAAAAACIQAAAAABIQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAADAAAAAADcAAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAABIQAAAAACIQAAAAABYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAADAAAAAABcAAAAAAAIQAAAAABIQAAAAADIQAAAAACIQAAAAADIQAAAAAAIQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: VwAAAAADVwAAAAABZAAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAABVwAAAAAAZAAAAAAARwAAAAADRwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAADRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAACFgAAAAADMAAAAAAAFgAAAAABKAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAZAAAAAAACwAAAAADCwAAAAABCwAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKAAAAAAAKAAAAAAAZAAAAAAAZAAAAAAACwAAAAABCwAAAAADCwAAAAADCwAAAAACCwAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAACFgAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAABCwAAAAACCwAAAAABRwAAAAADRwAAAAADRwAAAAADCwAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAARwAAAAACCwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAADFgAAAAAAFgAAAAADFgAAAAADRwAAAAACCwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAACwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAACwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAABZAAAAAAACwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADYQAAAAACYQAAAAACFgAAAAABFgAAAAAACwAAAAABRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAAC + tiles: YwAAAAADYwAAAAABcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAADNwAAAAAAGgAAAAABLAAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAABDAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAAALAAAAAAAcAAAAAAAcAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAACDAAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAACGgAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABDAAAAAACDAAAAAABUwAAAAADUwAAAAADUwAAAAADDAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACDAAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAADUwAAAAACDAAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAADAAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAACOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAABOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABcAAAAAAADAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADbQAAAAACbQAAAAACGgAAAAABGgAAAAAADAAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAC version: 6 -2,1: ind: -2,1 - tiles: RwAAAAACRwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAABYQAAAAADYQAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAABRwAAAAADRwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYQAAAAABYQAAAAABYQAAAAACYQAAAAACYQAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAABZAAAAAAAFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAADZAAAAAAAFgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAABFgAAAAABFgAAAAACFgAAAAAAFgAAAAACFgAAAAADFgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAFgAAAAADYQAAAAAAYQAAAAAAYQAAAAACYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAAAZAAAAAAAFgAAAAABYQAAAAABYQAAAAADPwAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAFgAAAAACYQAAAAACYQAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADFgAAAAACZAAAAAAABgAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAACFgAAAAABZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: UwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAABbQAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAADcAAAAAAAGgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAGgAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAGgAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAGgAAAAABbQAAAAABbQAAAAADSgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACbQAAAAACbQAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADGgAAAAACcAAAAAAABwAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACGgAAAAABcAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAYQAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADMgAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADMgAAAAAAVAAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAABFgAAAAADIgAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAABZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADIgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAABZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACRwAAAAADFgAAAAACRwAAAAADRwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAADFgAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAYQAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAADYQAAAAAB + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADOgAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADOgAAAAAAYAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAADJgAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADJgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADGgAAAAACUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADGgAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAAB version: 6 -2,-1: ind: -2,-1 - tiles: FgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAABFgAAAAABYQAAAAACYQAAAAADYQAAAAADYQAAAAADZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAVwAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAYQAAAAAAYQAAAAABYQAAAAADYQAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAFgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAABRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAACZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAFgAAAAAAMAAAAAAAFgAAAAACRwAAAAADRwAAAAACRwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAABRwAAAAABRwAAAAAAFgAAAAACZAAAAAAAFgAAAAAAMAAAAAAAMAAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAADRwAAAAACRwAAAAABFgAAAAADZAAAAAAAFgAAAAABMAAAAAAAFgAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAAFgAAAAADFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADMAAAAAAAMAAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAARwAAAAACVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADZAAAAAAARwAAAAABRwAAAAADRwAAAAAARwAAAAACZAAAAAAAYQAAAAADYQAAAAACZAAAAAAARwAAAAACRwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAAZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAA + tiles: GgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABGgAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAYwAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAGgAAAAABXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAGgAAAAAANwAAAAAAGgAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAABUwAAAAABUwAAAAAAGgAAAAACcAAAAAAAGgAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAADUwAAAAACUwAAAAABGgAAAAADcAAAAAAAGgAAAAABNwAAAAAAGgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADNwAAAAAANwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: BgAAAAAABgAAAAAABgAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAADFgAAAAACFgAAAAADBgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAFgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAADFgAAAAABFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAACFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAADBwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAADGgAAAAABGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: FgAAAAADFgAAAAADFgAAAAABFgAAAAADFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAGZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZQAAAAAAZQAAAAAABgAAAAAAZAAAAAAARwAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZQAAAAAABgAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAADFgAAAAACFgAAAAABFgAAAAACFgAAAAACFgAAAAABBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: GgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcQAAAAAAcQAAAAAABwAAAAAAcAAAAAAAUwAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcQAAAAAABwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAACGgAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,2: ind: 1,2 - tiles: RwAAAAAARwAAAAACZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZAAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACJQAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAACgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UwAAAAAAUwAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACcAAAAAAAKQAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACKQAAAAAAKQAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAACwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAADRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAAARwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACFgAAAAACZAAAAAAAUwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAABFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAACRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAFgAAAAABLAAAAAAALAAAAAAAFgAAAAAALAAAAAAALAAAAAAAFgAAAAACZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAALAAAAAAAFgAAAAADLAAAAAAAFgAAAAACLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAAAZAAAAAAALAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAADFgAAAAABLAAAAAAAFgAAAAACFgAAAAABLAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAALAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAALAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAFgAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABMwAAAAAAMwAAAAAAGgAAAAAAMwAAAAAAMwAAAAAAGgAAAAACcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAAAMwAAAAAAGgAAAAADMwAAAAAAGgAAAAACMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAGgAAAAADMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAADGgAAAAABMwAAAAAAGgAAAAACGgAAAAABMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: ZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: RwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAAARwAAAAAAFgAAAAACZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAABgAAAAAAZAAAAAAAYwAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAGgAAAAACcAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: ZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAACZAAAAAAAYwAAAAAABgAAAAAHBgAAAAAABgAAAAABBgAAAAADBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAACYQAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAFgAAAAADRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAFgAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACRwAAAAABRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAAARwAAAAAD + tiles: cAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAACcAAAAAAAbwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAGgAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: RwAAAAAARwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAARwAAAAABLAAAAAAARwAAAAADRwAAAAADZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAFgAAAAACFgAAAAAAFgAAAAABVwAAAAACVwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAADLAAAAAAALAAAAAAALAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADVwAAAAAAVwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACDgAAAAAADgAAAAAADgAAAAAAZAAAAAAAFgAAAAABFgAAAAACZAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAABDgAAAAAARwAAAAACRwAAAAADZAAAAAAAFgAAAAACFgAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAABRwAAAAACFgAAAAABFgAAAAABZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAAARwAAAAABRwAAAAABZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAFgAAAAACZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAFgAAAAADFgAAAAAAFgAAAAADFgAAAAACFgAAAAADRwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAACFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAAFgAAAAACFgAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAAFgAAAAACFgAAAAABFgAAAAACFgAAAAADFgAAAAABFgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAADFgAAAAACFgAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAADFgAAAAABZAAAAAAAFgAAAAADFgAAAAABZAAAAAAADgAAAAAAFgAAAAABDgAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACRwAAAAABFgAAAAADZAAAAAAAFgAAAAABFgAAAAABZAAAAAAADgAAAAAAFgAAAAACDgAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAFgAAAAAAFgAAAAAAFgAAAAACRwAAAAAAFgAAAAAAZAAAAAAAFgAAAAABFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: UwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAABMwAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABYwAAAAACYwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADYwAAAAAAYwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACDwAAAAAADwAAAAAADwAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABDwAAAAAAUwAAAAACUwAAAAADcAAAAAAAGgAAAAACGgAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACGgAAAAABGgAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAACcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADGgAAAAABcAAAAAAAGgAAAAADGgAAAAABcAAAAAAADwAAAAAAGgAAAAABDwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACUwAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAABcAAAAAAADwAAAAAAGgAAAAACDwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAACUwAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAADRwAAAAABZAAAAAAAVwAAAAACRwAAAAACRwAAAAACRwAAAAADZAAAAAAAVwAAAAADVwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAADZAAAAAAARwAAAAAARwAAAAACRwAAAAABZAAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAACRwAAAAACZAAAAAAARwAAAAABRwAAAAABZAAAAAAARwAAAAACRwAAAAABRwAAAAACZAAAAAAAVwAAAAABVwAAAAACVwAAAAADVwAAAAABVwAAAAAAVwAAAAACVwAAAAABRwAAAAABZAAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAAAZAAAAAAARwAAAAABVwAAAAABRwAAAAABVwAAAAADZAAAAAAAVwAAAAADVwAAAAAARwAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAVwAAAAAAVwAAAAADZAAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAAAVwAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAAAVwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAACRwAAAAADRwAAAAACVwAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAADVwAAAAADVwAAAAAAVwAAAAADVwAAAAADRwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAAAVwAAAAABVwAAAAABZAAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAABZAAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABZAAAAAAAZAAAAAAARwAAAAACRwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAVwAAAAABVwAAAAADZAAAAAAAVwAAAAAAVwAAAAACVwAAAAABVwAAAAAAVwAAAAABZAAAAAAARwAAAAADRwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAACVwAAAAADZAAAAAAAVwAAAAACVwAAAAAAVwAAAAADVwAAAAACVwAAAAACZAAAAAAARwAAAAADRwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAAVwAAAAACZAAAAAAAVwAAAAACVwAAAAADVwAAAAADVwAAAAACVwAAAAAAZAAAAAAARwAAAAAARwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAAYwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAYwAAAAADYwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAADcAAAAAAAYwAAAAACYwAAAAACUwAAAAACcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABYwAAAAABUwAAAAABYwAAAAADcAAAAAAAYwAAAAADYwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAYwAAAAABYwAAAAABcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAABcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAYwAAAAABYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAAAYwAAAAABcAAAAAAAUwAAAAADUwAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACYwAAAAADcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAACYwAAAAACcAAAAAAAUwAAAAADUwAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAAAYwAAAAACcAAAAAAAYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAYwAAAAAAKAAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAADKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAABKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAACZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAADFgAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAACFgAAAAACZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAADMwAAAAAAMwAAAAAAFgAAAAAAFgAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAD + tiles: AAAAAAAAbwAAAAAALAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADLAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAALAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABLAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAALAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACLAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADOwAAAAAAOwAAAAAAGgAAAAAAGgAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAD version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAZAAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAVwAAAAADZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAFgAAAAABFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAAARwAAAAADZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAFgAAAAADLAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAGgAAAAADMwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAARwAAAAACRwAAAAADZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAKAAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACKAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAALAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACLAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAADRwAAAAACRwAAAAADZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAARwAAAAADRwAAAAADRwAAAAADZAAAAAAAFgAAAAADFgAAAAACZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAARwAAAAABFgAAAAADZAAAAAAARwAAAAACRwAAAAABZAAAAAAARwAAAAABVwAAAAACVwAAAAADVwAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAADRwAAAAABZAAAAAAARwAAAAAAFgAAAAADZAAAAAAARwAAAAABRwAAAAACZAAAAAAARwAAAAACVwAAAAAAVwAAAAADVwAAAAADRwAAAAACRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAADFgAAAAAAFgAAAAADRwAAAAACRwAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAFgAAAAADFgAAAAACZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAAARwAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAAARwAAAAACZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABFgAAAAABFgAAAAAAFgAAAAACFgAAAAADFgAAAAABFgAAAAACFgAAAAACZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAABRwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAFgAAAAABFgAAAAACFgAAAAACFgAAAAADRwAAAAAARwAAAAABRwAAAAABYQAAAAAAYQAAAAABYQAAAAABYQAAAAAAYQAAAAAAYQAAAAABZAAAAAAABgAAAAAABgAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAADYQAAAAACZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAYQAAAAACYQAAAAAAYQAAAAADZAAAAAAABgAAAAAAZAAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAADYQAAAAACZAAAAAAABgAAAAAHBgAAAAAAZAAAAAAAVAAAAAAAYQAAAAABYQAAAAAAYQAAAAADZAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAADZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAACAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAABGgAAAAADcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABYwAAAAACYwAAAAADYwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACYwAAAAAAYwAAAAADYwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADGgAAAAAAGgAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADUwAAAAAAUwAAAAABUwAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAABwAAAAAABwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAADbQAAAAACcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADcAAAAAAABwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAACcAAAAAAABwAAAAAHBwAAAAAAcAAAAAAAYAAAAAAAbQAAAAABbQAAAAAAbQAAAAADcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAADcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAVAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAACFgAAAAAAFgAAAAACFgAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAACZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAADFgAAAAADFgAAAAABFgAAAAADZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAABZAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAADcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAABcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAACZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAAAZAAAAAAABgAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAABwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAGBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAABFgAAAAABZAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAADZAAAAAAAFgAAAAABFgAAAAADFgAAAAADZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAABcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: BgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAARwAAAAABRwAAAAADZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAADRwAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAACRwAAAAAAZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAACRwAAAAAAZAAAAAAARwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADZAAAAAAARwAAAAADRwAAAAAAZAAAAAAARwAAAAADRwAAAAACZAAAAAAARwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAADZAAAAAAARwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAACRwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAADZAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAACRwAAAAACRwAAAAABRwAAAAABZAAAAAAARwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAADRwAAAAABRwAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAADZAAAAAAAZAAAAAAARwAAAAACRwAAAAACRwAAAAADRwAAAAABRwAAAAAARwAAAAAARwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAAZAAAAAAARwAAAAABRwAAAAABRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAAARwAAAAADZAAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAADRwAAAAABRwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAABRwAAAAABZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAARwAAAAAARwAAAAADRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAD + tiles: BwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAABYQAAAAACZAAAAAAAYQAAAAACYQAAAAABYQAAAAADYQAAAAABZAAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAADYQAAAAABZAAAAAAAYQAAAAADYQAAAAACYQAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAACYQAAAAADYQAAAAACZAAAAAAAZAAAAAAABgAAAAAABgAAAAAAZAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAAAYQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAACFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAABRwAAAAACZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAADRwAAAAABZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAABBgAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAARwAAAAABRwAAAAAAZAAAAAAARwAAAAAARwAAAAABZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAFgAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAANwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAABcAAAAAAABwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABcAAAAAAAbQAAAAADbQAAAAACbQAAAAAABwAAAAAABwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAABwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABBwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAFgAAAAABFgAAAAAAFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAABZAAAAAAAVwAAAAABVwAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAABZAAAAAAAFgAAAAABFgAAAAABFgAAAAACZAAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAACVwAAAAADVwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAADZAAAAAAAVwAAAAACVwAAAAABVwAAAAABVwAAAAADZAAAAAAAVwAAAAACVwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAABFgAAAAACFgAAAAABZAAAAAAAFgAAAAAAFgAAAAABFgAAAAADFgAAAAAAZAAAAAAAVwAAAAACVwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAADVwAAAAABVwAAAAACVwAAAAABVwAAAAACVwAAAAACVwAAAAACVwAAAAADVwAAAAABVwAAAAACVwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAACVwAAAAADVwAAAAABZAAAAAAAVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAABVwAAAAAAVwAAAAABMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAVwAAAAABVwAAAAABVwAAAAADVwAAAAABVwAAAAACMwAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAADYQAAAAABYQAAAAACYQAAAAACYQAAAAABYQAAAAAAZAAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAACVwAAAAADFgAAAAAAFgAAAAAAFgAAAAABYQAAAAACYQAAAAACYQAAAAABYQAAAAABYQAAAAADYQAAAAABYQAAAAABZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACYQAAAAACYQAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAACYQAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADZAAAAAAAVwAAAAADFgAAAAABFgAAAAAAFgAAAAAAYQAAAAABYQAAAAABYQAAAAADYQAAAAABYQAAAAADYQAAAAACYQAAAAACZAAAAAAAFgAAAAABFgAAAAADFgAAAAAAFgAAAAABVwAAAAADFgAAAAACFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAADYQAAAAADYQAAAAABYQAAAAABYQAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAACZAAAAAAAVwAAAAAD + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAYwAAAAABYwAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAABOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAABcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAABOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABYwAAAAACOwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAACYwAAAAADGgAAAAAAGgAAAAAAGgAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAYwAAAAADGgAAAAABGgAAAAAAGgAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAACcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABYwAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAADbQAAAAADbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAYwAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAABZAAAAAAACwAAAAADCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAACwAAAAACCwAAAAADZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAACGgAAAAACGgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAACwAAAAADCwAAAAACCwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAGgAAAAAAGgAAAAADZAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADYQAAAAAAYQAAAAADZAAAAAAAFgAAAAAAFgAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAADYQAAAAABYQAAAAACZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAADFgAAAAAAYQAAAAABYQAAAAACYQAAAAADZAAAAAAAYQAAAAAAYQAAAAACZAAAAAAAYQAAAAADYQAAAAAAYQAAAAAAFgAAAAADZAAAAAAAMwAAAAAAMwAAAAAAFgAAAAADFgAAAAADZAAAAAAAYQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAYQAAAAADZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAGwAAAAADFgAAAAABZAAAAAAAMwAAAAAAMwAAAAAAFgAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAUwAAAAAAZAAAAAAAGwAAAAADFgAAAAABZAAAAAAAFgAAAAACFgAAAAACFgAAAAACFgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAABcAAAAAAADAAAAAADDAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAACHgAAAAACHgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAACDAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAHgAAAAAAHgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAGgAAAAAAGgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAAAbQAAAAABbQAAAAACbQAAAAADcAAAAAAAbQAAAAAAbQAAAAACcAAAAAAAbQAAAAADbQAAAAAAbQAAAAAAGgAAAAADcAAAAAAAOwAAAAAAOwAAAAAAGgAAAAADGgAAAAADcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADGgAAAAABcAAAAAAAOwAAAAAAOwAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAHwAAAAADGgAAAAABcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAUwAAAAAA + tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACSgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: ZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABZAAAAAAARwAAAAACRwAAAAAARwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAADRwAAAAABRwAAAAAARwAAAAACRwAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACZAAAAAAARwAAAAACRwAAAAACRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAACZAAAAAAARwAAAAADRwAAAAADRwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAARwAAAAABZAAAAAAARwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAACFgAAAAACFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAABZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAPwAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAABPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAABgAAAAAHBgAAAAAABgAAAAAAZAAAAAAAFgAAAAABPwAAAAAAPwAAAAAAPwAAAAAAZAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAABSgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAcAAAAAAAGgAAAAABSgAAAAAASgAAAAAASgAAAAAAcAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAJQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAVwAAAAAAVwAAAAABVwAAAAAARwAAAAACRwAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAVwAAAAADVwAAAAADVwAAAAADRwAAAAADRwAAAAAAZAAAAAAAVwAAAAAAVwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAVwAAAAABVwAAAAACVwAAAAAARwAAAAAARwAAAAABVwAAAAADVwAAAAACVwAAAAACVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAADUwAAAAADUwAAAAAAcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAAAUwAAAAAAUwAAAAABYwAAAAADYwAAAAACYwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAACZAAAAAAARwAAAAACRwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAACFgAAAAADFgAAAAACRwAAAAADRwAAAAABRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAABFgAAAAACZAAAAAAAZAAAAAAARwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAADFgAAAAAAFgAAAAAAZAAAAAAARwAAAAAARwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAFgAAAAACFgAAAAADFgAAAAADZAAAAAAARwAAAAAARwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAARwAAAAACRwAAAAAARwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAGBgAAAAAAZAAAAAAABgAAAAAABgAAAAABBgAAAAAAZAAAAAAAFgAAAAABFgAAAAAAFgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACBgAAAAAABgAAAAADBgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAACUwAAAAADUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAAcAAAAAAABwAAAAAABwAAAAABBwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAABgAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAUwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAZAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAYwAAAAAAZAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -10598,8 +10598,6 @@ entities: - pos: -13.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 916 components: - pos: 7.5,2.5 @@ -10610,29 +10608,21 @@ entities: - pos: -8.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1126 components: - pos: -8.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1127 components: - pos: -9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1128 components: - pos: -10.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1129 components: - pos: -10.5,-4.5 @@ -10838,106 +10828,76 @@ entities: - pos: -11.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1170 components: - pos: -12.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1171 components: - pos: -12.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1172 components: - pos: -12.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1173 components: - pos: -12.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1174 components: - pos: -12.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1175 components: - pos: -12.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1176 components: - pos: -12.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1177 components: - pos: -13.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1178 components: - pos: -14.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1179 components: - pos: -15.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1180 components: - pos: -16.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1181 components: - pos: -17.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1182 components: - pos: -18.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1183 components: - pos: -19.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1184 components: - pos: -20.5,-3.5 @@ -10948,15 +10908,11 @@ entities: - pos: -20.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1186 components: - pos: -21.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1187 components: - pos: -21.5,-5.5 @@ -10987,8 +10943,6 @@ entities: - pos: -7.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1193 components: - pos: -6.5,-3.5 @@ -11109,8 +11063,6 @@ entities: - pos: -12.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1217 components: - pos: -12.5,15.5 @@ -11131,50 +11083,36 @@ entities: - pos: -12.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1221 components: - pos: -12.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1222 components: - pos: -12.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1223 components: - pos: -12.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1224 components: - pos: -12.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1225 components: - pos: -13.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1226 components: - pos: -14.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1227 components: - pos: -15.5,10.5 @@ -11225,50 +11163,36 @@ entities: - pos: -12.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1237 components: - pos: -12.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1238 components: - pos: -12.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1239 components: - pos: -12.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1240 components: - pos: -12.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1241 components: - pos: -14.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1242 components: - pos: -15.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1243 components: - pos: -16.5,2.5 @@ -11409,43 +11333,31 @@ entities: - pos: -11.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1276 components: - pos: -10.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1277 components: - pos: -9.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1278 components: - pos: -8.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1279 components: - pos: -7.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1280 components: - pos: -6.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1281 components: - pos: -5.5,13.5 @@ -11481,57 +11393,41 @@ entities: - pos: 7.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1288 components: - pos: 7.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1289 components: - pos: 6.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1290 components: - pos: 5.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1291 components: - pos: 4.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1292 components: - pos: 3.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1293 components: - pos: 3.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1294 components: - pos: 2.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1295 components: - pos: 7.5,-7.5 @@ -11617,8 +11513,6 @@ entities: - pos: 9.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1312 components: - pos: 1.5,-8.5 @@ -11679,64 +11573,46 @@ entities: - pos: 8.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1324 components: - pos: 9.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1325 components: - pos: 9.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1326 components: - pos: 9.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1327 components: - pos: 9.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1328 components: - pos: 9.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1329 components: - pos: 9.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1330 components: - pos: 9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1331 components: - pos: 9.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1332 components: - pos: 8.5,-10.5 @@ -11882,15 +11758,11 @@ entities: - pos: 7.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1362 components: - pos: 8.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1363 components: - pos: 11.5,3.5 @@ -11906,22 +11778,16 @@ entities: - pos: 9.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1366 components: - pos: 9.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1369 components: - pos: 9.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1370 components: - pos: 11.5,4.5 @@ -11992,134 +11858,96 @@ entities: - pos: 9.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1384 components: - pos: 9.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1385 components: - pos: 9.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1386 components: - pos: 9.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1387 components: - pos: 9.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1388 components: - pos: 9.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1389 components: - pos: 9.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1390 components: - pos: 9.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1391 components: - pos: 8.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1392 components: - pos: 7.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1393 components: - pos: 6.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1394 components: - pos: 5.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1395 components: - pos: 4.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1396 components: - pos: 3.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1397 components: - pos: 3.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1398 components: - pos: 3.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1399 components: - pos: 3.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1400 components: - pos: 2.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1401 components: - pos: 1.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1402 components: - pos: 11.5,17.5 @@ -12265,22 +12093,16 @@ entities: - pos: 6.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1432 components: - pos: 5.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1433 components: - pos: 4.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1434 components: - pos: 3.5,2.5 @@ -12421,8 +12243,6 @@ entities: - pos: 8.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1547 components: - pos: 7.5,8.5 @@ -12433,8 +12253,6 @@ entities: - pos: -6.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2245 components: - pos: -5.5,31.5 @@ -12695,8 +12513,6 @@ entities: - pos: 9.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2297 components: - pos: 9.5,26.5 @@ -12857,8 +12673,6 @@ entities: - pos: 0.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2329 components: - pos: 0.5,20.5 @@ -13049,8 +12863,6 @@ entities: - pos: -14.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2368 components: - pos: -14.5,24.5 @@ -13146,8 +12958,6 @@ entities: - pos: -11.5,-57.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2815 components: - pos: 16.5,35.5 @@ -13173,15 +12983,11 @@ entities: - pos: 21.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2833 components: - pos: 11.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2846 components: - pos: 18.5,35.5 @@ -13197,8 +13003,6 @@ entities: - pos: 22.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2865 components: - pos: 16.5,32.5 @@ -13224,22 +13028,16 @@ entities: - pos: 22.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3039 components: - pos: 21.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3136 components: - pos: 17.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3137 components: - pos: 17.5,23.5 @@ -13435,22 +13233,16 @@ entities: - pos: 25.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3180 components: - pos: 26.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3181 components: - pos: 27.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3182 components: - pos: 18.5,14.5 @@ -13486,85 +13278,61 @@ entities: - pos: 12.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3196 components: - pos: 12.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3197 components: - pos: 12.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3198 components: - pos: 12.5,29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3199 components: - pos: 12.5,28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3200 components: - pos: 12.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3201 components: - pos: 12.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3202 components: - pos: 12.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3203 components: - pos: 12.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3204 components: - pos: 12.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3205 components: - pos: 12.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3897 components: - pos: 11.5,51.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3898 components: - pos: 11.5,50.5 @@ -13640,8 +13408,6 @@ entities: - pos: 15.5,46.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3913 components: - pos: 9.5,45.5 @@ -13672,15 +13438,11 @@ entities: - pos: 4.5,45.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3919 components: - pos: 3.5,45.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3920 components: - pos: 6.5,46.5 @@ -13811,8 +13573,6 @@ entities: - pos: 22.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4258 components: - pos: 22.5,-2.5 @@ -13888,197 +13648,141 @@ entities: - pos: 22.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4273 components: - pos: 21.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4274 components: - pos: 20.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4275 components: - pos: 19.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4276 components: - pos: 18.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4277 components: - pos: 17.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4278 components: - pos: 16.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4279 components: - pos: 15.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4280 components: - pos: 15.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4281 components: - pos: 15.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4282 components: - pos: 15.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4283 components: - pos: 15.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4284 components: - pos: 15.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4285 components: - pos: 16.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4286 components: - pos: 17.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4287 components: - pos: 18.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4288 components: - pos: 18.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4289 components: - pos: 18.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4290 components: - pos: 18.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4291 components: - pos: 18.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4292 components: - pos: 18.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4293 components: - pos: 18.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4294 components: - pos: 17.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4295 components: - pos: 16.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4296 components: - pos: 15.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4297 components: - pos: 14.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4298 components: - pos: 19.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4299 components: - pos: 20.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4300 components: - pos: 23.5,-2.5 @@ -14164,15 +13868,11 @@ entities: - pos: 32.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4317 components: - pos: 33.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4318 components: - pos: 31.5,0.5 @@ -14183,15 +13883,11 @@ entities: - pos: 32.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4320 components: - pos: 33.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4321 components: - pos: 30.5,-3.5 @@ -14237,15 +13933,11 @@ entities: - pos: 32.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4330 components: - pos: 33.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4331 components: - pos: 31.5,-5.5 @@ -14256,15 +13948,11 @@ entities: - pos: 32.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4333 components: - pos: 33.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4334 components: - pos: 29.5,-7.5 @@ -14385,8 +14073,6 @@ entities: - pos: 19.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4358 components: - pos: 23.5,-7.5 @@ -14402,57 +14088,41 @@ entities: - pos: 21.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4361 components: - pos: 20.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4362 components: - pos: 19.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4363 components: - pos: 18.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4364 components: - pos: 17.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4365 components: - pos: 16.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4366 components: - pos: 15.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4367 components: - pos: 15.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4368 components: - pos: 15.5,-5.5 @@ -14468,15 +14138,11 @@ entities: - pos: -13.5,-50.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4689 components: - pos: -11.5,-56.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4690 components: - pos: -11.5,-55.5 @@ -14492,8 +14158,6 @@ entities: - pos: -18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4864 components: - pos: -13.5,-27.5 @@ -14519,8 +14183,6 @@ entities: - pos: -23.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4894 components: - pos: -14.5,-27.5 @@ -14531,8 +14193,6 @@ entities: - pos: -27.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4896 components: - pos: -26.5,-25.5 @@ -14583,8 +14243,6 @@ entities: - pos: -23.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4907 components: - pos: -24.5,-22.5 @@ -14620,8 +14278,6 @@ entities: - pos: -18.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4930 components: - pos: -20.5,-12.5 @@ -14702,15 +14358,11 @@ entities: - pos: -17.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5041 components: - pos: -11.5,-58.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5044 components: - pos: -19.5,-20.5 @@ -14741,8 +14393,6 @@ entities: - pos: -12.5,-50.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5232 components: - pos: -11.5,-50.5 @@ -14758,29 +14408,21 @@ entities: - pos: -9.5,-50.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5235 components: - pos: -8.5,-50.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5236 components: - pos: -8.5,-43.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5237 components: - pos: -9.5,-43.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5238 components: - pos: -10.5,-43.5 @@ -14796,15 +14438,11 @@ entities: - pos: -12.5,-43.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5241 components: - pos: -13.5,-43.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5242 components: - pos: -11.5,-53.5 @@ -14960,8 +14598,6 @@ entities: - pos: -8.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5364 components: - pos: -14.5,-22.5 @@ -14972,8 +14608,6 @@ entities: - pos: 6.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6023 components: - pos: 6.5,-18.5 @@ -15019,8 +14653,6 @@ entities: - pos: 13.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6032 components: - pos: 6.5,-21.5 @@ -15176,8 +14808,6 @@ entities: - pos: 12.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6066 components: - pos: 9.5,-22.5 @@ -15248,8 +14878,6 @@ entities: - pos: 28.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6080 components: - pos: 28.5,-20.5 @@ -15355,8 +14983,6 @@ entities: - pos: 10.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6101 components: - pos: 16.5,-19.5 @@ -15367,15 +14993,11 @@ entities: - pos: 16.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6103 components: - pos: 16.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6104 components: - pos: 17.5,-17.5 @@ -15451,78 +15073,56 @@ entities: - pos: 18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6120 components: - pos: 18.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6121 components: - pos: 18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6122 components: - pos: 18.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6123 components: - pos: 18.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6124 components: - pos: 18.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6125 components: - pos: 17.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6126 components: - pos: 16.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6127 components: - pos: 15.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6128 components: - pos: 15.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6129 components: - pos: 15.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6130 components: - pos: 15.5,-24.5 @@ -15693,8 +15293,6 @@ entities: - pos: 16.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6551 components: - pos: -23.5,-12.5 @@ -15715,8 +15313,6 @@ entities: - pos: -15.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6610 components: - pos: -15.5,-16.5 @@ -15757,8 +15353,6 @@ entities: - pos: -17.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6846 components: - pos: -17.5,-32.5 @@ -15919,127 +15513,91 @@ entities: - pos: -17.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6878 components: - pos: -16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6879 components: - pos: -15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6880 components: - pos: -14.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6881 components: - pos: -13.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6882 components: - pos: -12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6883 components: - pos: -11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6884 components: - pos: -10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6886 components: - pos: -10.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6887 components: - pos: -10.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6888 components: - pos: -18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6889 components: - pos: -19.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6890 components: - pos: -20.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6891 components: - pos: -21.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6892 components: - pos: -22.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6893 components: - pos: -23.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6894 components: - pos: -24.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7091 components: - pos: -24.5,-10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7092 components: - pos: -24.5,-11.5 @@ -16230,8 +15788,6 @@ entities: - pos: -11.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7420 components: - pos: -11.5,-22.5 @@ -16267,8 +15823,6 @@ entities: - pos: -1.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7490 components: - pos: -1.5,-21.5 @@ -16719,8 +16273,6 @@ entities: - pos: -36.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8062 components: - pos: -36.5,12.5 @@ -17081,8 +16633,6 @@ entities: - pos: -24.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8134 components: - pos: -27.5,31.5 @@ -17098,22 +16648,16 @@ entities: - pos: -27.5,33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8137 components: - pos: -28.5,33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8138 components: - pos: -29.5,33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8139 components: - pos: -31.5,31.5 @@ -17129,8 +16673,6 @@ entities: - pos: -19.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8198 components: - pos: -19.5,20.5 @@ -17276,106 +16818,76 @@ entities: - pos: -17.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8321 components: - pos: -17.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8322 components: - pos: -17.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8323 components: - pos: -17.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8324 components: - pos: -17.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8325 components: - pos: -17.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8326 components: - pos: -17.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8327 components: - pos: -17.5,28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8908 components: - pos: -33.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8909 components: - pos: -33.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8910 components: - pos: -32.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8911 components: - pos: -31.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8912 components: - pos: -30.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8913 components: - pos: -29.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8914 components: - pos: -29.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8915 components: - pos: -29.5,-27.5 @@ -17391,43 +16903,31 @@ entities: - pos: -29.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8918 components: - pos: -29.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8919 components: - pos: -29.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8920 components: - pos: -30.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8921 components: - pos: -30.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8922 components: - pos: -30.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8923 components: - pos: -30.5,-34.5 @@ -17488,22 +16988,16 @@ entities: - pos: -32.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8935 components: - pos: -33.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8936 components: - pos: -31.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8937 components: - pos: -32.5,-33.5 @@ -17569,533 +17063,381 @@ entities: - pos: 13.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9050 components: - pos: -50.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9090 components: - pos: 32.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9288 components: - pos: -38.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9321 components: - pos: -38.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9322 components: - pos: -38.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9323 components: - pos: -38.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9324 components: - pos: -38.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9325 components: - pos: -38.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9326 components: - pos: -38.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9327 components: - pos: -39.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9328 components: - pos: -40.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9329 components: - pos: -41.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9330 components: - pos: -42.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9331 components: - pos: -43.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9332 components: - pos: -44.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9333 components: - pos: -45.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9334 components: - pos: -46.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9335 components: - pos: -47.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9336 components: - pos: -48.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9337 components: - pos: -49.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9338 components: - pos: -51.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9339 components: - pos: -52.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9340 components: - pos: -53.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9341 components: - pos: -54.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9342 components: - pos: -54.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9343 components: - pos: -54.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9344 components: - pos: -54.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9345 components: - pos: -54.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9346 components: - pos: -54.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9347 components: - pos: -54.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9348 components: - pos: -54.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9349 components: - pos: -54.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9350 components: - pos: -54.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9351 components: - pos: -54.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9352 components: - pos: -54.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9353 components: - pos: -54.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9354 components: - pos: -53.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9355 components: - pos: -52.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9356 components: - pos: -51.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9357 components: - pos: -50.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9358 components: - pos: -49.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9359 components: - pos: -48.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9360 components: - pos: -48.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9361 components: - pos: -48.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9362 components: - pos: -48.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9363 components: - pos: -48.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9364 components: - pos: -48.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9365 components: - pos: -48.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9366 components: - pos: -48.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9367 components: - pos: -48.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9368 components: - pos: -48.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9369 components: - pos: -48.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9370 components: - pos: -48.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9371 components: - pos: -48.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9372 components: - pos: -48.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9373 components: - pos: -48.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9374 components: - pos: -48.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9375 components: - pos: -47.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9376 components: - pos: -46.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9377 components: - pos: -45.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9378 components: - pos: -44.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9379 components: - pos: -43.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9380 components: - pos: -42.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9381 components: - pos: -41.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9382 components: - pos: -44.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9383 components: - pos: -44.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9384 components: - pos: -44.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9385 components: - pos: -44.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9386 components: - pos: -44.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9387 components: - pos: -44.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9388 components: - pos: -44.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9389 components: - pos: -44.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9390 components: - pos: -44.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9391 components: - pos: -44.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9392 components: - pos: -44.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9393 components: - pos: -37.5,2.5 @@ -18166,176 +17508,126 @@ entities: - pos: -39.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9407 components: - pos: -40.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9408 components: - pos: -41.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9409 components: - pos: -42.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9410 components: - pos: -43.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9411 components: - pos: -42.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9458 components: - pos: -50.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9459 components: - pos: -50.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9460 components: - pos: -50.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9461 components: - pos: -50.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9462 components: - pos: -50.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9463 components: - pos: -50.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9464 components: - pos: -50.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9465 components: - pos: -50.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9466 components: - pos: -50.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9467 components: - pos: -50.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9468 components: - pos: -50.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9512 components: - pos: -36.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9523 components: - pos: 17.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9525 components: - pos: -47.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9526 components: - pos: -47.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9527 components: - pos: -47.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9528 components: - pos: -47.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9529 components: - pos: -48.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9530 components: - pos: -49.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9540 components: - pos: -36.5,1.5 @@ -18346,15 +17638,11 @@ entities: - pos: -36.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9547 components: - pos: -36.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9559 components: - pos: -39.5,-0.5 @@ -18380,113 +17668,81 @@ entities: - pos: -36.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9695 components: - pos: -36.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9696 components: - pos: -36.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9697 components: - pos: -36.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9708 components: - pos: -42.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9709 components: - pos: -42.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9710 components: - pos: -42.5,16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9711 components: - pos: -42.5,17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9712 components: - pos: -43.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9713 components: - pos: -44.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9714 components: - pos: -45.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9715 components: - pos: -46.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9716 components: - pos: -46.5,16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9717 components: - pos: -46.5,17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9718 components: - pos: -46.5,18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10041 components: - pos: -41.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10042 components: - pos: -41.5,-5.5 @@ -18557,64 +17813,46 @@ entities: - pos: -44.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10056 components: - pos: -44.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10057 components: - pos: -44.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10058 components: - pos: -44.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10059 components: - pos: -45.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10060 components: - pos: -45.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10061 components: - pos: -43.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10062 components: - pos: -46.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10063 components: - pos: -47.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10064 components: - pos: -45.5,-12.5 @@ -18720,50 +17958,36 @@ entities: - pos: -40.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10086 components: - pos: -40.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10087 components: - pos: -40.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10088 components: - pos: -40.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10089 components: - pos: -40.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10090 components: - pos: -40.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10091 components: - pos: -40.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10092 components: - pos: -39.5,-8.5 @@ -18994,365 +18218,261 @@ entities: - pos: -36.5,-10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10138 components: - pos: -36.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10139 components: - pos: -36.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10140 components: - pos: -36.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10141 components: - pos: -36.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10142 components: - pos: -36.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10143 components: - pos: -36.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10144 components: - pos: -36.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10145 components: - pos: -36.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10146 components: - pos: -35.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10147 components: - pos: -34.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10148 components: - pos: -33.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10149 components: - pos: -32.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10150 components: - pos: -31.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10151 components: - pos: -30.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10152 components: - pos: -29.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10190 components: - pos: -51.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10191 components: - pos: -51.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10192 components: - pos: -52.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10193 components: - pos: -53.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10194 components: - pos: -54.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10195 components: - pos: -55.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10196 components: - pos: -51.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10197 components: - pos: -51.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10198 components: - pos: -51.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10199 components: - pos: -50.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10200 components: - pos: -49.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10201 components: - pos: -48.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10202 components: - pos: -47.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10203 components: - pos: -46.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10204 components: - pos: -45.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10205 components: - pos: -34.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10206 components: - pos: -35.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10207 components: - pos: -36.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10208 components: - pos: -37.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10209 components: - pos: -38.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10210 components: - pos: -39.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10211 components: - pos: -40.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10212 components: - pos: -40.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10213 components: - pos: -40.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10214 components: - pos: -40.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10215 components: - pos: -40.5,-27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10216 components: - pos: -40.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10217 components: - pos: -40.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10218 components: - pos: -40.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10219 components: - pos: -40.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10220 components: - pos: -40.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10221 components: - pos: -40.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10222 components: - pos: -41.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10223 components: - pos: -42.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10508 components: - pos: -34.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10509 components: - pos: -34.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10510 components: - pos: -34.5,-27.5 @@ -19368,8 +18488,6 @@ entities: - pos: -35.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10513 components: - pos: -36.5,-28.5 @@ -19410,15 +18528,11 @@ entities: - pos: -44.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10615 components: - pos: -40.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10656 components: - pos: -54.5,-12.5 @@ -19429,8 +18543,6 @@ entities: - pos: -55.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10665 components: - pos: -48.5,-7.5 @@ -19446,57 +18558,41 @@ entities: - pos: -37.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10884 components: - pos: -36.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10885 components: - pos: -35.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10886 components: - pos: -34.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10887 components: - pos: -33.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10888 components: - pos: -32.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10889 components: - pos: -31.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10890 components: - pos: -30.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10891 components: - pos: -26.5,5.5 @@ -19537,85 +18633,61 @@ entities: - pos: 9.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11169 components: - pos: 9.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11170 components: - pos: 9.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11171 components: - pos: 9.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11172 components: - pos: 9.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11173 components: - pos: 9.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11174 components: - pos: 9.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11175 components: - pos: 9.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11176 components: - pos: 9.5,-42.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11177 components: - pos: 10.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11178 components: - pos: 11.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11179 components: - pos: 12.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11180 components: - pos: 13.5,-41.5 @@ -19626,22 +18698,16 @@ entities: - pos: 8.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11182 components: - pos: 7.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11183 components: - pos: 6.5,-41.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11184 components: - pos: 5.5,-41.5 @@ -19657,43 +18723,31 @@ entities: - pos: 11.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11187 components: - pos: 12.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11188 components: - pos: 13.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11189 components: - pos: 8.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11190 components: - pos: 7.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11191 components: - pos: 6.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11192 components: - pos: 5.5,-37.5 @@ -19704,15 +18758,11 @@ entities: - pos: 9.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11194 components: - pos: 9.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11195 components: - pos: 9.5,-32.5 @@ -19723,8 +18773,6 @@ entities: - pos: 9.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11197 components: - pos: 8.5,-33.5 @@ -19740,8 +18788,6 @@ entities: - pos: 6.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11200 components: - pos: 5.5,-33.5 @@ -19752,134 +18798,96 @@ entities: - pos: 10.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11202 components: - pos: 9.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11203 components: - pos: 8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11204 components: - pos: 7.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11205 components: - pos: 6.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11206 components: - pos: 5.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11207 components: - pos: 4.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11208 components: - pos: 9.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11209 components: - pos: 10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11210 components: - pos: 11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11211 components: - pos: 12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11212 components: - pos: 12.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11213 components: - pos: 12.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11214 components: - pos: 12.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11215 components: - pos: 14.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11274 components: - pos: 19.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11276 components: - pos: 19.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11277 components: - pos: 19.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11278 components: - pos: 19.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11279 components: - pos: 19.5,-38.5 @@ -19890,36 +18898,26 @@ entities: - pos: 20.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11281 components: - pos: 21.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11282 components: - pos: 18.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11283 components: - pos: 17.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11310 components: - pos: 33.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11311 components: - pos: 33.5,-28.5 @@ -19935,127 +18933,91 @@ entities: - pos: 33.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11314 components: - pos: 33.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11315 components: - pos: 33.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11316 components: - pos: 32.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11317 components: - pos: 31.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11318 components: - pos: 30.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11319 components: - pos: 29.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11320 components: - pos: 28.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11321 components: - pos: 27.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11322 components: - pos: 26.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11323 components: - pos: 25.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11324 components: - pos: 25.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11325 components: - pos: 24.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11441 components: - pos: 30.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11442 components: - pos: 30.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11443 components: - pos: 32.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11444 components: - pos: 31.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11445 components: - pos: 33.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11446 components: - pos: 34.5,-38.5 @@ -20066,71 +19028,51 @@ entities: - pos: 33.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11448 components: - pos: 34.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11449 components: - pos: 35.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11450 components: - pos: 36.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11451 components: - pos: 37.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11452 components: - pos: 32.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11453 components: - pos: 31.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11454 components: - pos: 31.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11455 components: - pos: 31.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11456 components: - pos: 33.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11457 components: - pos: 34.5,-34.5 @@ -20156,36 +19098,26 @@ entities: - pos: 13.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 12048 components: - pos: -27.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 12049 components: - pos: -28.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 12050 components: - pos: -28.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 12051 components: - pos: -28.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - proto: CableApcStack entities: - uid: 6196 @@ -20220,113 +19152,81 @@ entities: - pos: 8.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 943 components: - pos: -14.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 944 components: - pos: -14.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 945 components: - pos: -14.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 946 components: - pos: -14.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 947 components: - pos: -14.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 948 components: - pos: -14.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 949 components: - pos: -14.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 950 components: - pos: -13.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 951 components: - pos: -12.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 952 components: - pos: -11.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 953 components: - pos: -10.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 954 components: - pos: -9.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 955 components: - pos: -8.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 956 components: - pos: -7.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 957 components: - pos: -6.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 958 components: - pos: -5.5,13.5 @@ -20367,57 +19267,41 @@ entities: - pos: 1.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 967 components: - pos: 2.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 968 components: - pos: 2.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 969 components: - pos: 2.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 970 components: - pos: 2.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1003 components: - pos: 7.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1367 components: - pos: 6.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1368 components: - pos: 5.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2080 components: - pos: 6.5,31.5 @@ -20573,22 +19457,16 @@ entities: - pos: 3.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2111 components: - pos: 4.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2112 components: - pos: 4.5,34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2113 components: - pos: 2.5,34.5 @@ -20604,22 +19482,16 @@ entities: - pos: 1.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2116 components: - pos: 1.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2117 components: - pos: 0.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2118 components: - pos: 0.5,35.5 @@ -20660,50 +19532,36 @@ entities: - pos: -3.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2126 components: - pos: -2.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2127 components: - pos: -1.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2128 components: - pos: -5.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2129 components: - pos: -6.5,36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2130 components: - pos: -6.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2131 components: - pos: 6.5,33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2132 components: - pos: -6.5,34.5 @@ -20724,22 +19582,16 @@ entities: - pos: -9.5,34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2136 components: - pos: -9.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2137 components: - pos: -8.5,35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2138 components: - pos: -8.5,33.5 @@ -20755,99 +19607,71 @@ entities: - pos: -9.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2839 components: - pos: 13.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3047 components: - pos: 12.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3048 components: - pos: 12.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3049 components: - pos: 12.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3050 components: - pos: 12.5,29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3051 components: - pos: 12.5,28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3052 components: - pos: 12.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3053 components: - pos: 12.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3054 components: - pos: 12.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3055 components: - pos: 12.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3056 components: - pos: 12.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3057 components: - pos: 12.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3058 components: - pos: 12.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3059 components: - pos: 12.5,20.5 @@ -20903,106 +19727,76 @@ entities: - pos: 3.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3070 components: - pos: 4.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3071 components: - pos: 5.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3072 components: - pos: 6.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3073 components: - pos: 7.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3074 components: - pos: 8.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3075 components: - pos: 9.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3076 components: - pos: 9.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3077 components: - pos: 9.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3078 components: - pos: 9.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3079 components: - pos: 9.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3080 components: - pos: 9.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3081 components: - pos: 9.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3082 components: - pos: 9.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3083 components: - pos: 9.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3084 components: - pos: 10.5,3.5 @@ -21093,8 +19887,6 @@ entities: - pos: 14.5,46.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3790 components: - pos: 14.5,45.5 @@ -21105,22 +19897,16 @@ entities: - pos: 14.5,44.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3792 components: - pos: 14.5,47.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3793 components: - pos: 13.5,47.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3853 components: - pos: 13.5,45.5 @@ -21271,43 +20057,31 @@ entities: - pos: 14.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4238 components: - pos: 15.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4239 components: - pos: 15.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4240 components: - pos: 17.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4241 components: - pos: 16.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4242 components: - pos: 18.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4243 components: - pos: 18.5,3.5 @@ -21328,99 +20102,71 @@ entities: - pos: -26.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5914 components: - pos: 16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5915 components: - pos: 15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5916 components: - pos: 15.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5917 components: - pos: 15.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5918 components: - pos: 15.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5919 components: - pos: 16.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5920 components: - pos: 17.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5921 components: - pos: 18.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5922 components: - pos: 18.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5923 components: - pos: 18.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5924 components: - pos: 18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5925 components: - pos: 18.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5926 components: - pos: 18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5927 components: - pos: 18.5,-27.5 @@ -21481,71 +20227,51 @@ entities: - pos: 16.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5939 components: - pos: 16.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5940 components: - pos: 16.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5941 components: - pos: 16.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5942 components: - pos: 16.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5943 components: - pos: 15.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5944 components: - pos: 14.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5945 components: - pos: 14.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5946 components: - pos: 13.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5947 components: - pos: 12.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5948 components: - pos: 12.5,-13.5 @@ -21591,148 +20317,106 @@ entities: - pos: 8.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5957 components: - pos: 9.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5958 components: - pos: 9.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5959 components: - pos: 9.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5960 components: - pos: 9.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5961 components: - pos: 9.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5962 components: - pos: 9.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5963 components: - pos: 9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5964 components: - pos: 9.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5965 components: - pos: 9.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5966 components: - pos: 9.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5967 components: - pos: 9.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5968 components: - pos: 9.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5969 components: - pos: 9.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6020 components: - pos: 16.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6519 components: - pos: -25.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6918 components: - pos: -8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6919 components: - pos: -8.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6920 components: - pos: -8.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6921 components: - pos: -10.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6922 components: - pos: -9.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6923 components: - pos: -10.5,-33.5 @@ -21838,99 +20522,71 @@ entities: - pos: 4.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6944 components: - pos: 5.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6945 components: - pos: 6.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6946 components: - pos: 7.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6947 components: - pos: 8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6948 components: - pos: 9.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6949 components: - pos: 10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6950 components: - pos: 11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6951 components: - pos: 12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6952 components: - pos: 12.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6953 components: - pos: 12.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6954 components: - pos: 12.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6955 components: - pos: 13.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6956 components: - pos: 14.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6957 components: - pos: 1.5,-29.5 @@ -22061,106 +20717,76 @@ entities: - pos: -27.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7282 components: - pos: -28.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7283 components: - pos: -29.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7958 components: - pos: -37.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7959 components: - pos: -37.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7960 components: - pos: -36.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7961 components: - pos: -35.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7962 components: - pos: -34.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7963 components: - pos: -33.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7964 components: - pos: -32.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7965 components: - pos: -31.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7966 components: - pos: -30.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7967 components: - pos: -29.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7968 components: - pos: -29.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7969 components: - pos: -28.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7970 components: - pos: -27.5,8.5 @@ -22291,15 +20917,11 @@ entities: - pos: -42.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8748 components: - pos: -44.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8749 components: - pos: -44.5,-5.5 @@ -22425,22 +21047,16 @@ entities: - pos: -39.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9754 components: - pos: -38.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9755 components: - pos: -39.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9756 components: - pos: -37.5,5.5 @@ -22476,57 +21092,41 @@ entities: - pos: -36.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9763 components: - pos: -36.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9764 components: - pos: -36.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9765 components: - pos: -36.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9766 components: - pos: -36.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9767 components: - pos: -36.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9768 components: - pos: -36.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9769 components: - pos: -36.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9770 components: - pos: -36.5,-7.5 @@ -22627,22 +21227,16 @@ entities: - pos: -22.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9790 components: - pos: -21.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9791 components: - pos: -20.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9792 components: - pos: -20.5,-3.5 @@ -22653,169 +21247,121 @@ entities: - pos: -19.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9794 components: - pos: -18.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9795 components: - pos: -17.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9796 components: - pos: -16.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9797 components: - pos: -15.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9798 components: - pos: -14.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9799 components: - pos: -13.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9800 components: - pos: -12.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9801 components: - pos: -12.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9802 components: - pos: -12.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9803 components: - pos: -12.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9804 components: - pos: -12.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9805 components: - pos: -12.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9806 components: - pos: -12.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9807 components: - pos: -12.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9808 components: - pos: -12.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9809 components: - pos: -12.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9810 components: - pos: -12.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9811 components: - pos: -12.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9812 components: - pos: -12.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9813 components: - pos: -12.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9814 components: - pos: -12.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9815 components: - pos: -12.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9816 components: - pos: -12.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9913 components: - pos: -44.5,-6.5 @@ -22871,8 +21417,6 @@ entities: - pos: -40.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9924 components: - pos: -40.5,-10.5 @@ -22883,43 +21427,31 @@ entities: - pos: -40.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9926 components: - pos: -40.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9927 components: - pos: -40.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9928 components: - pos: -40.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9929 components: - pos: -40.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9930 components: - pos: -40.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9931 components: - pos: -40.5,-18.5 @@ -22930,127 +21462,91 @@ entities: - pos: -48.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9961 components: - pos: -48.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9962 components: - pos: -47.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9963 components: - pos: -46.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9964 components: - pos: -45.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9965 components: - pos: -44.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9966 components: - pos: -43.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9967 components: - pos: -42.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9974 components: - pos: -36.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9975 components: - pos: -36.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9976 components: - pos: -36.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9977 components: - pos: -36.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9978 components: - pos: -36.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9979 components: - pos: -36.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9980 components: - pos: -36.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9981 components: - pos: -36.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9982 components: - pos: -36.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9983 components: - pos: -36.5,-10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9984 components: - pos: -36.5,-9.5 @@ -23061,659 +21557,471 @@ entities: - pos: -41.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9996 components: - pos: -40.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9997 components: - pos: -39.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9998 components: - pos: -38.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9999 components: - pos: -37.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10000 components: - pos: -36.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10159 components: - pos: -56.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10160 components: - pos: -55.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10161 components: - pos: -54.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10162 components: - pos: -53.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10163 components: - pos: -53.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10164 components: - pos: -53.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10168 components: - pos: -53.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10169 components: - pos: -52.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10170 components: - pos: -51.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10171 components: - pos: -51.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10172 components: - pos: -51.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10173 components: - pos: -51.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10174 components: - pos: -50.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10175 components: - pos: -49.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10176 components: - pos: -48.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10177 components: - pos: -47.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10178 components: - pos: -46.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10179 components: - pos: -45.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10180 components: - pos: -45.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10181 components: - pos: -50.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10225 components: - pos: -57.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10226 components: - pos: -59.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10227 components: - pos: -59.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10228 components: - pos: -59.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10229 components: - pos: -59.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10230 components: - pos: -59.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10231 components: - pos: -59.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10232 components: - pos: -59.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10233 components: - pos: -59.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10234 components: - pos: -61.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10235 components: - pos: -61.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10236 components: - pos: -61.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10237 components: - pos: -61.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10238 components: - pos: -61.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10239 components: - pos: -61.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10240 components: - pos: -61.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10241 components: - pos: -61.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10242 components: - pos: -63.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10243 components: - pos: -63.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10244 components: - pos: -63.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10245 components: - pos: -63.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10246 components: - pos: -65.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10247 components: - pos: -65.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10248 components: - pos: -65.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10249 components: - pos: -65.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10250 components: - pos: -69.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10251 components: - pos: -69.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10252 components: - pos: -69.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10253 components: - pos: -69.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10254 components: - pos: -67.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10255 components: - pos: -67.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10256 components: - pos: -67.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10257 components: - pos: -67.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10258 components: - pos: -69.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10259 components: - pos: -69.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10260 components: - pos: -69.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10261 components: - pos: -69.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10262 components: - pos: -67.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10263 components: - pos: -67.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10264 components: - pos: -67.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10265 components: - pos: -67.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10266 components: - pos: -65.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10267 components: - pos: -65.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10268 components: - pos: -65.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10269 components: - pos: -65.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10270 components: - pos: -63.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10271 components: - pos: -63.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10272 components: - pos: -63.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10273 components: - pos: -63.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10275 components: - pos: -71.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10276 components: - pos: -70.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10529 components: - pos: -10.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10530 components: - pos: -10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10531 components: - pos: -11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10532 components: - pos: -12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10533 components: - pos: -13.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10534 components: - pos: -14.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10535 components: - pos: -15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10536 components: - pos: -16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10537 components: - pos: -17.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10538 components: - pos: -18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10539 components: - pos: -19.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10540 components: - pos: -20.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10541 components: - pos: -21.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10542 components: - pos: -22.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10543 components: - pos: -23.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10544 components: - pos: -24.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10550 components: - pos: -29.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10551 components: - pos: -29.5,-28.5 @@ -23729,92 +22037,66 @@ entities: - pos: -29.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10554 components: - pos: -29.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10555 components: - pos: -30.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10556 components: - pos: -31.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10557 components: - pos: -32.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10558 components: - pos: -33.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10559 components: - pos: -34.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10560 components: - pos: -34.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10561 components: - pos: -34.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10562 components: - pos: -34.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10563 components: - pos: -34.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10564 components: - pos: -34.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10565 components: - pos: -35.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10638 components: - pos: -45.5,-12.5 @@ -23855,8 +22137,6 @@ entities: - pos: -51.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10646 components: - pos: -52.5,-11.5 @@ -23887,8 +22167,6 @@ entities: - pos: -51.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10669 components: - pos: -45.5,-6.5 @@ -23904,8 +22182,6 @@ entities: - pos: -47.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10672 components: - pos: -48.5,-6.5 @@ -23916,575 +22192,411 @@ entities: - pos: 33.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11395 components: - pos: 32.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11396 components: - pos: 31.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11397 components: - pos: 33.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11398 components: - pos: 33.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11399 components: - pos: 33.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11400 components: - pos: 34.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11401 components: - pos: 35.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11402 components: - pos: 36.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11403 components: - pos: 37.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11404 components: - pos: 38.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11405 components: - pos: 31.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11406 components: - pos: 31.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11407 components: - pos: 31.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11408 components: - pos: 31.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11409 components: - pos: 31.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11410 components: - pos: 31.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11411 components: - pos: 30.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11412 components: - pos: 29.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11413 components: - pos: 28.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11414 components: - pos: 27.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11415 components: - pos: 26.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11416 components: - pos: 25.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11417 components: - pos: 24.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11418 components: - pos: 23.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11419 components: - pos: 22.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11420 components: - pos: 21.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11421 components: - pos: 20.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11422 components: - pos: 19.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11437 components: - pos: 30.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11477 components: - pos: 53.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11478 components: - pos: 52.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11479 components: - pos: 39.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11480 components: - pos: 40.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11481 components: - pos: 41.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11482 components: - pos: 41.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11483 components: - pos: 41.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11484 components: - pos: 41.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11485 components: - pos: 43.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11486 components: - pos: 43.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11487 components: - pos: 43.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11488 components: - pos: 43.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11489 components: - pos: 45.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11490 components: - pos: 45.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11491 components: - pos: 45.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11492 components: - pos: 45.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11493 components: - pos: 47.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11494 components: - pos: 47.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11495 components: - pos: 47.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11496 components: - pos: 47.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11497 components: - pos: 49.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11498 components: - pos: 49.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11499 components: - pos: 49.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11500 components: - pos: 49.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11501 components: - pos: 51.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11502 components: - pos: 51.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11503 components: - pos: 51.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11504 components: - pos: 51.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11505 components: - pos: 51.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11506 components: - pos: 51.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11507 components: - pos: 51.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11508 components: - pos: 51.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11509 components: - pos: 49.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11510 components: - pos: 49.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11511 components: - pos: 49.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11512 components: - pos: 49.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11513 components: - pos: 47.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11514 components: - pos: 47.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11515 components: - pos: 47.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11516 components: - pos: 47.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11517 components: - pos: 45.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11518 components: - pos: 45.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11519 components: - pos: 45.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11520 components: - pos: 45.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11521 components: - pos: 43.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11522 components: - pos: 43.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11523 components: - pos: 43.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11524 components: - pos: 43.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11525 components: - pos: 41.5,-40.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11526 components: - pos: 41.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11527 components: - pos: 41.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11528 components: - pos: 41.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - proto: CableHVStack entities: - uid: 8587 @@ -24514,484 +22626,346 @@ entities: - pos: -14.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 972 components: - pos: -14.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 973 components: - pos: -14.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 974 components: - pos: -14.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 975 components: - pos: -14.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 976 components: - pos: -14.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 977 components: - pos: -14.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 978 components: - pos: -13.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 979 components: - pos: -12.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 980 components: - pos: -12.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 981 components: - pos: -8.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 982 components: - pos: -8.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 983 components: - pos: -9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 984 components: - pos: -10.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 985 components: - pos: -12.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 986 components: - pos: -11.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 987 components: - pos: -12.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 988 components: - pos: -12.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 989 components: - pos: -12.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 990 components: - pos: -12.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 991 components: - pos: -12.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 992 components: - pos: -12.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 993 components: - pos: -12.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 994 components: - pos: -12.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 995 components: - pos: -12.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 996 components: - pos: -12.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 997 components: - pos: -12.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 998 components: - pos: -12.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 999 components: - pos: -12.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1000 components: - pos: -12.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1001 components: - pos: -12.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1002 components: - pos: -12.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1004 components: - pos: 6.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1005 components: - pos: 7.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1006 components: - pos: 8.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1007 components: - pos: 9.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1008 components: - pos: 9.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1009 components: - pos: 9.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1010 components: - pos: 9.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1011 components: - pos: 9.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1012 components: - pos: 9.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1013 components: - pos: 9.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1014 components: - pos: 9.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1015 components: - pos: 8.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1016 components: - pos: 7.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1017 components: - pos: 6.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1018 components: - pos: 5.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1019 components: - pos: 4.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1020 components: - pos: 3.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1021 components: - pos: 2.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1023 components: - pos: 7.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1024 components: - pos: 7.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1025 components: - pos: 8.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1026 components: - pos: 9.5,-9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1027 components: - pos: 9.5,-8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1028 components: - pos: 9.5,-7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1029 components: - pos: 9.5,-6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1030 components: - pos: 9.5,-5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1031 components: - pos: 9.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1032 components: - pos: 9.5,-3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1033 components: - pos: 9.5,-2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1034 components: - pos: 9.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1035 components: - pos: 9.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1036 components: - pos: 9.5,0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1037 components: - pos: 9.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1038 components: - pos: 9.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1039 components: - pos: 9.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1419 components: - pos: 8.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1543 components: - pos: 5.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 1858 components: - pos: 0.5,28.5 @@ -25082,8 +23056,6 @@ entities: - pos: -6.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2157 components: - pos: 2.5,31.5 @@ -25159,8 +23131,6 @@ entities: - pos: 0.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2172 components: - pos: 3.5,25.5 @@ -25206,8 +23176,6 @@ entities: - pos: 9.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2181 components: - pos: 8.5,24.5 @@ -25218,8 +23186,6 @@ entities: - pos: 8.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2183 components: - pos: 6.5,24.5 @@ -25230,8 +23196,6 @@ entities: - pos: 6.5,23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2185 components: - pos: -2.5,31.5 @@ -25242,15 +23206,11 @@ entities: - pos: 4.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2187 components: - pos: 4.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2188 components: - pos: -2.5,30.5 @@ -25276,8 +23236,6 @@ entities: - pos: -2.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2193 components: - pos: -3.5,28.5 @@ -25293,8 +23251,6 @@ entities: - pos: -4.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2196 components: - pos: -1.5,28.5 @@ -25310,8 +23266,6 @@ entities: - pos: -0.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2200 components: - pos: 0.5,29.5 @@ -25417,8 +23371,6 @@ entities: - pos: -14.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2404 components: - pos: -11.5,24.5 @@ -25454,50 +23406,36 @@ entities: - pos: -11.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2411 components: - pos: -12.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2412 components: - pos: -12.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2413 components: - pos: -13.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2414 components: - pos: -10.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2415 components: - pos: -9.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2416 components: - pos: -9.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2453 components: - pos: -6.5,28.5 @@ -25528,85 +23466,61 @@ entities: - pos: 11.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 2838 components: - pos: 13.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3120 components: - pos: 12.5,32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3121 components: - pos: 12.5,31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3122 components: - pos: 12.5,30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3123 components: - pos: 12.5,29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3124 components: - pos: 12.5,28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3125 components: - pos: 12.5,27.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3126 components: - pos: 12.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3127 components: - pos: 12.5,25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3128 components: - pos: 12.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3129 components: - pos: 13.5,24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3130 components: - pos: 14.5,24.5 @@ -25637,8 +23551,6 @@ entities: - pos: 17.5,22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3265 components: - pos: -24.5,-25.5 @@ -25649,8 +23561,6 @@ entities: - pos: -23.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3735 components: - pos: -25.5,-25.5 @@ -25661,15 +23571,11 @@ entities: - pos: 13.5,47.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3885 components: - pos: 13.5,46.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3886 components: - pos: 13.5,45.5 @@ -25725,8 +23631,6 @@ entities: - pos: 11.5,51.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4012 components: - pos: -15.5,-17.5 @@ -25762,36 +23666,26 @@ entities: - pos: 19.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4253 components: - pos: 20.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4254 components: - pos: 21.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4255 components: - pos: 22.5,-0.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4256 components: - pos: 22.5,-1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4806 components: - pos: -16.5,-24.5 @@ -25822,8 +23716,6 @@ entities: - pos: -18.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4956 components: - pos: -20.5,-26.5 @@ -25839,8 +23731,6 @@ entities: - pos: -23.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4960 components: - pos: -18.5,-27.5 @@ -25851,8 +23741,6 @@ entities: - pos: -18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 4967 components: - pos: -16.5,-25.5 @@ -25878,92 +23766,66 @@ entities: - pos: 16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5973 components: - pos: 15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5974 components: - pos: 15.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5975 components: - pos: 15.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5976 components: - pos: 15.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5977 components: - pos: 16.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5978 components: - pos: 17.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5979 components: - pos: 18.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5980 components: - pos: 18.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5981 components: - pos: 18.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5982 components: - pos: 18.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5983 components: - pos: 18.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5984 components: - pos: 18.5,-28.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 5985 components: - pos: 18.5,-27.5 @@ -26069,8 +23931,6 @@ entities: - pos: 6.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6006 components: - pos: 19.5,-20.5 @@ -26136,8 +23996,6 @@ entities: - pos: 28.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6051 components: - pos: 13.5,-21.5 @@ -26158,8 +24016,6 @@ entities: - pos: -27.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6660 components: - pos: -25.5,-23.5 @@ -26190,8 +24046,6 @@ entities: - pos: -10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6782 components: - pos: -19.5,-22.5 @@ -26207,113 +24061,81 @@ entities: - pos: -8.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6903 components: - pos: -8.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6904 components: - pos: -8.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6905 components: - pos: -8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6906 components: - pos: -9.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6907 components: - pos: -10.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6908 components: - pos: -11.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6909 components: - pos: -11.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6910 components: - pos: -11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6911 components: - pos: -12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6912 components: - pos: -13.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6913 components: - pos: -14.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6914 components: - pos: -15.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6915 components: - pos: -16.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6916 components: - pos: -17.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 6917 components: - pos: -17.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7029 components: - pos: -22.5,-25.5 @@ -26324,8 +24146,6 @@ entities: - pos: -17.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7065 components: - pos: -15.5,-16.5 @@ -26346,8 +24166,6 @@ entities: - pos: -15.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7239 components: - pos: -16.5,-15.5 @@ -26373,8 +24191,6 @@ entities: - pos: -18.5,-26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7265 components: - pos: -10.5,-26.5 @@ -26385,15 +24201,11 @@ entities: - pos: -11.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7270 components: - pos: -23.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7271 components: - pos: -25.5,-22.5 @@ -26569,15 +24381,11 @@ entities: - pos: -1.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7986 components: - pos: -36.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7987 components: - pos: -36.5,12.5 @@ -26623,71 +24431,51 @@ entities: - pos: -31.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7996 components: - pos: -31.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7997 components: - pos: -31.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7998 components: - pos: -32.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 7999 components: - pos: -33.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8000 components: - pos: -34.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8001 components: - pos: -35.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8002 components: - pos: -36.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8003 components: - pos: -37.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8004 components: - pos: -37.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8005 components: - pos: -30.5,11.5 @@ -26763,15 +24551,11 @@ entities: - pos: -24.5,19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8020 components: - pos: -24.5,20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8021 components: - pos: -28.5,16.5 @@ -26797,29 +24581,21 @@ entities: - pos: -24.5,16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8026 components: - pos: -24.5,17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8027 components: - pos: -27.5,17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8028 components: - pos: -27.5,20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8029 components: - pos: -29.5,10.5 @@ -26835,8 +24611,6 @@ entities: - pos: -27.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8032 components: - pos: -26.5,10.5 @@ -26852,22 +24626,16 @@ entities: - pos: -24.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8035 components: - pos: -32.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8036 components: - pos: -32.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8037 components: - pos: -30.5,14.5 @@ -26883,8 +24651,6 @@ entities: - pos: -32.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8040 components: - pos: -33.5,14.5 @@ -26895,8 +24661,6 @@ entities: - pos: -33.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8042 components: - pos: -34.5,14.5 @@ -26912,8 +24676,6 @@ entities: - pos: -35.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8045 components: - pos: -35.5,15.5 @@ -26934,8 +24696,6 @@ entities: - pos: -35.5,18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8049 components: - pos: -33.5,15.5 @@ -26956,8 +24716,6 @@ entities: - pos: -33.5,18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8053 components: - pos: -33.5,19.5 @@ -26973,15 +24731,11 @@ entities: - pos: -32.5,19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8056 components: - pos: -32.5,20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8177 components: - pos: -23.5,20.5 @@ -26992,8 +24746,6 @@ entities: - pos: -23.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8179 components: - pos: -22.5,20.5 @@ -27019,22 +24771,16 @@ entities: - pos: -19.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8184 components: - pos: -20.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8185 components: - pos: -21.5,21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8186 components: - pos: -21.5,22.5 @@ -27060,8 +24806,6 @@ entities: - pos: -21.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8191 components: - pos: -21.5,27.5 @@ -27082,8 +24826,6 @@ entities: - pos: -22.5,29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8195 components: - pos: -22.5,26.5 @@ -27094,8 +24836,6 @@ entities: - pos: -23.5,26.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8853 components: - pos: 13.5,-19.5 @@ -27111,8 +24851,6 @@ entities: - pos: -24.5,-10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8879 components: - pos: -24.5,-11.5 @@ -27138,127 +24876,91 @@ entities: - pos: -28.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8884 components: - pos: -29.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8885 components: - pos: -30.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8886 components: - pos: -31.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8887 components: - pos: -32.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8888 components: - pos: -33.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8889 components: - pos: -34.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8890 components: - pos: -35.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8891 components: - pos: -36.5,-11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8892 components: - pos: -36.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8893 components: - pos: -36.5,-13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8894 components: - pos: -36.5,-14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8895 components: - pos: -36.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8897 components: - pos: -33.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8898 components: - pos: -34.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8899 components: - pos: -34.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8900 components: - pos: -34.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8901 components: - pos: -34.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8902 components: - pos: 13.5,-17.5 @@ -27269,15 +24971,11 @@ entities: - pos: 13.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8967 components: - pos: 13.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8969 components: - pos: 28.5,-24.5 @@ -27328,8 +25026,6 @@ entities: - pos: 32.5,-29.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9287 components: - pos: -38.5,7.5 @@ -27340,8 +25036,6 @@ entities: - pos: -38.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9524 components: - pos: 16.5,-19.5 @@ -27352,204 +25046,146 @@ entities: - pos: 16.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9581 components: - pos: 16.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9582 components: - pos: 16.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9583 components: - pos: 17.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10001 components: - pos: -34.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10002 components: - pos: -35.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10003 components: - pos: -36.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10004 components: - pos: -37.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10005 components: - pos: -38.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10006 components: - pos: -39.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10007 components: - pos: -40.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10008 components: - pos: -41.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10009 components: - pos: -42.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10010 components: - pos: -43.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10011 components: - pos: -44.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10012 components: - pos: -45.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10013 components: - pos: -46.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10014 components: - pos: -47.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10015 components: - pos: -48.5,-20.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10016 components: - pos: -48.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10017 components: - pos: -36.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10018 components: - pos: -36.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10019 components: - pos: -36.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10020 components: - pos: -36.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10022 components: - pos: -44.5,-19.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10023 components: - pos: -44.5,-18.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10024 components: - pos: -44.5,-17.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10025 components: - pos: -44.5,-16.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10026 components: - pos: -44.5,-15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10027 components: - pos: -44.5,-14.5 @@ -27620,50 +25256,36 @@ entities: - pos: -41.5,-4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10184 components: - pos: -50.5,-25.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10185 components: - pos: -50.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10186 components: - pos: -51.5,-24.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10187 components: - pos: -51.5,-23.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10188 components: - pos: -51.5,-22.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10189 components: - pos: -51.5,-21.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 10652 components: - pos: -53.5,-13.5 @@ -27684,78 +25306,56 @@ entities: - pos: -55.5,-12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11151 components: - pos: 14.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11152 components: - pos: 13.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11153 components: - pos: 12.5,-33.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11154 components: - pos: 12.5,-32.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11155 components: - pos: 12.5,-31.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11156 components: - pos: 12.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11157 components: - pos: 11.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11158 components: - pos: 10.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11159 components: - pos: 9.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11160 components: - pos: 8.5,-30.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11161 components: - pos: 8.5,-31.5 @@ -27786,36 +25386,26 @@ entities: - pos: 9.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11167 components: - pos: 10.5,-35.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11438 components: - pos: 30.5,-39.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11439 components: - pos: 30.5,-38.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 11440 components: - pos: 30.5,-37.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - proto: CableMVStack entities: - uid: 8586 @@ -37895,8 +35485,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12094 components: @@ -37906,8 +35494,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12095 components: @@ -37916,8 +35502,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12096 components: @@ -37927,8 +35511,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12097 components: @@ -37938,8 +35520,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12098 components: @@ -37949,8 +35529,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12100 components: @@ -37960,8 +35538,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12102 components: @@ -37971,8 +35547,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12103 components: @@ -37982,8 +35556,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 12104 components: @@ -37992,8 +35564,6 @@ entities: type: Transform - enabled: True type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - proto: EncryptionKeyCargo entities: @@ -40727,8 +38297,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1683 components: - rot: -1.5707963267948966 rad @@ -41052,8 +38620,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7847 components: - rot: 1.5707963267948966 rad @@ -41084,8 +38650,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8970 components: - rot: -1.5707963267948966 rad @@ -41094,8 +38658,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8987 components: - rot: 1.5707963267948966 rad @@ -41113,56 +38675,42 @@ entities: - pos: -33.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9117 components: - rot: 1.5707963267948966 rad pos: -53.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9120 components: - rot: 1.5707963267948966 rad pos: -53.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9121 components: - rot: 1.5707963267948966 rad pos: -53.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9125 components: - rot: 1.5707963267948966 rad pos: -53.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9128 components: - rot: 1.5707963267948966 rad pos: -53.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9133 components: - rot: 1.5707963267948966 rad pos: -53.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9155 components: - rot: -1.5707963267948966 rad @@ -41171,8 +38719,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9156 components: - rot: 1.5707963267948966 rad @@ -41181,8 +38727,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9165 components: - rot: -1.5707963267948966 rad @@ -41191,8 +38735,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9166 components: - rot: 3.141592653589793 rad @@ -41201,16 +38743,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9254 components: - rot: 1.5707963267948966 rad pos: -46.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9535 components: - rot: 3.141592653589793 rad @@ -41219,8 +38757,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11972 components: - rot: -1.5707963267948966 rad @@ -43585,8 +41121,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 812 components: - rot: 1.5707963267948966 rad @@ -43945,8 +41479,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1509 components: - pos: -21.5,-5.5 @@ -43993,8 +41525,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1786 components: - rot: 1.5707963267948966 rad @@ -44003,8 +41533,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1808 components: - pos: 6.5,18.5 @@ -44069,8 +41597,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1849 components: - pos: -1.5,22.5 @@ -44085,8 +41611,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 1851 components: - pos: -3.5,22.5 @@ -44574,8 +42098,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2063 components: - rot: 3.141592653589793 rad @@ -44592,8 +42114,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2066 components: - rot: 1.5707963267948966 rad @@ -44690,8 +42210,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2428 components: - rot: 3.141592653589793 rad @@ -44716,8 +42234,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2433 components: - rot: 1.5707963267948966 rad @@ -44748,8 +42264,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2438 components: - pos: -12.5,27.5 @@ -44821,8 +42335,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2952 components: - rot: 1.5707963267948966 rad @@ -44919,8 +42431,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2970 components: - rot: 3.141592653589793 rad @@ -45041,8 +42551,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 2992 components: - rot: 3.141592653589793 rad @@ -45096,8 +42604,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3002 components: - rot: 1.5707963267948966 rad @@ -45198,8 +42704,6 @@ entities: pos: 16.5,46.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 3797 components: - rot: -1.5707963267948966 rad @@ -45208,8 +42712,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3799 components: - rot: -1.5707963267948966 rad @@ -45218,8 +42720,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3800 components: - rot: -1.5707963267948966 rad @@ -45244,8 +42744,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3805 components: - pos: 11.5,47.5 @@ -45253,8 +42751,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3806 components: - pos: 11.5,48.5 @@ -45301,8 +42797,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3820 components: - rot: -1.5707963267948966 rad @@ -45311,8 +42805,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3821 components: - rot: -1.5707963267948966 rad @@ -45345,8 +42837,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3827 components: - rot: 3.141592653589793 rad @@ -45395,8 +42885,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4009 components: - pos: -19.5,-15.5 @@ -45636,8 +43124,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4176 components: - rot: 1.5707963267948966 rad @@ -45654,8 +43140,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4178 components: - rot: 1.5707963267948966 rad @@ -45672,8 +43156,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4180 components: - rot: 1.5707963267948966 rad @@ -45690,8 +43172,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4182 components: - rot: 1.5707963267948966 rad @@ -45877,8 +43357,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4228 components: - pos: 25.5,3.5 @@ -45918,8 +43396,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4461 components: - rot: 1.5707963267948966 rad @@ -45936,8 +43412,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4463 components: - rot: 1.5707963267948966 rad @@ -45984,8 +43458,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4862 components: - rot: -1.5707963267948966 rad @@ -45994,8 +43466,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4871 components: - rot: 1.5707963267948966 rad @@ -46012,8 +43482,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4873 components: - rot: 3.141592653589793 rad @@ -46061,8 +43529,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4934 components: - rot: -1.5707963267948966 rad @@ -46071,8 +43537,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 4938 components: - rot: -1.5707963267948966 rad @@ -47127,8 +44591,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5476 components: - rot: 3.141592653589793 rad @@ -47263,8 +44725,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5642 components: - rot: -1.5707963267948966 rad @@ -47620,8 +45080,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5694 components: - rot: 3.141592653589793 rad @@ -47638,8 +45096,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5696 components: - rot: 3.141592653589793 rad @@ -47715,8 +45171,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5712 components: - rot: 1.5707963267948966 rad @@ -47820,8 +45274,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5739 components: - rot: 3.141592653589793 rad @@ -47971,8 +45423,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 5759 components: - rot: -1.5707963267948966 rad @@ -48005,8 +45455,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6293 components: - rot: -1.5707963267948966 rad @@ -48031,8 +45479,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6418 components: - rot: 3.141592653589793 rad @@ -48254,8 +45700,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6548 components: - pos: -26.5,-24.5 @@ -48263,8 +45707,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6550 components: - pos: -26.5,-25.5 @@ -48300,8 +45742,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6632 components: - pos: -30.5,22.5 @@ -48380,8 +45820,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6808 components: - rot: -1.5707963267948966 rad @@ -48438,8 +45876,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6816 components: - rot: -1.5707963267948966 rad @@ -48472,8 +45908,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 6822 components: - rot: 1.5707963267948966 rad @@ -48599,8 +46033,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7059 components: - pos: -19.5,-19.5 @@ -48686,8 +46118,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7201 components: - rot: 1.5707963267948966 rad @@ -48758,8 +46188,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7278 components: - rot: 1.5707963267948966 rad @@ -48852,8 +46280,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7374 components: - rot: 3.141592653589793 rad @@ -48886,8 +46312,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7378 components: - rot: 3.141592653589793 rad @@ -49208,8 +46632,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7863 components: - rot: 1.5707963267948966 rad @@ -49274,8 +46696,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7877 components: - rot: 3.141592653589793 rad @@ -49332,8 +46752,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7888 components: - rot: -1.5707963267948966 rad @@ -49350,8 +46768,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7890 components: - rot: -1.5707963267948966 rad @@ -49428,8 +46844,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 7902 components: - pos: -35.5,14.5 @@ -49500,8 +46914,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8233 components: - pos: -23.5,22.5 @@ -49530,8 +46942,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8297 components: - rot: 1.5707963267948966 rad @@ -49596,8 +47006,6 @@ entities: - pos: -45.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8553 components: - rot: 1.5707963267948966 rad @@ -49740,8 +47148,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8774 components: - pos: -30.5,-3.5 @@ -49756,8 +47162,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8776 components: - pos: -30.5,-5.5 @@ -49799,8 +47203,6 @@ entities: pos: -35.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8946 components: - pos: -10.5,-34.5 @@ -49822,8 +47224,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8952 components: - pos: -10.5,-31.5 @@ -49831,8 +47231,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8954 components: - rot: -1.5707963267948966 rad @@ -49841,8 +47239,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8955 components: - rot: -1.5707963267948966 rad @@ -49851,8 +47247,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8956 components: - rot: -1.5707963267948966 rad @@ -49861,8 +47255,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8957 components: - rot: -1.5707963267948966 rad @@ -49871,8 +47263,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8958 components: - rot: -1.5707963267948966 rad @@ -49881,8 +47271,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8959 components: - rot: -1.5707963267948966 rad @@ -49891,8 +47279,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8960 components: - rot: -1.5707963267948966 rad @@ -49901,8 +47287,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8961 components: - rot: -1.5707963267948966 rad @@ -49911,8 +47295,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8962 components: - rot: -1.5707963267948966 rad @@ -49921,8 +47303,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8963 components: - rot: -1.5707963267948966 rad @@ -49931,8 +47311,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8964 components: - rot: -1.5707963267948966 rad @@ -49941,8 +47319,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8965 components: - rot: -1.5707963267948966 rad @@ -49951,8 +47327,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8966 components: - rot: -1.5707963267948966 rad @@ -49961,8 +47335,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8977 components: - rot: 3.141592653589793 rad @@ -49971,8 +47343,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8978 components: - rot: 3.141592653589793 rad @@ -49981,8 +47351,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 8980 components: - rot: 1.5707963267948966 rad @@ -50035,8 +47403,6 @@ entities: pos: -35.5,-34.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8997 components: - rot: -1.5707963267948966 rad @@ -50048,8 +47414,6 @@ entities: - pos: -37.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9001 components: - rot: -1.5707963267948966 rad @@ -50068,31 +47432,23 @@ entities: pos: -40.5,-36.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9036 components: - rot: -1.5707963267948966 rad pos: -49.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9075 components: - pos: -45.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9116 components: - rot: 1.5707963267948966 rad pos: -52.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9118 components: - rot: -1.5707963267948966 rad @@ -50101,8 +47457,6 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9119 components: - rot: -1.5707963267948966 rad @@ -50117,8 +47471,6 @@ entities: pos: -48.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9123 components: - rot: -1.5707963267948966 rad @@ -50135,24 +47487,18 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9126 components: - rot: 1.5707963267948966 rad pos: -49.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9127 components: - rot: 1.5707963267948966 rad pos: -50.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9129 components: - rot: -1.5707963267948966 rad @@ -50161,8 +47507,6 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9132 components: - rot: -1.5707963267948966 rad @@ -50171,48 +47515,36 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9134 components: - rot: 1.5707963267948966 rad pos: -51.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9135 components: - rot: 1.5707963267948966 rad pos: -49.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9136 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9137 components: - rot: 1.5707963267948966 rad pos: -51.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9138 components: - rot: 1.5707963267948966 rad pos: -52.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9146 components: - rot: 1.5707963267948966 rad @@ -50229,8 +47561,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9148 components: - rot: 1.5707963267948966 rad @@ -50287,8 +47617,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9159 components: - rot: 1.5707963267948966 rad @@ -50297,8 +47625,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9160 components: - rot: 1.5707963267948966 rad @@ -50307,8 +47633,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9161 components: - rot: 1.5707963267948966 rad @@ -50317,8 +47641,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9162 components: - rot: 1.5707963267948966 rad @@ -50327,8 +47649,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9167 components: - rot: 1.5707963267948966 rad @@ -50337,474 +47657,352 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9175 components: - rot: -1.5707963267948966 rad pos: -48.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9177 components: - rot: -1.5707963267948966 rad pos: -50.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9178 components: - rot: -1.5707963267948966 rad pos: -48.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9179 components: - rot: -1.5707963267948966 rad pos: -49.5,1.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9180 components: - rot: -1.5707963267948966 rad pos: -50.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9181 components: - rot: -1.5707963267948966 rad pos: -48.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9182 components: - rot: -1.5707963267948966 rad pos: -49.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9183 components: - rot: -1.5707963267948966 rad pos: -50.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9184 components: - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9185 components: - rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9186 components: - rot: -1.5707963267948966 rad pos: -50.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9187 components: - rot: -1.5707963267948966 rad pos: -48.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9188 components: - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9189 components: - rot: -1.5707963267948966 rad pos: -50.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9190 components: - rot: -1.5707963267948966 rad pos: -48.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9191 components: - rot: -1.5707963267948966 rad pos: -49.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9192 components: - rot: -1.5707963267948966 rad pos: -50.5,11.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9205 components: - rot: 1.5707963267948966 rad pos: -48.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9207 components: - rot: 1.5707963267948966 rad pos: -52.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9208 components: - rot: 1.5707963267948966 rad pos: -51.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9209 components: - rot: 1.5707963267948966 rad pos: -50.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9210 components: - rot: 1.5707963267948966 rad pos: -49.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9211 components: - rot: 1.5707963267948966 rad pos: -48.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9213 components: - rot: 1.5707963267948966 rad pos: -52.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9214 components: - rot: 1.5707963267948966 rad pos: -51.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9215 components: - rot: 1.5707963267948966 rad pos: -50.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9216 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9217 components: - rot: 1.5707963267948966 rad pos: -48.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9219 components: - rot: 1.5707963267948966 rad pos: -52.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9220 components: - rot: 1.5707963267948966 rad pos: -51.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9221 components: - rot: 1.5707963267948966 rad pos: -50.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9222 components: - rot: 1.5707963267948966 rad pos: -49.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9223 components: - rot: 1.5707963267948966 rad pos: -48.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9225 components: - rot: 1.5707963267948966 rad pos: -52.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9226 components: - rot: 1.5707963267948966 rad pos: -51.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9227 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9228 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9229 components: - rot: 1.5707963267948966 rad pos: -48.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9231 components: - pos: -47.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9232 components: - pos: -47.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9233 components: - pos: -47.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9234 components: - pos: -47.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9235 components: - pos: -47.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9238 components: - pos: -45.5,7.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9241 components: - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9246 components: - pos: -45.5,9.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9249 components: - rot: -1.5707963267948966 rad pos: -46.5,8.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9250 components: - pos: -46.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9252 components: - rot: 3.141592653589793 rad pos: -45.5,3.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9253 components: - pos: -46.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9255 components: - rot: 1.5707963267948966 rad pos: -46.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9257 components: - rot: -1.5707963267948966 rad pos: -46.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9259 components: - rot: -1.5707963267948966 rad pos: -46.5,10.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9262 components: - rot: 3.141592653589793 rad pos: -47.5,12.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9263 components: - rot: 3.141592653589793 rad pos: -47.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9489 components: - pos: -45.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9490 components: - pos: -45.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9491 components: - pos: -43.5,14.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9492 components: - pos: -43.5,15.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9493 components: - pos: -43.5,13.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9514 components: - pos: -43.5,11.5 @@ -50812,8 +48010,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9515 components: - pos: -43.5,10.5 @@ -50821,8 +48017,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9516 components: - pos: -43.5,9.5 @@ -50830,8 +48024,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9539 components: - rot: 3.141592653589793 rad @@ -50840,8 +48032,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9541 components: - rot: -1.5707963267948966 rad @@ -50850,8 +48040,6 @@ entities: type: Transform - color: '#03FDC3FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9545 components: - rot: 3.141592653589793 rad @@ -50860,8 +48048,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9546 components: - rot: 3.141592653589793 rad @@ -50870,8 +48056,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11963 components: - rot: 3.141592653589793 rad @@ -50887,8 +48071,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11965 components: - pos: -36.5,-0.5 @@ -50896,8 +48078,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11966 components: - pos: -36.5,-1.5 @@ -50905,8 +48085,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11967 components: - pos: -36.5,-2.5 @@ -50914,8 +48092,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11968 components: - pos: -36.5,-3.5 @@ -50923,8 +48099,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11969 components: - pos: -36.5,-4.5 @@ -50932,8 +48106,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11970 components: - pos: -36.5,-5.5 @@ -50941,8 +48113,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11971 components: - pos: -36.5,-6.5 @@ -50950,8 +48120,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11973 components: - rot: -1.5707963267948966 rad @@ -51008,8 +48176,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11980 components: - rot: -1.5707963267948966 rad @@ -51156,8 +48322,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12004 components: - rot: 1.5707963267948966 rad @@ -51190,8 +48354,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12008 components: - rot: 1.5707963267948966 rad @@ -51256,8 +48418,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12018 components: - rot: 1.5707963267948966 rad @@ -51287,8 +48447,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 12022 components: - pos: -48.5,-12.5 @@ -52143,8 +49301,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3818 components: - rot: 3.141592653589793 rad @@ -52153,8 +49309,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 3823 components: - rot: 1.5707963267948966 rad @@ -52866,8 +50020,6 @@ entities: pos: -45.5,4.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 8757 components: - rot: -1.5707963267948966 rad @@ -52933,8 +50085,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9145 components: - rot: 3.141592653589793 rad @@ -52943,8 +50093,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9152 components: - pos: -33.5,2.5 @@ -52960,8 +50108,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9163 components: - rot: 1.5707963267948966 rad @@ -52970,16 +50116,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9251 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 4812 type: Transform - - enabled: True - type: AmbientSound - uid: 9536 components: - pos: -42.5,8.5 @@ -52987,8 +50129,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9537 components: - rot: 1.5707963267948966 rad @@ -52997,8 +50137,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 9538 components: - rot: 1.5707963267948966 rad @@ -53007,8 +50145,6 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - enabled: True - type: AmbientSound - uid: 11982 components: - rot: 1.5707963267948966 rad @@ -53288,8 +50424,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - uid: 9164 components: - rot: 3.141592653589793 rad @@ -53298,8 +50432,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 9544 @@ -53310,8 +50442,6 @@ entities: type: Transform - open: False type: GasValve - - enabled: False - type: AmbientSound - color: '#947507FF' type: AtmosPipeColor - proto: GasVentPump @@ -53322,8 +50452,6 @@ entities: pos: -27.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 710 @@ -53332,8 +50460,6 @@ entities: pos: -2.5,13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 817 @@ -53342,8 +50468,6 @@ entities: pos: -2.5,10.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 818 @@ -53352,8 +50476,6 @@ entities: pos: -2.5,-7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 835 @@ -53361,8 +50483,6 @@ entities: - pos: 5.5,-1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 838 @@ -53371,8 +50491,6 @@ entities: pos: 4.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 846 @@ -53381,8 +50499,6 @@ entities: pos: 2.5,7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 847 @@ -53391,8 +50507,6 @@ entities: pos: 6.5,7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 848 @@ -53400,8 +50514,6 @@ entities: - pos: -17.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 849 @@ -53409,8 +50521,6 @@ entities: - pos: -10.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 864 @@ -53419,8 +50529,6 @@ entities: pos: -2.5,1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 871 @@ -53429,8 +50537,6 @@ entities: pos: -9.5,-0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 877 @@ -53439,8 +50545,6 @@ entities: pos: -9.5,4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1511 @@ -53448,8 +50552,6 @@ entities: - pos: -22.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1685 @@ -53457,8 +50559,6 @@ entities: - pos: -21.5,3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1770 @@ -53467,8 +50567,6 @@ entities: pos: 11.5,19.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1814 @@ -53477,8 +50575,6 @@ entities: pos: 8.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1817 @@ -53487,8 +50583,6 @@ entities: pos: -0.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 1852 @@ -53496,8 +50590,6 @@ entities: - pos: -3.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2071 @@ -53506,8 +50598,6 @@ entities: pos: 8.5,24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2072 @@ -53515,8 +50605,6 @@ entities: - pos: 8.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2429 @@ -53525,8 +50613,6 @@ entities: pos: -14.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2430 @@ -53534,8 +50620,6 @@ entities: - pos: -13.5,28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2443 @@ -53544,8 +50628,6 @@ entities: pos: 2.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2444 @@ -53554,8 +50636,6 @@ entities: pos: -7.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2445 @@ -53563,8 +50643,6 @@ entities: - pos: -5.5,34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2446 @@ -53572,8 +50650,6 @@ entities: - pos: 0.5,34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2474 @@ -53582,8 +50658,6 @@ entities: pos: -7.5,22.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2475 @@ -53592,8 +50666,6 @@ entities: pos: 2.5,22.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2842 @@ -53602,8 +50674,6 @@ entities: pos: 22.5,27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2966 @@ -53612,8 +50682,6 @@ entities: pos: 23.5,14.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2969 @@ -53622,8 +50690,6 @@ entities: pos: 26.5,14.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 2983 @@ -53631,8 +50697,6 @@ entities: - pos: 15.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3019 @@ -53641,8 +50705,6 @@ entities: pos: 14.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3020 @@ -53651,8 +50713,6 @@ entities: pos: 19.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3023 @@ -53661,8 +50721,6 @@ entities: pos: 14.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3024 @@ -53671,8 +50729,6 @@ entities: pos: 14.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3026 @@ -53681,8 +50737,6 @@ entities: pos: 15.5,13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3206 @@ -53691,8 +50745,6 @@ entities: pos: 22.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3708 @@ -53701,8 +50753,6 @@ entities: pos: -31.5,-3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3781 @@ -53710,8 +50760,6 @@ entities: - pos: -1.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3834 @@ -53720,8 +50768,6 @@ entities: pos: 3.5,45.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3835 @@ -53730,8 +50776,6 @@ entities: pos: 5.5,44.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3838 @@ -53739,8 +50783,6 @@ entities: - pos: 8.5,51.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3841 @@ -53749,8 +50791,6 @@ entities: pos: 15.5,45.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 3944 @@ -53759,8 +50799,6 @@ entities: pos: 9.5,43.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4196 @@ -53768,8 +50806,6 @@ entities: - pos: 30.5,3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4197 @@ -53778,8 +50814,6 @@ entities: pos: 33.5,2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4198 @@ -53788,8 +50822,6 @@ entities: pos: 33.5,0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4199 @@ -53798,8 +50830,6 @@ entities: pos: 33.5,-5.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4200 @@ -53808,8 +50838,6 @@ entities: pos: 33.5,-7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4201 @@ -53818,8 +50846,6 @@ entities: pos: 30.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4203 @@ -53828,8 +50854,6 @@ entities: pos: 28.5,-0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4231 @@ -53838,8 +50862,6 @@ entities: pos: 22.5,4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4380 @@ -53848,8 +50870,6 @@ entities: pos: 19.5,-3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4440 @@ -53858,8 +50878,6 @@ entities: pos: 11.5,2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4441 @@ -53868,8 +50886,6 @@ entities: pos: 11.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4444 @@ -53878,8 +50894,6 @@ entities: pos: 24.5,-1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4464 @@ -53888,8 +50902,6 @@ entities: pos: 15.5,8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4890 @@ -53898,8 +50910,6 @@ entities: pos: -18.5,-18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 4941 @@ -53908,8 +50918,6 @@ entities: pos: -15.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5033 @@ -53918,8 +50926,6 @@ entities: pos: -24.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5222 @@ -53928,8 +50934,6 @@ entities: pos: -10.5,-52.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5225 @@ -53938,8 +50942,6 @@ entities: pos: -11.5,-41.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5697 @@ -53947,8 +50949,6 @@ entities: - pos: 4.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5698 @@ -53957,8 +50957,6 @@ entities: pos: 5.5,-24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5714 @@ -53967,8 +50965,6 @@ entities: pos: 9.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5715 @@ -53977,8 +50973,6 @@ entities: pos: 12.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5718 @@ -53987,8 +50981,6 @@ entities: pos: 10.5,-19.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5734 @@ -53997,8 +50989,6 @@ entities: pos: 25.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5763 @@ -54006,8 +50996,6 @@ entities: - pos: 27.5,-24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5764 @@ -54016,8 +51004,6 @@ entities: pos: 33.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 5802 @@ -54026,15 +51012,11 @@ entities: pos: 13.5,-18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 6416 components: - pos: 8.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6419 @@ -54043,8 +51025,6 @@ entities: pos: -3.5,-13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6461 @@ -54052,8 +51032,6 @@ entities: - pos: -1.5,-31.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6471 @@ -54061,8 +51039,6 @@ entities: - pos: -2.5,-28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6554 @@ -54070,8 +51046,6 @@ entities: - pos: -16.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6686 @@ -54080,8 +51054,6 @@ entities: pos: -21.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6821 @@ -54090,8 +51062,6 @@ entities: pos: -26.5,-35.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6840 @@ -54100,8 +51070,6 @@ entities: pos: -23.5,-36.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 6842 @@ -54109,8 +51077,6 @@ entities: - pos: -19.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7087 @@ -54119,8 +51085,6 @@ entities: pos: -25.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7323 @@ -54129,8 +51093,6 @@ entities: pos: -10.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7379 @@ -54139,8 +51101,6 @@ entities: pos: -10.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7380 @@ -54148,8 +51108,6 @@ entities: - pos: -9.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7856 @@ -54157,8 +51115,6 @@ entities: - pos: -26.5,30.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7857 @@ -54167,8 +51123,6 @@ entities: pos: -26.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7871 @@ -54177,8 +51131,6 @@ entities: pos: -26.5,17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7872 @@ -54187,8 +51139,6 @@ entities: pos: -26.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7886 @@ -54197,8 +51147,6 @@ entities: pos: -26.5,10.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7905 @@ -54207,8 +51155,6 @@ entities: pos: -36.5,10.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7906 @@ -54216,8 +51162,6 @@ entities: - pos: -35.5,15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7910 @@ -54226,8 +51170,6 @@ entities: pos: -28.5,15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7911 @@ -54236,8 +51178,6 @@ entities: pos: -28.5,12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 7912 @@ -54246,8 +51186,6 @@ entities: pos: -28.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8238 @@ -54255,8 +51193,6 @@ entities: - pos: -23.5,27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8240 @@ -54265,8 +51201,6 @@ entities: pos: -22.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8300 @@ -54275,8 +51209,6 @@ entities: pos: -19.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8306 @@ -54285,8 +51217,6 @@ entities: pos: -22.5,17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8318 @@ -54295,8 +51225,6 @@ entities: pos: -13.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8562 @@ -54304,8 +51232,6 @@ entities: - pos: -18.5,11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8838 @@ -54318,8 +51244,6 @@ entities: - 8804 - 7236 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 8991 @@ -54328,31 +51252,23 @@ entities: pos: -39.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 8992 components: - rot: 3.141592653589793 rad pos: -36.5,-37.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 8993 components: - rot: 3.141592653589793 rad pos: -34.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 10757 components: - pos: -38.5,3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 11962 @@ -54361,8 +51277,6 @@ entities: pos: -32.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12027 @@ -54371,8 +51285,6 @@ entities: pos: -42.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12028 @@ -54381,8 +51293,6 @@ entities: pos: -49.5,-13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12029 @@ -54391,8 +51301,6 @@ entities: pos: -53.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12030 @@ -54400,8 +51308,6 @@ entities: - pos: -49.5,-9.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12032 @@ -54409,8 +51315,6 @@ entities: - pos: -44.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12035 @@ -54419,8 +51323,6 @@ entities: pos: -32.5,2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12037 @@ -54428,8 +51330,6 @@ entities: - pos: -16.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12039 @@ -54438,8 +51338,6 @@ entities: pos: -23.5,7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - uid: 12041 @@ -54448,8 +51346,6 @@ entities: pos: -25.5,0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#0335FCFF' type: AtmosPipeColor - proto: GasVentScrubber @@ -54460,8 +51356,6 @@ entities: pos: -2.5,14.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 814 @@ -54470,8 +51364,6 @@ entities: pos: 4.5,-1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 815 @@ -54480,8 +51372,6 @@ entities: pos: -2.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 816 @@ -54490,8 +51380,6 @@ entities: pos: -2.5,9.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 857 @@ -54500,8 +51388,6 @@ entities: pos: -17.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 858 @@ -54509,8 +51395,6 @@ entities: - pos: -10.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 885 @@ -54519,8 +51403,6 @@ entities: pos: -9.5,8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1512 @@ -54529,8 +51411,6 @@ entities: pos: -21.5,-7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1686 @@ -54539,8 +51419,6 @@ entities: pos: -21.5,0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1813 @@ -54549,8 +51427,6 @@ entities: pos: 6.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1816 @@ -54559,8 +51435,6 @@ entities: pos: -4.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 1853 @@ -54568,8 +51442,6 @@ entities: - pos: -1.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2073 @@ -54577,8 +51449,6 @@ entities: - pos: 6.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2074 @@ -54587,8 +51457,6 @@ entities: pos: 7.5,24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2439 @@ -54597,8 +51465,6 @@ entities: pos: -12.5,23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2440 @@ -54606,8 +51472,6 @@ entities: - pos: -12.5,28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2441 @@ -54616,8 +51480,6 @@ entities: pos: -8.5,26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2442 @@ -54626,8 +51488,6 @@ entities: pos: 3.5,26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2447 @@ -54636,8 +51496,6 @@ entities: pos: -5.5,31.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2448 @@ -54646,8 +51504,6 @@ entities: pos: 0.5,31.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 2963 @@ -54656,8 +51512,6 @@ entities: pos: 22.5,14.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3001 @@ -54665,8 +51519,6 @@ entities: - pos: 16.5,29.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3016 @@ -54675,8 +51527,6 @@ entities: pos: 20.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3017 @@ -54685,8 +51535,6 @@ entities: pos: 15.5,25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3021 @@ -54695,8 +51543,6 @@ entities: pos: 20.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3022 @@ -54705,8 +51551,6 @@ entities: pos: 20.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3027 @@ -54715,8 +51559,6 @@ entities: pos: 19.5,13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3782 @@ -54724,8 +51566,6 @@ entities: - pos: 10.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3813 @@ -54734,8 +51574,6 @@ entities: pos: 7.5,44.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3814 @@ -54744,8 +51582,6 @@ entities: pos: 11.5,43.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3815 @@ -54753,8 +51589,6 @@ entities: - pos: 12.5,51.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 3816 @@ -54763,8 +51597,6 @@ entities: pos: 13.5,45.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4205 @@ -54773,8 +51605,6 @@ entities: pos: 28.5,-4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4214 @@ -54783,8 +51613,6 @@ entities: pos: 28.5,-8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4226 @@ -54792,8 +51620,6 @@ entities: - pos: 24.5,3.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4381 @@ -54801,8 +51627,6 @@ entities: - pos: 17.5,-2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4439 @@ -54811,8 +51635,6 @@ entities: pos: 12.5,7.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4442 @@ -54821,8 +51643,6 @@ entities: pos: 12.5,-1.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4443 @@ -54831,8 +51651,6 @@ entities: pos: 25.5,-4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4465 @@ -54841,8 +51659,6 @@ entities: pos: 15.5,6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4875 @@ -54850,8 +51666,6 @@ entities: - pos: -15.5,-15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 4876 @@ -54860,8 +51674,6 @@ entities: pos: -19.5,-16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5025 @@ -54869,8 +51681,6 @@ entities: - pos: -18.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5223 @@ -54879,8 +51689,6 @@ entities: pos: -11.5,-51.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5224 @@ -54889,8 +51697,6 @@ entities: pos: -10.5,-42.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5699 @@ -54899,8 +51705,6 @@ entities: pos: 6.5,-24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5700 @@ -54908,8 +51712,6 @@ entities: - pos: 3.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5716 @@ -54918,8 +51720,6 @@ entities: pos: 12.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5717 @@ -54928,8 +51728,6 @@ entities: pos: 8.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5719 @@ -54938,8 +51736,6 @@ entities: pos: 9.5,-18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5735 @@ -54947,8 +51743,6 @@ entities: - pos: 27.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5765 @@ -54957,8 +51751,6 @@ entities: pos: 27.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5766 @@ -54967,8 +51759,6 @@ entities: pos: 33.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 5805 @@ -54977,8 +51767,6 @@ entities: pos: 13.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6253 @@ -54987,8 +51775,6 @@ entities: pos: -26.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6417 @@ -54997,8 +51783,6 @@ entities: pos: 11.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6420 @@ -55007,8 +51791,6 @@ entities: pos: -1.5,-13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6455 @@ -55017,8 +51799,6 @@ entities: pos: -3.5,-35.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6472 @@ -55027,8 +51807,6 @@ entities: pos: -2.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6687 @@ -55037,8 +51815,6 @@ entities: pos: -3.5,-32.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6838 @@ -55047,8 +51823,6 @@ entities: pos: -26.5,-36.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6839 @@ -55056,8 +51830,6 @@ entities: - pos: -18.5,-33.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 6841 @@ -55066,8 +51838,6 @@ entities: pos: -22.5,-37.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7088 @@ -55076,8 +51846,6 @@ entities: pos: -24.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7227 @@ -55086,8 +51854,6 @@ entities: pos: -20.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7325 @@ -55096,8 +51862,6 @@ entities: pos: -8.5,-26.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7381 @@ -55106,8 +51870,6 @@ entities: pos: -12.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7382 @@ -55115,8 +51877,6 @@ entities: - pos: -11.5,-17.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7858 @@ -55124,8 +51884,6 @@ entities: - pos: -30.5,30.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7873 @@ -55134,8 +51892,6 @@ entities: pos: -26.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7874 @@ -55144,8 +51900,6 @@ entities: pos: -26.5,19.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7887 @@ -55154,8 +51908,6 @@ entities: pos: -26.5,11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7907 @@ -55164,8 +51916,6 @@ entities: pos: -36.5,11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7908 @@ -55173,8 +51923,6 @@ entities: - pos: -34.5,15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7909 @@ -55183,8 +51931,6 @@ entities: pos: -31.5,15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7913 @@ -55193,8 +51939,6 @@ entities: pos: -31.5,18.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 7914 @@ -55203,8 +51947,6 @@ entities: pos: -31.5,12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8239 @@ -55212,8 +51954,6 @@ entities: - pos: -22.5,27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8241 @@ -55222,8 +51962,6 @@ entities: pos: -23.5,22.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8307 @@ -55231,8 +51969,6 @@ entities: - pos: -21.5,20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8317 @@ -55241,8 +51977,6 @@ entities: pos: -11.5,16.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8563 @@ -55251,8 +51985,6 @@ entities: pos: -18.5,8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8787 @@ -55261,8 +51993,6 @@ entities: pos: -31.5,-2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8836 @@ -55275,8 +52005,6 @@ entities: - 8804 - 7236 type: DeviceNetwork - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 8994 @@ -55285,32 +52013,24 @@ entities: pos: -33.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 9006 components: - rot: 3.141592653589793 rad pos: -37.5,-37.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 9007 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 10758 components: - rot: 3.141592653589793 rad pos: -38.5,0.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12023 @@ -55318,8 +52038,6 @@ entities: - pos: -48.5,-9.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12024 @@ -55328,8 +52046,6 @@ entities: pos: -53.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12025 @@ -55338,8 +52054,6 @@ entities: pos: -48.5,-13.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12026 @@ -55348,8 +52062,6 @@ entities: pos: -42.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12033 @@ -55357,8 +52069,6 @@ entities: - pos: -40.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12034 @@ -55367,8 +52077,6 @@ entities: pos: -30.5,-6.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12036 @@ -55376,8 +52084,6 @@ entities: - pos: -30.5,2.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12038 @@ -55386,8 +52092,6 @@ entities: pos: -14.5,-12.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12040 @@ -55395,8 +52099,6 @@ entities: - pos: -24.5,8.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12042 @@ -55405,8 +52107,6 @@ entities: pos: -26.5,-4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12044 @@ -55415,8 +52115,6 @@ entities: pos: -26.5,-11.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - uid: 12418 @@ -55425,8 +52123,6 @@ entities: pos: -2.5,4.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - color: '#FF1212FF' type: AtmosPipeColor - proto: GeneratorBasic15kW @@ -60761,8 +57457,6 @@ entities: - pos: 33.5,-24.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - proto: MachineAnomalyVessel entities: - uid: 6360 @@ -63346,32 +60040,24 @@ entities: - pos: -19.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 4953 components: - rot: 3.141592653589793 rad pos: -19.5,-23.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 4954 components: - rot: 1.5707963267948966 rad pos: -10.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 4986 components: - rot: -1.5707963267948966 rad pos: -12.5,-27.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 5067 components: - rot: -1.5707963267948966 rad @@ -63599,46 +60285,34 @@ entities: - pos: -15.5,-15.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7053 components: - rot: 3.141592653589793 rad pos: -22.5,-28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7064 components: - rot: 3.141592653589793 rad pos: -25.5,-28.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7288 components: - pos: -17.5,-20.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7367 components: - rot: 1.5707963267948966 rad pos: -17.5,-25.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7397 components: - pos: -25.5,-22.5 parent: 4812 type: Transform - - enabled: False - type: AmbientSound - uid: 7582 components: - pos: -10.5,-20.5 @@ -69512,21 +66186,29 @@ entities: entities: - uid: 3699 components: + - name: AI satellite Backup SMES + type: MetaData - pos: 10.5,56.5 parent: 4812 type: Transform - uid: 3700 components: + - name: AI satellite SMES + type: MetaData - pos: 14.5,47.5 parent: 4812 type: Transform - uid: 8722 components: + - name: SMES Bank 2 + type: MetaData - pos: -44.5,-2.5 parent: 4812 type: Transform - uid: 8723 components: + - name: SMES Bank 1 + type: MetaData - pos: -45.5,-2.5 parent: 4812 type: Transform @@ -69539,6 +66221,8 @@ entities: type: Transform - uid: 10637 components: + - name: Grav SMES + type: MetaData - pos: -47.5,-11.5 parent: 4812 type: Transform @@ -70893,6 +67577,8 @@ entities: type: Transform - uid: 1360 components: + - name: Bar Substation + type: MetaData - pos: 5.5,4.5 parent: 4812 type: Transform @@ -70912,6 +67598,8 @@ entities: type: Transform - uid: 3787 components: + - name: AI satellite Substation + type: MetaData - pos: 13.5,47.5 parent: 4812 type: Transform From 149c494972b61925740ec43ccebd594e2344c847 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Mon, 2 Oct 2023 01:27:29 -0500 Subject: [PATCH 07/17] Fix powered door prying popup (#20669) --- Content.Server/Doors/Systems/AirlockSystem.cs | 2 +- Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Doors/Systems/AirlockSystem.cs b/Content.Server/Doors/Systems/AirlockSystem.cs index 0ea2755ab66a4b..67f732f28e413d 100644 --- a/Content.Server/Doors/Systems/AirlockSystem.cs +++ b/Content.Server/Doors/Systems/AirlockSystem.cs @@ -179,7 +179,7 @@ private void OnBeforePry(EntityUid uid, AirlockComponent component, ref BeforePr { if (this.IsPowered(uid, EntityManager) && !args.PryPowered) { - Popup.PopupClient(Loc.GetString("airlock-component-cannot-pry-is-powered-message"), uid, args.User); + Popup.PopupEntity(Loc.GetString("airlock-component-cannot-pry-is-powered-message"), uid, args.User); args.Cancelled = true; } } diff --git a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs index 1deb6e3f7c0083..a950fe6930aff3 100644 --- a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs @@ -25,7 +25,7 @@ private void OnDoorPry(EntityUid uid, DoorBoltComponent component, ref BeforePry { if (component.BoltsDown && !args.Force) { - Popup.PopupClient(Loc.GetString("airlock-component-cannot-pry-is-bolted-message"), uid, args.User); + Popup.PopupEntity(Loc.GetString("airlock-component-cannot-pry-is-bolted-message"), uid, args.User); args.Cancelled = true; } } From 10c2db48309df87c3283498a02a96941d48ae5db Mon Sep 17 00:00:00 2001 From: Ubaser <134914314+UbaserB@users.noreply.github.com> Date: Mon, 2 Oct 2023 18:08:20 +1100 Subject: [PATCH 08/17] New Kobold Ears marking for lizards (#20672) --- Resources/Locale/en-US/markings/reptilian.ftl | 3 +++ .../Mobs/Customization/Markings/reptilian.yml | 9 +++++++++ .../reptilian_parts.rsi/horns_kobold_ears.png | Bin 0 -> 379 bytes .../Customization/reptilian_parts.rsi/meta.json | 6 +++++- 4 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png diff --git a/Resources/Locale/en-US/markings/reptilian.ftl b/Resources/Locale/en-US/markings/reptilian.ftl index bd2725c3507d2e..462d4140c2d700 100644 --- a/Resources/Locale/en-US/markings/reptilian.ftl +++ b/Resources/Locale/en-US/markings/reptilian.ftl @@ -84,3 +84,6 @@ marking-LizardHornsMyrsore = Lizard Horns (Myrsore) marking-LizardHornsBighorn-horns_bighorn = Lizard Horns (Bighorn) marking-LizardHornsBighorn = Lizard Horns (Bighorn) + +marking-LizardHornsKoboldEars-horns_kobold_ears = Lizard Ears (Kobold) +marking-LizardHornsKoboldEars = Lizard Ears (Kobold) diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml index 72da7b1d2a5933..c569b71c3cfe12 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/reptilian.yml @@ -262,3 +262,12 @@ sprites: - sprite: Mobs/Customization/reptilian_parts.rsi state: horns_bighorn + +- type: marking + id: LizardHornsKoboldEars + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Reptilian] + sprites: + - sprite: Mobs/Customization/reptilian_parts.rsi + state: horns_kobold_ears diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/horns_kobold_ears.png new file mode 100644 index 0000000000000000000000000000000000000000..8e859f4104f2e7be11a5a3a536a848880147ad8c GIT binary patch literal 379 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!Ec@}jv*CsZ*N`XZB`IyNW3L_=a8(-fvI35 zd*_hkEg7ezHN7%i8K3Gq1r0tvXjy*QVd3jt{n_uVs_MeJe&m<)f7ADPb+kJCc)0q4 z%vtjjE=~U^v#xKwU&9Ty(_1U@=eBG<+3)3Wdz=3CE!+NHQHi_%-E7&N;^X>m`@R|Q z>`sq8w%uLX%MO`=gT(cotU(*hZ*QJFnGXan7Ta3q&Rfyv3V0%-pVwuUiB$S z)4Big3%6-ebF;;^#%-CO{Nm1{x(Oey$Ih8~dGV^lnk%+#$l1DUoo{I9&H65jN8V2^ zo7{bt!2~n%PKRN9?yG_a_jMiq0>$`JBRtc5eHpZXY!0ZJOTm*tEKgTImvv4FO#q(q Bm|6e; literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json index 9b4e9b5db443dd..ac25bd5a2512b2 100644 --- a/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/reptilian_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser", + "copyright": "https://github.com/Skyrat-SS13/Skyrat-tg/tree/40e3cdbb15b8bc0d5ef2fb46133adf805bda5297, while Argali, Ayrshire, Myrsore and Bighorn are drawn by Ubaser, and Kobold Ears are drawn by Pigeonpeas.", "size": { "x": 32, "y": 32 @@ -163,6 +163,10 @@ "name": "horns_bighorn", "directions": 4 }, + { + "name": "horns_kobold_ears", + "directions": 4 + }, { "name": "r_leg_tiger", "directions": 4 From c13f6ffacc0d983c381dc4fae934732ddefa30a5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 2 Oct 2023 03:09:25 -0400 Subject: [PATCH 09/17] Automatic changelog update --- Resources/Changelog/Changelog.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 52d5666482ec07..f58a60364bb185 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,9 +1,4 @@ Entries: -- author: Slava0135 - changes: - - {message: Splash spill now has a visual effect., type: Add} - id: 4445 - time: '2023-08-05T11:44:19.0000000+00:00' - author: FillerVK changes: - {message: 'Added craftable TaxiBot. Robotics can now construct autonomous, ghost-powered @@ -2960,3 +2955,8 @@ Entries: service to make it.', type: Add} id: 4944 time: '2023-10-02T00:17:50.0000000+00:00' +- author: Pigeonpeas + changes: + - {message: 'Added a new lizard horn marking for the head, kobold ears!', type: Add} + id: 4945 + time: '2023-10-02T07:08:20.0000000+00:00' From 9b06e52b3311bafa42efc3c86af58648c7aba7af Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 2 Oct 2023 18:51:27 +1100 Subject: [PATCH 10/17] Fix sericulture (#20673) --- Content.Shared/Sericulture/SericultureComponent.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Shared/Sericulture/SericultureComponent.cs b/Content.Shared/Sericulture/SericultureComponent.cs index 23143f5ac43d27..c98a2171b0d295 100644 --- a/Content.Shared/Sericulture/SericultureComponent.cs +++ b/Content.Shared/Sericulture/SericultureComponent.cs @@ -23,18 +23,18 @@ public sealed partial class SericultureComponent : Component /// /// What will be produced at the end of the action. /// - [DataField("entityProduced", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(required: true)] [ViewVariables(VVAccess.ReadWrite)] [AutoNetworkedField] - public string EntityProduced = string.Empty; + public EntProtoId EntityProduced; /// /// The entity needed to actually preform sericulture. This will be granted (and removed) upon the entity's creation. /// - [DataField("action", required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + [DataField(required: true)] [ViewVariables(VVAccess.ReadWrite)] [AutoNetworkedField] - public string Action = string.Empty; + public EntProtoId Action; [AutoNetworkedField] [DataField("actionEntity")] From f0bd861fc8290cdf76f6ed10264623e5580fcf6e Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Mon, 2 Oct 2023 14:49:45 +0100 Subject: [PATCH 11/17] actually add jug to medfab (#20679) Co-authored-by: deltanedas <@deltanedas:kde.org> --- Resources/Prototypes/Entities/Structures/Machines/lathe.yml | 1 + Resources/Prototypes/Recipes/Lathes/medical.yml | 2 +- Resources/Prototypes/Research/biochemical.yml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 45cdc33a10bae1..6df5158f17d01a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -685,6 +685,7 @@ - Hemostat - BluespaceBeaker - SyringeBluespace + - Jug - type: Machine board: MedicalTechFabCircuitboard diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index bb83a0a52eefde..1de2e7290c21e6 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -202,4 +202,4 @@ result: Jug completetime: 4 materials: - Plastic: 700 + Plastic: 400 diff --git a/Resources/Prototypes/Research/biochemical.yml b/Resources/Prototypes/Research/biochemical.yml index 18145052aed321..a3b9090fe68200 100644 --- a/Resources/Prototypes/Research/biochemical.yml +++ b/Resources/Prototypes/Research/biochemical.yml @@ -15,6 +15,7 @@ - HotplateMachineCircuitboard - ChemicalPayload - ClothingEyesGlassesChemical + - Jug - type: technology id: SurgicalTools From c988f21d25565fb342525ca5c08cd3743a1b3a74 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Mon, 2 Oct 2023 15:44:05 +0100 Subject: [PATCH 12/17] Temperature refactor (#20662) Co-authored-by: deltanedas <@deltanedas:kde.org> --- ...nerTemperatureDamageThresholdsComponent.cs | 6 +- .../Components/TemperatureComponent.cs | 124 ++-- .../Temperature/Systems/TemperatureSystem.cs | 569 +++++++++--------- 3 files changed, 344 insertions(+), 355 deletions(-) diff --git a/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs b/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs index ae8acc49ef6297..024b8a013b3a72 100644 --- a/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs +++ b/Content.Server/Temperature/Components/ContainerTemperatureDamageThresholdsComponent.cs @@ -3,11 +3,9 @@ [RegisterComponent] public sealed partial class ContainerTemperatureDamageThresholdsComponent: Component { - [DataField("heatDamageThreshold")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float? HeatDamageThreshold; - [DataField("coldDamageThreshold")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float? ColdDamageThreshold; } diff --git a/Content.Server/Temperature/Components/TemperatureComponent.cs b/Content.Server/Temperature/Components/TemperatureComponent.cs index 6ace329426f9a0..7330ebf9ba5b3d 100644 --- a/Content.Server/Temperature/Components/TemperatureComponent.cs +++ b/Content.Server/Temperature/Components/TemperatureComponent.cs @@ -4,84 +4,80 @@ using Robust.Shared.Physics; using Robust.Shared.Physics.Components; -namespace Content.Server.Temperature.Components +namespace Content.Server.Temperature.Components; + +/// +/// Handles changing temperature, +/// informing others of the current temperature, +/// and taking fire damage from high temperature. +/// +[RegisterComponent] +public sealed partial class TemperatureComponent : Component { - /// - /// Handles changing temperature, - /// informing others of the current temperature, - /// and taking fire damage from high temperature. - /// - [RegisterComponent] - public sealed partial class TemperatureComponent : Component - { - [ViewVariables(VVAccess.ReadWrite)] - [DataField("currentTemperature")] - public float CurrentTemperature { get; set; } = Atmospherics.T20C; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float CurrentTemperature = Atmospherics.T20C; - [DataField("heatDamageThreshold")] - [ViewVariables(VVAccess.ReadWrite)] - public float HeatDamageThreshold = 360f; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float HeatDamageThreshold = 360f; - [DataField("coldDamageThreshold")] - [ViewVariables(VVAccess.ReadWrite)] - public float ColdDamageThreshold = 260f; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float ColdDamageThreshold = 260f; - /// - /// Overrides HeatDamageThreshold if the entity's within a parent with the TemperatureDamageThresholdsComponent component. - /// - [ViewVariables(VVAccess.ReadWrite)] - public float? ParentHeatDamageThreshold; + /// + /// Overrides HeatDamageThreshold if the entity's within a parent with the TemperatureDamageThresholdsComponent component. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float? ParentHeatDamageThreshold; - /// - /// Overrides ColdDamageThreshold if the entity's within a parent with the TemperatureDamageThresholdsComponent component. - /// - [ViewVariables(VVAccess.ReadWrite)] - public float? ParentColdDamageThreshold; + /// + /// Overrides ColdDamageThreshold if the entity's within a parent with the TemperatureDamageThresholdsComponent component. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float? ParentColdDamageThreshold; - [DataField("specificHeat")] - [ViewVariables(VVAccess.ReadWrite)] - public float SpecificHeat = 50f; + /// + /// Heat capacity per kg of mass. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float SpecificHeat = 50f; - /// - /// How well does the air surrounding you merge into your body temperature? - /// - [DataField("atmosTemperatureTransferEfficiency")] - [ViewVariables(VVAccess.ReadWrite)] - public float AtmosTemperatureTransferEfficiency = 0.1f; + /// + /// How well does the air surrounding you merge into your body temperature? + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float AtmosTemperatureTransferEfficiency = 0.1f; - [ViewVariables] public float HeatCapacity + [ViewVariables] public float HeatCapacity + { + get { - get + if (IoCManager.Resolve().TryGetComponent(Owner, out var physics) && physics.FixturesMass != 0) { - if (IoCManager.Resolve().TryGetComponent(Owner, out var physics) && physics.FixturesMass != 0) - { - return SpecificHeat * physics.FixturesMass; - } - - return Atmospherics.MinimumHeatCapacity; + return SpecificHeat * physics.FixturesMass; } + + return Atmospherics.MinimumHeatCapacity; } + } - [DataField("coldDamage")] - [ViewVariables(VVAccess.ReadWrite)] - public DamageSpecifier ColdDamage = new(); + [DataField, ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier ColdDamage = new(); - [DataField("heatDamage")] - [ViewVariables(VVAccess.ReadWrite)] - public DamageSpecifier HeatDamage = new(); + [DataField, ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier HeatDamage = new(); - /// - /// Temperature won't do more than this amount of damage per second. - /// - /// Okay it genuinely reaches this basically immediately for a plasma fire. - /// - [DataField("damageCap")] - [ViewVariables(VVAccess.ReadWrite)] - public FixedPoint2 DamageCap = FixedPoint2.New(8); + /// + /// Temperature won't do more than this amount of damage per second. + /// + /// + /// Okay it genuinely reaches this basically immediately for a plasma fire. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 DamageCap = FixedPoint2.New(8); - /// - /// Used to keep track of when damage starts/stops. Useful for logs. - /// - public bool TakingDamage = false; - } + /// + /// Used to keep track of when damage starts/stops. Useful for logs. + /// + [DataField] + public bool TakingDamage = false; } diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 9c567548616687..4796704d27be1e 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -1,6 +1,3 @@ -using System; -using System.Collections.Generic; -using System.Linq; using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; @@ -13,351 +10,349 @@ using Content.Shared.Rejuvenate; using Content.Shared.Temperature; using Robust.Server.GameObjects; +using System.Linq; -namespace Content.Server.Temperature.Systems -{ - public sealed class TemperatureSystem : EntitySystem - { - [Dependency] private readonly TransformSystem _transformSystem = default!; - [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; - [Dependency] private readonly AlertsSystem _alertsSystem = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - - /// - /// All the components that will have their damage updated at the end of the tick. - /// This is done because both AtmosExposed and Flammable call ChangeHeat in the same tick, meaning - /// that we need some mechanism to ensure it doesn't double dip on damage for both calls. - /// - public HashSet ShouldUpdateDamage = new(); +namespace Content.Server.Temperature.Systems; - public float UpdateInterval = 1.0f; +public sealed class TemperatureSystem : EntitySystem +{ + [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly TransformSystem _transform = default!; - private float _accumulatedFrametime; + /// + /// All the components that will have their damage updated at the end of the tick. + /// This is done because both AtmosExposed and Flammable call ChangeHeat in the same tick, meaning + /// that we need some mechanism to ensure it doesn't double dip on damage for both calls. + /// + public HashSet ShouldUpdateDamage = new(); - public override void Initialize() - { - SubscribeLocalEvent(EnqueueDamage); - SubscribeLocalEvent(OnAtmosExposedUpdate); - SubscribeLocalEvent(OnRejuvenate); - SubscribeLocalEvent(ServerAlert); - SubscribeLocalEvent>( - OnTemperatureChangeAttempt); - - // Allows overriding thresholds based on the parent's thresholds. - SubscribeLocalEvent(OnParentChange); - SubscribeLocalEvent( - OnParentThresholdStartup); - SubscribeLocalEvent( - OnParentThresholdShutdown); - } + public float UpdateInterval = 1.0f; - public override void Update(float frameTime) - { - base.Update(frameTime); + private float _accumulatedFrametime; - _accumulatedFrametime += frameTime; + public override void Initialize() + { + SubscribeLocalEvent(EnqueueDamage); + SubscribeLocalEvent(OnAtmosExposedUpdate); + SubscribeLocalEvent(OnRejuvenate); + SubscribeLocalEvent(ServerAlert); + SubscribeLocalEvent>( + OnTemperatureChangeAttempt); + + // Allows overriding thresholds based on the parent's thresholds. + SubscribeLocalEvent(OnParentChange); + SubscribeLocalEvent( + OnParentThresholdStartup); + SubscribeLocalEvent( + OnParentThresholdShutdown); + } - if (_accumulatedFrametime < UpdateInterval) - return; - _accumulatedFrametime -= UpdateInterval; + public override void Update(float frameTime) + { + base.Update(frameTime); - if (!ShouldUpdateDamage.Any()) - return; + _accumulatedFrametime += frameTime; - foreach (var comp in ShouldUpdateDamage) - { - MetaDataComponent? metaData = null; + if (_accumulatedFrametime < UpdateInterval) + return; + _accumulatedFrametime -= UpdateInterval; - var uid = comp.Owner; - if (Deleted(uid, metaData) || Paused(uid, metaData)) - continue; + if (!ShouldUpdateDamage.Any()) + return; - ChangeDamage(uid, comp); - } + foreach (var comp in ShouldUpdateDamage) + { + MetaDataComponent? metaData = null; - ShouldUpdateDamage.Clear(); - } + var uid = comp.Owner; + if (Deleted(uid, metaData) || Paused(uid, metaData)) + continue; - public void ForceChangeTemperature(EntityUid uid, float temp, TemperatureComponent? temperature = null) - { - if (!Resolve(uid, ref temperature)) - return; - - float lastTemp = temperature.CurrentTemperature; - float delta = temperature.CurrentTemperature - temp; - temperature.CurrentTemperature = temp; - RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), - true); + ChangeDamage(uid, comp); } - public void ChangeHeat(EntityUid uid, float heatAmount, bool ignoreHeatResistance = false, - TemperatureComponent? temperature = null) - { - if (Resolve(uid, ref temperature)) - { - if (!ignoreHeatResistance) - { - var ev = new ModifyChangedTemperatureEvent(heatAmount); - RaiseLocalEvent(uid, ev, false); - heatAmount = ev.TemperatureDelta; - } + ShouldUpdateDamage.Clear(); + } - float lastTemp = temperature.CurrentTemperature; - temperature.CurrentTemperature += heatAmount / temperature.HeatCapacity; - float delta = temperature.CurrentTemperature - lastTemp; + public void ForceChangeTemperature(EntityUid uid, float temp, TemperatureComponent? temperature = null) + { + if (!Resolve(uid, ref temperature)) + return; + + float lastTemp = temperature.CurrentTemperature; + float delta = temperature.CurrentTemperature - temp; + temperature.CurrentTemperature = temp; + RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), + true); + } - RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), - true); - } - } + public void ChangeHeat(EntityUid uid, float heatAmount, bool ignoreHeatResistance = false, + TemperatureComponent? temperature = null) + { + if (!Resolve(uid, ref temperature)) + return; - private void OnAtmosExposedUpdate(EntityUid uid, TemperatureComponent temperature, - ref AtmosExposedUpdateEvent args) + if (!ignoreHeatResistance) { - var transform = args.Transform; - - if (transform.MapUid == null) - return; + var ev = new ModifyChangedTemperatureEvent(heatAmount); + RaiseLocalEvent(uid, ev, false); + heatAmount = ev.TemperatureDelta; + } - var position = _transformSystem.GetGridOrMapTilePosition(uid, transform); + float lastTemp = temperature.CurrentTemperature; + temperature.CurrentTemperature += heatAmount / temperature.HeatCapacity; + float delta = temperature.CurrentTemperature - lastTemp; - var temperatureDelta = args.GasMixture.Temperature - temperature.CurrentTemperature; - var tileHeatCapacity = - _atmosphereSystem.GetTileHeatCapacity(transform.GridUid, transform.MapUid.Value, position); - var heat = temperatureDelta * (tileHeatCapacity * temperature.HeatCapacity / - (tileHeatCapacity + temperature.HeatCapacity)); - ChangeHeat(uid, heat * temperature.AtmosTemperatureTransferEfficiency, temperature: temperature); - } + RaiseLocalEvent(uid, new OnTemperatureChangeEvent(temperature.CurrentTemperature, lastTemp, delta), true); + } - private void OnRejuvenate(EntityUid uid, TemperatureComponent comp, RejuvenateEvent args) - { - ForceChangeTemperature(uid, Atmospherics.T20C, comp); - } + private void OnAtmosExposedUpdate(EntityUid uid, TemperatureComponent temperature, + ref AtmosExposedUpdateEvent args) + { + var transform = args.Transform; + if (transform.MapUid == null) + return; + + var position = _transform.GetGridOrMapTilePosition(uid, transform); + + var temperatureDelta = args.GasMixture.Temperature - temperature.CurrentTemperature; + var tileHeatCapacity = + _atmosphere.GetTileHeatCapacity(transform.GridUid, transform.MapUid.Value, position); + var heat = temperatureDelta * (tileHeatCapacity * temperature.HeatCapacity / + (tileHeatCapacity + temperature.HeatCapacity)); + ChangeHeat(uid, heat * temperature.AtmosTemperatureTransferEfficiency, temperature: temperature); + } - private void ServerAlert(EntityUid uid, AlertsComponent status, OnTemperatureChangeEvent args) - { - switch (args.CurrentTemperature) - { - // Cold strong. - case <= 260: - _alertsSystem.ShowAlert(uid, AlertType.Cold, 3); - break; - - // Cold mild. - case <= 280 and > 260: - _alertsSystem.ShowAlert(uid, AlertType.Cold, 2); - break; - - // Cold weak. - case <= 292 and > 280: - _alertsSystem.ShowAlert(uid, AlertType.Cold, 1); - break; - - // Safe. - case <= 327 and > 292: - _alertsSystem.ClearAlertCategory(uid, AlertCategory.Temperature); - break; - - // Heat weak. - case <= 335 and > 327: - _alertsSystem.ShowAlert(uid, AlertType.Hot, 1); - break; - - // Heat mild. - case <= 360 and > 335: - _alertsSystem.ShowAlert(uid, AlertType.Hot, 2); - break; - - // Heat strong. - case > 360: - _alertsSystem.ShowAlert(uid, AlertType.Hot, 3); - break; - } - } + private void OnRejuvenate(EntityUid uid, TemperatureComponent comp, RejuvenateEvent args) + { + ForceChangeTemperature(uid, Atmospherics.T20C, comp); + } - private void EnqueueDamage(EntityUid uid, TemperatureComponent component, OnTemperatureChangeEvent args) + private void ServerAlert(EntityUid uid, AlertsComponent status, OnTemperatureChangeEvent args) + { + switch (args.CurrentTemperature) { - ShouldUpdateDamage.Add(component); + // Cold strong. + case <= 260: + _alerts.ShowAlert(uid, AlertType.Cold, 3); + break; + + // Cold mild. + case <= 280 and > 260: + _alerts.ShowAlert(uid, AlertType.Cold, 2); + break; + + // Cold weak. + case <= 292 and > 280: + _alerts.ShowAlert(uid, AlertType.Cold, 1); + break; + + // Safe. + case <= 327 and > 292: + _alerts.ClearAlertCategory(uid, AlertCategory.Temperature); + break; + + // Heat weak. + case <= 335 and > 327: + _alerts.ShowAlert(uid, AlertType.Hot, 1); + break; + + // Heat mild. + case <= 360 and > 335: + _alerts.ShowAlert(uid, AlertType.Hot, 2); + break; + + // Heat strong. + case > 360: + _alerts.ShowAlert(uid, AlertType.Hot, 3); + break; } + } - private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) - { - if (!HasComp(uid)) - return; - - // See this link for where the scaling func comes from: - // https://www.desmos.com/calculator/0vknqtdvq9 - // Based on a logistic curve, which caps out at MaxDamage - var heatK = 0.005; - var a = 1; - var y = temperature.DamageCap; - var c = y * 2; + private void EnqueueDamage(EntityUid uid, TemperatureComponent component, OnTemperatureChangeEvent args) + { + ShouldUpdateDamage.Add(component); + } - var heatDamageThreshold = temperature.ParentHeatDamageThreshold ?? temperature.HeatDamageThreshold; - var coldDamageThreshold = temperature.ParentColdDamageThreshold ?? temperature.ColdDamageThreshold; + private void ChangeDamage(EntityUid uid, TemperatureComponent temperature) + { + if (!HasComp(uid)) + return; - if (temperature.CurrentTemperature >= heatDamageThreshold) - { - if (!temperature.TakingDamage) - { - _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking high temperature damage"); - temperature.TakingDamage = true; - } + // See this link for where the scaling func comes from: + // https://www.desmos.com/calculator/0vknqtdvq9 + // Based on a logistic curve, which caps out at MaxDamage + var heatK = 0.005; + var a = 1; + var y = temperature.DamageCap; + var c = y * 2; - var diff = Math.Abs(temperature.CurrentTemperature - heatDamageThreshold); - var tempDamage = c / (1 + a * Math.Pow(Math.E, -heatK * diff)) - y; - _damageableSystem.TryChangeDamage(uid, temperature.HeatDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); - } - else if (temperature.CurrentTemperature <= coldDamageThreshold) - { - if (!temperature.TakingDamage) - { - _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking low temperature damage"); - temperature.TakingDamage = true; - } + var heatDamageThreshold = temperature.ParentHeatDamageThreshold ?? temperature.HeatDamageThreshold; + var coldDamageThreshold = temperature.ParentColdDamageThreshold ?? temperature.ColdDamageThreshold; - var diff = Math.Abs(temperature.CurrentTemperature - coldDamageThreshold); - var tempDamage = - Math.Sqrt(diff * (Math.Pow(temperature.DamageCap.Double(), 2) / coldDamageThreshold)); - _damageableSystem.TryChangeDamage(uid, temperature.ColdDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); - } - else if (temperature.TakingDamage) + if (temperature.CurrentTemperature >= heatDamageThreshold) + { + if (!temperature.TakingDamage) { - _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} stopped taking temperature damage"); - temperature.TakingDamage = false; + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking high temperature damage"); + temperature.TakingDamage = true; } - } - private void OnTemperatureChangeAttempt(EntityUid uid, TemperatureProtectionComponent component, - InventoryRelayedEvent args) - { - args.Args.TemperatureDelta *= component.Coefficient; + var diff = Math.Abs(temperature.CurrentTemperature - heatDamageThreshold); + var tempDamage = c / (1 + a * Math.Pow(Math.E, -heatK * diff)) - y; + _damageable.TryChangeDamage(uid, temperature.HeatDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); } - - private void OnParentChange(EntityUid uid, TemperatureComponent component, - ref EntParentChangedMessage args) + else if (temperature.CurrentTemperature <= coldDamageThreshold) { - var temperatureQuery = GetEntityQuery(); - var transformQuery = GetEntityQuery(); - var thresholdsQuery = GetEntityQuery(); - // We only need to update thresholds if the thresholds changed for the entity's ancestors. - var oldThresholds = args.OldParent != null - ? RecalculateParentThresholds(args.OldParent.Value, transformQuery, thresholdsQuery) - : (null, null); - var newThresholds = RecalculateParentThresholds(transformQuery.GetComponent(uid).ParentUid, transformQuery, thresholdsQuery); - - if (oldThresholds != newThresholds) + if (!temperature.TakingDamage) { - RecursiveThresholdUpdate(uid, temperatureQuery, transformQuery, thresholdsQuery); + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} started taking low temperature damage"); + temperature.TakingDamage = true; } - } - private void OnParentThresholdStartup(EntityUid uid, ContainerTemperatureDamageThresholdsComponent component, - ComponentStartup args) + var diff = Math.Abs(temperature.CurrentTemperature - coldDamageThreshold); + var tempDamage = + Math.Sqrt(diff * (Math.Pow(temperature.DamageCap.Double(), 2) / coldDamageThreshold)); + _damageable.TryChangeDamage(uid, temperature.ColdDamage * tempDamage, ignoreResistances: true, interruptsDoAfters: false); + } + else if (temperature.TakingDamage) { - RecursiveThresholdUpdate(uid, GetEntityQuery(), GetEntityQuery(), - GetEntityQuery()); + _adminLogger.Add(LogType.Temperature, $"{ToPrettyString(uid):entity} stopped taking temperature damage"); + temperature.TakingDamage = false; } + } + + private void OnTemperatureChangeAttempt(EntityUid uid, TemperatureProtectionComponent component, + InventoryRelayedEvent args) + { + args.Args.TemperatureDelta *= component.Coefficient; + } - private void OnParentThresholdShutdown(EntityUid uid, ContainerTemperatureDamageThresholdsComponent component, - ComponentShutdown args) + private void OnParentChange(EntityUid uid, TemperatureComponent component, + ref EntParentChangedMessage args) + { + var temperatureQuery = GetEntityQuery(); + var transformQuery = GetEntityQuery(); + var thresholdsQuery = GetEntityQuery(); + // We only need to update thresholds if the thresholds changed for the entity's ancestors. + var oldThresholds = args.OldParent != null + ? RecalculateParentThresholds(args.OldParent.Value, transformQuery, thresholdsQuery) + : (null, null); + var newThresholds = RecalculateParentThresholds(transformQuery.GetComponent(uid).ParentUid, transformQuery, thresholdsQuery); + + if (oldThresholds != newThresholds) { - RecursiveThresholdUpdate(uid, GetEntityQuery(), GetEntityQuery(), - GetEntityQuery()); + RecursiveThresholdUpdate(uid, temperatureQuery, transformQuery, thresholdsQuery); } + } - /// - /// Recalculate and apply parent thresholds for the root entity and all its descendant. - /// - /// - /// - /// - /// - private void RecursiveThresholdUpdate(EntityUid root, EntityQuery temperatureQuery, - EntityQuery transformQuery, - EntityQuery tempThresholdsQuery) - { - RecalculateAndApplyParentThresholds(root, temperatureQuery, transformQuery, tempThresholdsQuery); + private void OnParentThresholdStartup(EntityUid uid, ContainerTemperatureDamageThresholdsComponent component, + ComponentStartup args) + { + RecursiveThresholdUpdate(uid, GetEntityQuery(), GetEntityQuery(), + GetEntityQuery()); + } - foreach (var child in Transform(root).ChildEntities) - { - RecursiveThresholdUpdate(child, temperatureQuery, transformQuery, tempThresholdsQuery); - } - } + private void OnParentThresholdShutdown(EntityUid uid, ContainerTemperatureDamageThresholdsComponent component, + ComponentShutdown args) + { + RecursiveThresholdUpdate(uid, GetEntityQuery(), GetEntityQuery(), + GetEntityQuery()); + } + + /// + /// Recalculate and apply parent thresholds for the root entity and all its descendant. + /// + /// + /// + /// + /// + private void RecursiveThresholdUpdate(EntityUid root, EntityQuery temperatureQuery, + EntityQuery transformQuery, + EntityQuery tempThresholdsQuery) + { + RecalculateAndApplyParentThresholds(root, temperatureQuery, transformQuery, tempThresholdsQuery); - /// - /// Recalculate parent thresholds and apply them on the uid temperature component. - /// - /// - /// - /// - /// - private void RecalculateAndApplyParentThresholds(EntityUid uid, - EntityQuery temperatureQuery, EntityQuery transformQuery, - EntityQuery tempThresholdsQuery) + foreach (var child in Transform(root).ChildEntities) { - if (!temperatureQuery.TryGetComponent(uid, out var temperature)) - { - return; - } + RecursiveThresholdUpdate(child, temperatureQuery, transformQuery, tempThresholdsQuery); + } + } - var newThresholds = RecalculateParentThresholds(transformQuery.GetComponent(uid).ParentUid, transformQuery, tempThresholdsQuery); - temperature.ParentHeatDamageThreshold = newThresholds.Item1; - temperature.ParentColdDamageThreshold = newThresholds.Item2; + /// + /// Recalculate parent thresholds and apply them on the uid temperature component. + /// + /// + /// + /// + /// + private void RecalculateAndApplyParentThresholds(EntityUid uid, + EntityQuery temperatureQuery, EntityQuery transformQuery, + EntityQuery tempThresholdsQuery) + { + if (!temperatureQuery.TryGetComponent(uid, out var temperature)) + { + return; } - /// - /// Recalculate Parent Heat/Cold DamageThreshold by recursively checking each ancestor and fetching the - /// maximum HeatDamageThreshold and the minimum ColdDamageThreshold if any exists (aka the best value for each). - /// - /// - /// - /// - private (float?, float?) RecalculateParentThresholds( - EntityUid initialParentUid, - EntityQuery transformQuery, - EntityQuery tempThresholdsQuery) + var newThresholds = RecalculateParentThresholds(transformQuery.GetComponent(uid).ParentUid, transformQuery, tempThresholdsQuery); + temperature.ParentHeatDamageThreshold = newThresholds.Item1; + temperature.ParentColdDamageThreshold = newThresholds.Item2; + } + + /// + /// Recalculate Parent Heat/Cold DamageThreshold by recursively checking each ancestor and fetching the + /// maximum HeatDamageThreshold and the minimum ColdDamageThreshold if any exists (aka the best value for each). + /// + /// + /// + /// + private (float?, float?) RecalculateParentThresholds( + EntityUid initialParentUid, + EntityQuery transformQuery, + EntityQuery tempThresholdsQuery) + { + // Recursively check parents for the best threshold available + var parentUid = initialParentUid; + float? newHeatThreshold = null; + float? newColdThreshold = null; + while (parentUid.IsValid()) { - // Recursively check parents for the best threshold available - var parentUid = initialParentUid; - float? newHeatThreshold = null; - float? newColdThreshold = null; - while (parentUid.IsValid()) + if (tempThresholdsQuery.TryGetComponent(parentUid, out var newThresholds)) { - if (tempThresholdsQuery.TryGetComponent(parentUid, out var newThresholds)) + if (newThresholds.HeatDamageThreshold != null) { - if (newThresholds.HeatDamageThreshold != null) - { - newHeatThreshold = Math.Max(newThresholds.HeatDamageThreshold.Value, - newHeatThreshold ?? 0); - } - - if (newThresholds.ColdDamageThreshold != null) - { - newColdThreshold = Math.Min(newThresholds.ColdDamageThreshold.Value, - newColdThreshold ?? float.MaxValue); - } + newHeatThreshold = Math.Max(newThresholds.HeatDamageThreshold.Value, + newHeatThreshold ?? 0); } - parentUid = transformQuery.GetComponent(parentUid).ParentUid; + if (newThresholds.ColdDamageThreshold != null) + { + newColdThreshold = Math.Min(newThresholds.ColdDamageThreshold.Value, + newColdThreshold ?? float.MaxValue); + } } - return (newHeatThreshold, newColdThreshold); + parentUid = transformQuery.GetComponent(parentUid).ParentUid; } + + return (newHeatThreshold, newColdThreshold); } +} - public sealed class OnTemperatureChangeEvent : EntityEventArgs - { - public float CurrentTemperature { get; } - public float LastTemperature { get; } - public float TemperatureDelta { get; } +public sealed class OnTemperatureChangeEvent : EntityEventArgs +{ + public float CurrentTemperature { get; } + public float LastTemperature { get; } + public float TemperatureDelta { get; } - public OnTemperatureChangeEvent(float current, float last, float delta) - { - CurrentTemperature = current; - LastTemperature = last; - TemperatureDelta = delta; - } + public OnTemperatureChangeEvent(float current, float last, float delta) + { + CurrentTemperature = current; + LastTemperature = last; + TemperatureDelta = delta; } } From 6ee76b06d6c87be814a65af3e8b696727ac7e469 Mon Sep 17 00:00:00 2001 From: JoeHammad1844 <130668733+JoeHammad1844@users.noreply.github.com> Date: Tue, 3 Oct 2023 02:34:22 +1100 Subject: [PATCH 13/17] Revert "Northstar Gloves dmg reduced from 8 -> 7" (#20674) --- Resources/Prototypes/Entities/Clothing/Hands/gloves.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index e37306228e320e..ddecf376e778f2 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -339,7 +339,7 @@ attackRate: 4 damage: types: - Blunt: 7 + Blunt: 8 soundHit: collection: Punch animation: WeaponArcFist From 7802bd16fa97eba6c2ecff9e525bb1986572eca6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 2 Oct 2023 11:35:27 -0400 Subject: [PATCH 14/17] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f58a60364bb185..212acfe3c54d92 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: FillerVK - changes: - - {message: 'Added craftable TaxiBot. Robotics can now construct autonomous, ghost-powered - taxis to drive people around the station at high speed.', type: Add} - id: 4446 - time: '2023-08-05T18:36:32.0000000+00:00' - author: lapatison changes: - {message: 'Syndicate lobbying bundle: briefcase containing 5,000 spacebucks has @@ -2960,3 +2954,9 @@ Entries: - {message: 'Added a new lizard horn marking for the head, kobold ears!', type: Add} id: 4945 time: '2023-10-02T07:08:20.0000000+00:00' +- author: JoeHammad + changes: + - {message: 'the north star gloves have had their damage changed back to 8, as was + originally intended', type: Tweak} + id: 4946 + time: '2023-10-02T15:34:22.0000000+00:00' From c12d0c5fa97c475d181eba162eab86056979690e Mon Sep 17 00:00:00 2001 From: router Date: Mon, 2 Oct 2023 21:07:47 +0300 Subject: [PATCH 15/17] Make minigun weigh more (#20685) --- Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml index 00e5c3767f3830..785b36cc6200b3 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/HMGs/hmgs.yml @@ -33,6 +33,7 @@ map: ["enum.GunVisualLayers.Base"] - type: Item sprite: Objects/Weapons/Guns/HMGs/minigun.rsi + size: 90 - type: Gun fireRate: 15 soundGunshot: From 313148186569b4f8651f615626ab0be0e61da8ce Mon Sep 17 00:00:00 2001 From: Vasilis Date: Mon, 2 Oct 2023 20:30:51 +0200 Subject: [PATCH 16/17] easiest bug fix of my life (#20686) --- Content.Server/ImmovableRod/ImmovableRodSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/ImmovableRod/ImmovableRodSystem.cs b/Content.Server/ImmovableRod/ImmovableRodSystem.cs index 99c949ebceb4a3..d688941abff37a 100644 --- a/Content.Server/ImmovableRod/ImmovableRodSystem.cs +++ b/Content.Server/ImmovableRod/ImmovableRodSystem.cs @@ -99,6 +99,7 @@ private void OnCollide(EntityUid uid, ImmovableRodComponent component, ref Start _popup.PopupEntity(Loc.GetString("immovable-rod-penetrated-mob", ("rod", uid), ("mob", ent)), uid, PopupType.LargeCaution); _bodySystem.GibBody(ent, body: body); + return; } QueueDel(ent); From 13f218e6c753ca67829ecac0896346ac762bf746 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 2 Oct 2023 14:31:55 -0400 Subject: [PATCH 17/17] Automatic changelog update --- Resources/Changelog/Changelog.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 212acfe3c54d92..be02c04282657d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,10 +1,4 @@ Entries: -- author: lapatison - changes: - - {message: 'Syndicate lobbying bundle: briefcase containing 5,000 spacebucks has - been added to the uplink!', type: Add} - id: 4447 - time: '2023-08-05T21:10:21.0000000+00:00' - author: Vordenburg changes: - {message: Nuclear fission devices need enough floor around them to anchor now., @@ -2960,3 +2954,9 @@ Entries: originally intended', type: Tweak} id: 4946 time: '2023-10-02T15:34:22.0000000+00:00' +- author: Vasilis + changes: + - {message: The immovable rod gibs you instead of deleting your character again., + type: Fix} + id: 4947 + time: '2023-10-02T18:30:51.0000000+00:00'